Class: Aws::SimpleDB::Types::GetAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimpleDB::Types::GetAttributesRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-simpledb/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_names ⇒ Array<String>
The names of the attributes.
-
#consistent_read ⇒ Boolean
Determines whether or not strong consistency should be enforced when data is read from SimpleDB.
-
#domain_name ⇒ String
The name of the domain in which to perform the operation.
-
#item_name ⇒ String
The name of the item.
Instance Attribute Details
#attribute_names ⇒ Array<String>
The names of the attributes.
223 224 225 226 227 228 229 230 |
# File 'lib/aws-sdk-simpledb/types.rb', line 223 class GetAttributesRequest < Struct.new( :domain_name, :item_name, :attribute_names, :consistent_read) SENSITIVE = [] include Aws::Structure end |
#consistent_read ⇒ Boolean
Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If ‘true`, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.
223 224 225 226 227 228 229 230 |
# File 'lib/aws-sdk-simpledb/types.rb', line 223 class GetAttributesRequest < Struct.new( :domain_name, :item_name, :attribute_names, :consistent_read) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
The name of the domain in which to perform the operation.
223 224 225 226 227 228 229 230 |
# File 'lib/aws-sdk-simpledb/types.rb', line 223 class GetAttributesRequest < Struct.new( :domain_name, :item_name, :attribute_names, :consistent_read) SENSITIVE = [] include Aws::Structure end |
#item_name ⇒ String
The name of the item.
223 224 225 226 227 228 229 230 |
# File 'lib/aws-sdk-simpledb/types.rb', line 223 class GetAttributesRequest < Struct.new( :domain_name, :item_name, :attribute_names, :consistent_read) SENSITIVE = [] include Aws::Structure end |