You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SimpleDB::Types::GetAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimpleDB::Types::GetAttributesRequest
- Defined in:
- (unknown)
Overview
When passing GetAttributesRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
domain_name: "String", # required
item_name: "String", # required
attribute_names: ["String"],
consistent_read: false,
}
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.
#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.
#domain_name ⇒ String
The name of the domain in which to perform the operation.
#item_name ⇒ String
The name of the item.