Class: Aws::AppMesh::Types::GrpcRouteMetadataMatchMethod
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::GrpcRouteMetadataMatchMethod
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
GrpcRouteMetadataMatchMethod is a union - when making an API calls you must set exactly one of the members.
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
-
#exact ⇒ String
The value sent by the client must match the specified value exactly.
-
#prefix ⇒ String
The value sent by the client must begin with the specified characters.
-
#range ⇒ Types::MatchRange
An object that represents the range of values to match on.
-
#regex ⇒ String
The value sent by the client must include the specified characters.
-
#suffix ⇒ String
The value sent by the client must end with the specified characters.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#exact ⇒ String
The value sent by the client must match the specified value exactly.
3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3580 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 |
#prefix ⇒ String
The value sent by the client must begin with the specified characters.
3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3580 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 |
#range ⇒ Types::MatchRange
An object that represents the range of values to match on.
3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3580 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 |
#regex ⇒ String
The value sent by the client must include the specified characters.
3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3580 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 |
#suffix ⇒ String
The value sent by the client must end with the specified characters.
3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3580 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
3580 3581 3582 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3580 def unknown @unknown end |