[][src]Struct rusoto_sdb::GetAttributesRequest

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

Fields

attribute_names: Option<Vec<String>>

The names of the attributes.

consistent_read: Option<bool>

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.

domain_name: String

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

item_name: String

The name of the item.

Trait Implementations

impl Clone for GetAttributesRequest[src]

impl Debug for GetAttributesRequest[src]

impl Default for GetAttributesRequest[src]

impl PartialEq<GetAttributesRequest> for GetAttributesRequest[src]

impl StructuralPartialEq for GetAttributesRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.