aws.sdb.get_attributes
Example SQL Queries
SELECT * FROMaws.sdb.get_attributesWHERE"domain_name" = 'VALUE'AND "item_name" = 'VALUE';Description
Returns all of the attributes associated with the specified item. Optionally, the attributes returned can be limited to one or more attributes by specifying an attribute name parameter.
If the item does not exist on the replica that was accessed for this operation, an empty set is returned. The system does not return an error as it cannot guarantee the item does not exist on other replicas.
Table Definition
| Column Name | Column Data Type |
|---|---|
| domain_name Required Input Column The name of the domain in which to perform the operation. | VARCHAR |
| item_name Required Input Column The name of the item. | VARCHAR |
| attribute_names Input Column The names of the attributes. | VARCHAR[] |
Show child fields
| |
| consistent_read Input Column 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. | BOOLEAN |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| attributes The list of attributes returned by the operation. | STRUCT( |
Show child fields
| |