Class: Aws::AppMesh::Types::MatchRange

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#endInteger

The end of the range.

Returns:

  • (Integer)


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

#startInteger

The start of the range.

Returns:

  • (Integer)


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