Get Attributes
simpledb_get_attributes | R Documentation |
Returns all of the attributes associated with the specified item¶
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.
Usage¶
simpledb_get_attributes(DomainName, ItemName, AttributeNames,
ConsistentRead)
Arguments¶
DomainName |
[required] The name of the domain in which to perform the operation. |
ItemName |
[required] The name of the item. |
AttributeNames |
The names of the attributes. |
ConsistentRead |
Determines whether or not strong consistency should be enforced
when data is read from SimpleDB. If |
Value¶
A list with the following syntax:
list(
Attributes = list(
list(
Name = "string",
AlternateNameEncoding = "string",
Value = "string",
AlternateValueEncoding = "string"
)
)
)
Request syntax¶
svc$get_attributes(
DomainName = "string",
ItemName = "string",
AttributeNames = list(
"string"
),
ConsistentRead = TRUE|FALSE
)