Class: Aws::AppMesh::Types::MatchRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::MatchRange
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
An object that represents the range of values to match on. The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end ⇒ Integer
The end of the range.
-
#start ⇒ Integer
The start of the range.
Instance Attribute Details
#end ⇒ Integer
The end of the range.
3602 3603 3604 3605 3606 3607 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3602 class MatchRange < Struct.new( :end, :start) SENSITIVE = [] include Aws::Structure end |
#start ⇒ Integer
The start of the range.
3602 3603 3604 3605 3606 3607 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3602 class MatchRange < Struct.new( :end, :start) SENSITIVE = [] include Aws::Structure end |