Struct rusoto_sdb::GetAttributesRequest[][src]

pub struct GetAttributesRequest {
    pub attribute_names: Option<Vec<String>>,
    pub consistent_read: Option<bool>,
    pub domain_name: String,
    pub item_name: String,
}

Fields

The names of the attributes.

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.

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

The name of the item.

Trait Implementations

impl Default for GetAttributesRequest
[src]

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

impl Debug for GetAttributesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetAttributesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetAttributesRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations