Struct rusoto_kinesis::GetRecordsInput[][src]

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

Represents the input for GetRecords.

Fields

The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException.

The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the 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