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

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

Overview

Note:

When making an API call, you may pass MatchRange data as a hash:

{
  end: 1, # required
  start: 1, # required
}

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.

Instance Attribute Summary collapse

Instance Attribute Details

#endInteger

The end of the range.

Returns:

  • (Integer)


1417
1418
1419
1420
1421
# File 'lib/aws-sdk-appmesh/types.rb', line 1417

class MatchRange < Struct.new(
  :end,
  :start)
  include Aws::Structure
end

#startInteger

The start of the range.

Returns:

  • (Integer)


1417
1418
1419
1420
1421
# File 'lib/aws-sdk-appmesh/types.rb', line 1417

class MatchRange < Struct.new(
  :end,
  :start)
  include Aws::Structure
end