Class: Aws::CloudDirectory::Types::ObjectAttributeRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::ObjectAttributeRange
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
Note:
When making an API call, you may pass ObjectAttributeRange data as a hash:
{
attribute_key: {
schema_arn: "Arn", # required
facet_name: "FacetName", # required
name: "AttributeName", # required
},
range: {
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,
},
},
}
A range of attributes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_key ⇒ Types::AttributeKey
The key of the attribute that the attribute range covers.
-
#range ⇒ Types::TypedAttributeValueRange
The range of attribute values being selected.
Instance Attribute Details
#attribute_key ⇒ Types::AttributeKey
The key of the attribute that the attribute range covers.
7059 7060 7061 7062 7063 7064 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 7059 class ObjectAttributeRange < Struct.new( :attribute_key, :range) SENSITIVE = [] include Aws::Structure end |
#range ⇒ Types::TypedAttributeValueRange
The range of attribute values being selected.
7059 7060 7061 7062 7063 7064 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 7059 class ObjectAttributeRange < Struct.new( :attribute_key, :range) SENSITIVE = [] include Aws::Structure end |