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]

[src]

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

impl Debug for GetRecordsInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetRecordsInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations