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
show all
Defined in:
(unknown)

Overview

Note:

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

Instance Attribute Details

#attribute_namesArray<String>

The names of the attributes.

Returns:

  • (Array<String>)

    The names of the attributes.

#consistent_readBoolean

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.

Returns:

  • (Boolean)

    Determines whether or not strong consistency should be enforced when data is read from SimpleDB.

#domain_nameString

The name of the domain in which to perform the operation.

Returns:

  • (String)

    The name of the domain in which to perform the operation.

#item_nameString

The name of the item.

Returns:

  • (String)

    The name of the item.