Struct rusoto_dynamodb::GetItemOutput [] [src]

pub struct GetItemOutput {
    pub consumed_capacity: Option<ConsumedCapacity>,
    pub item: Option<HashMap<String, AttributeValue>>,
}

Represents the output of a GetItem operation.

Fields

The capacity units consumed by the GetItem operation. The data returned includes the total provisioned throughput consumed, along with statistics for the table and any indexes involved in the operation. ConsumedCapacity is only returned if the ReturnConsumedCapacity parameter was specified. For more information, see Provisioned Throughput in the Amazon DynamoDB Developer Guide.

A map of attribute names to AttributeValue objects, as specified by ProjectionExpression.

Trait Implementations

impl Default for GetItemOutput
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for GetItemOutput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetItemOutput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for GetItemOutput

impl Sync for GetItemOutput