Class: Aws::SimpleDB::Types::Attribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimpleDB::Types::Attribute
- Defined in:
- gems/aws-sdk-simpledb/lib/aws-sdk-simpledb/types.rb
Overview
Note:
When making an API call, you may pass Attribute data as a hash:
{
name: "String", # required
alternate_name_encoding: "String",
value: "String", # required
alternate_value_encoding: "String",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alternate_name_encoding ⇒ String
-
#alternate_value_encoding ⇒ String
-
#name ⇒ String
The name of the attribute.
-
#value ⇒ String
The value of the attribute.
Instance Attribute Details
#alternate_name_encoding ⇒ String
37 38 39 40 41 42 43 44 |
# File 'gems/aws-sdk-simpledb/lib/aws-sdk-simpledb/types.rb', line 37 class Attribute < Struct.new( :name, :alternate_name_encoding, :value, :alternate_value_encoding) SENSITIVE = [] include Aws::Structure end |
#alternate_value_encoding ⇒ String
37 38 39 40 41 42 43 44 |
# File 'gems/aws-sdk-simpledb/lib/aws-sdk-simpledb/types.rb', line 37 class Attribute < Struct.new( :name, :alternate_name_encoding, :value, :alternate_value_encoding) SENSITIVE = [] include Aws::Structure end |