GrpcRouteMetadataMatchMethod

An object that represents the match method. Specify one of the match values.

Inheritors

Types

Link copied to clipboard
data class Exact(val value: String) : GrpcRouteMetadataMatchMethod

The value sent by the client must match the specified value exactly.

Link copied to clipboard
data class Prefix(val value: String) : GrpcRouteMetadataMatchMethod

The value sent by the client must begin with the specified characters.

Link copied to clipboard

An object that represents the range of values to match on.

Link copied to clipboard
data class Regex(val value: String) : GrpcRouteMetadataMatchMethod

The value sent by the client must include the specified characters.

Link copied to clipboard
Link copied to clipboard
data class Suffix(val value: String) : GrpcRouteMetadataMatchMethod

The value sent by the client must end with the specified characters.

Functions

Link copied to clipboard

Casts this GrpcRouteMetadataMatchMethod as a Exact and retrieves its kotlin.String value. Throws an exception if the GrpcRouteMetadataMatchMethod is not a Exact.

Link copied to clipboard

Casts this GrpcRouteMetadataMatchMethod as a Exact and retrieves its kotlin.String value. Returns null if the GrpcRouteMetadataMatchMethod is not a Exact.

Link copied to clipboard

Casts this GrpcRouteMetadataMatchMethod as a Prefix and retrieves its kotlin.String value. Throws an exception if the GrpcRouteMetadataMatchMethod is not a Prefix.

Link copied to clipboard

Casts this GrpcRouteMetadataMatchMethod as a Prefix and retrieves its kotlin.String value. Returns null if the GrpcRouteMetadataMatchMethod is not a Prefix.

Link copied to clipboard

Casts this GrpcRouteMetadataMatchMethod as a Range and retrieves its aws.sdk.kotlin.services.appmesh.model.MatchRange value. Throws an exception if the GrpcRouteMetadataMatchMethod is not a Range.

Link copied to clipboard
Link copied to clipboard

Casts this GrpcRouteMetadataMatchMethod as a Regex and retrieves its kotlin.String value. Throws an exception if the GrpcRouteMetadataMatchMethod is not a Regex.

Link copied to clipboard

Casts this GrpcRouteMetadataMatchMethod as a Regex and retrieves its kotlin.String value. Returns null if the GrpcRouteMetadataMatchMethod is not a Regex.

Link copied to clipboard

Casts this GrpcRouteMetadataMatchMethod as a Suffix and retrieves its kotlin.String value. Throws an exception if the GrpcRouteMetadataMatchMethod is not a Suffix.

Link copied to clipboard

Casts this GrpcRouteMetadataMatchMethod as a Suffix and retrieves its kotlin.String value. Returns null if the GrpcRouteMetadataMatchMethod is not a Suffix.