Struct rusoto_dynamodbstreams::GetRecordsOutput[][src]

pub struct GetRecordsOutput {
    pub next_shard_iterator: Option<String>,
    pub records: Option<Vec<Record>>,
}

Represents the output of a GetRecords operation.

Fields

The next position in the shard from which to start sequentially reading stream records. If set to null, the shard has been closed and the requested iterator will not return any more data.

The stream records from the shard, which were retrieved using the shard iterator.

Trait Implementations

impl Default for GetRecordsOutput
[src]

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

impl Debug for GetRecordsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetRecordsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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