Struct rusoto_dynamodbstreams::GetRecordsInput[][src]

pub struct GetRecordsInput {
    pub limit: Option<i64>,
    pub shard_iterator: String,
}

Represents the input of a GetRecords operation.

Fields

The maximum number of records to return from the shard. The upper limit is 1000.

A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.

Trait Implementations

impl Default for GetRecordsInput
[src]

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

impl Debug for GetRecordsInput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetRecordsInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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