Class: Aws::AppMesh::Types::GrpcRouteMetadataMatchMethod

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb

Overview

Note:

GrpcRouteMetadataMatchMethod is a union - when making an API calls you must set exactly one of the members.

Note:

GrpcRouteMetadataMatchMethod is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of GrpcRouteMetadataMatchMethod corresponding to the set member.

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

Defined Under Namespace

Classes: Exact, Prefix, Range, Regex, Suffix, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#exactString

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

Returns:

  • (String)


2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 2090

class GrpcRouteMetadataMatchMethod < Struct.new(
  :exact,
  :prefix,
  :range,
  :regex,
  :suffix,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Exact < GrpcRouteMetadataMatchMethod; end
  class Prefix < GrpcRouteMetadataMatchMethod; end
  class Range < GrpcRouteMetadataMatchMethod; end
  class Regex < GrpcRouteMetadataMatchMethod; end
  class Suffix < GrpcRouteMetadataMatchMethod; end
  class Unknown < GrpcRouteMetadataMatchMethod; end
end

#prefixString

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

Returns:

  • (String)


2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 2090

class GrpcRouteMetadataMatchMethod < Struct.new(
  :exact,
  :prefix,
  :range,
  :regex,
  :suffix,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Exact < GrpcRouteMetadataMatchMethod; end
  class Prefix < GrpcRouteMetadataMatchMethod; end
  class Range < GrpcRouteMetadataMatchMethod; end
  class Regex < GrpcRouteMetadataMatchMethod; end
  class Suffix < GrpcRouteMetadataMatchMethod; end
  class Unknown < GrpcRouteMetadataMatchMethod; end
end

#rangeTypes::MatchRange

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

Returns:



2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 2090

class GrpcRouteMetadataMatchMethod < Struct.new(
  :exact,
  :prefix,
  :range,
  :regex,
  :suffix,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Exact < GrpcRouteMetadataMatchMethod; end
  class Prefix < GrpcRouteMetadataMatchMethod; end
  class Range < GrpcRouteMetadataMatchMethod; end
  class Regex < GrpcRouteMetadataMatchMethod; end
  class Suffix < GrpcRouteMetadataMatchMethod; end
  class Unknown < GrpcRouteMetadataMatchMethod; end
end

#regexString

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

Returns:

  • (String)


2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 2090

class GrpcRouteMetadataMatchMethod < Struct.new(
  :exact,
  :prefix,
  :range,
  :regex,
  :suffix,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Exact < GrpcRouteMetadataMatchMethod; end
  class Prefix < GrpcRouteMetadataMatchMethod; end
  class Range < GrpcRouteMetadataMatchMethod; end
  class Regex < GrpcRouteMetadataMatchMethod; end
  class Suffix < GrpcRouteMetadataMatchMethod; end
  class Unknown < GrpcRouteMetadataMatchMethod; end
end

#suffixString

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

Returns:

  • (String)


2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 2090

class GrpcRouteMetadataMatchMethod < Struct.new(
  :exact,
  :prefix,
  :range,
  :regex,
  :suffix,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Exact < GrpcRouteMetadataMatchMethod; end
  class Prefix < GrpcRouteMetadataMatchMethod; end
  class Range < GrpcRouteMetadataMatchMethod; end
  class Regex < GrpcRouteMetadataMatchMethod; end
  class Suffix < GrpcRouteMetadataMatchMethod; end
  class Unknown < GrpcRouteMetadataMatchMethod; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2090
2091
2092
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 2090

def unknown
  @unknown
end