Class: Aws::CloudDirectory::Types::AttributeNameAndValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::AttributeNameAndValue
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
Note:
When making an API call, you may pass AttributeNameAndValue data as a hash:
{
attribute_name: "AttributeName", # required
value: { # required
string_value: "StringAttributeValue",
binary_value: "data",
boolean_value: false,
number_value: "NumberAttributeValue",
datetime_value: Time.now,
},
}
Identifies the attribute name and value for a typed link.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_name ⇒ String
The attribute name of the typed link.
-
#value ⇒ Types::TypedAttributeValue
The value for the typed link.
Instance Attribute Details
#attribute_name ⇒ String
The attribute name of the typed link.
455 456 457 458 459 460 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 455 class AttributeNameAndValue < Struct.new( :attribute_name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Types::TypedAttributeValue
The value for the typed link.
455 456 457 458 459 460 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 455 class AttributeNameAndValue < Struct.new( :attribute_name, :value) SENSITIVE = [] include Aws::Structure end |