Class: Aws::CloudDirectory::Types::TypedLinkAttributeRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::TypedLinkAttributeRange
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
Note:
When making an API call, you may pass TypedLinkAttributeRange data as a hash:
{
attribute_name: "AttributeName",
range: { # required
start_mode: "FIRST", # required, accepts FIRST, LAST, LAST_BEFORE_MISSING_VALUES, INCLUSIVE, EXCLUSIVE
start_value: {
string_value: "StringAttributeValue",
binary_value: "data",
boolean_value: false,
number_value: "NumberAttributeValue",
datetime_value: Time.now,
},
end_mode: "FIRST", # required, accepts FIRST, LAST, LAST_BEFORE_MISSING_VALUES, INCLUSIVE, EXCLUSIVE
end_value: {
string_value: "StringAttributeValue",
binary_value: "data",
boolean_value: false,
number_value: "NumberAttributeValue",
datetime_value: Time.now,
},
},
}
Identifies the range of attributes that are used by a specified filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_name ⇒ String
The unique name of the typed link attribute.
-
#range ⇒ Types::TypedAttributeValueRange
The range of attribute values that are being selected.
Instance Attribute Details
#attribute_name ⇒ String
The unique name of the typed link attribute.
7806 7807 7808 7809 7810 7811 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 7806 class TypedLinkAttributeRange < Struct.new( :attribute_name, :range) SENSITIVE = [] include Aws::Structure end |
#range ⇒ Types::TypedAttributeValueRange
The range of attribute values that are being selected.
7806 7807 7808 7809 7810 7811 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 7806 class TypedLinkAttributeRange < Struct.new( :attribute_name, :range) SENSITIVE = [] include Aws::Structure end |