Class: Aws::CloudDirectory::Types::AttributeKeyAndValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::AttributeKeyAndValue
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
Note:
When making an API call, you may pass AttributeKeyAndValue data as a hash:
{
key: { # required
schema_arn: "Arn", # required
facet_name: "FacetName", # required
name: "AttributeName", # required
},
value: { # required
string_value: "StringAttributeValue",
binary_value: "data",
boolean_value: false,
number_value: "NumberAttributeValue",
datetime_value: Time.now,
},
}
The combination of an attribute key and an attribute value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ Types::AttributeKey
The key of the attribute.
-
#value ⇒ Types::TypedAttributeValue
The value of the attribute.
Instance Attribute Details
#key ⇒ Types::AttributeKey
The key of the attribute.
422 423 424 425 426 427 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 422 class AttributeKeyAndValue < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Types::TypedAttributeValue
The value of the attribute.
422 423 424 425 426 427 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 422 class AttributeKeyAndValue < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |