Struct rusoto_sdb::SelectRequest[][src]

pub struct SelectRequest {
    pub consistent_read: Option<bool>,
    pub next_token: Option<String>,
    pub select_expression: String,
}

Fields

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.

A string informing Amazon SimpleDB where to start the next list of ItemNames.

The expression used to query the domain.

Trait Implementations

impl Default for SelectRequest
[src]

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

impl Debug for SelectRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for SelectRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SelectRequest
[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