Struct rusoto_kinesis::GetRecordsOutput [] [src]

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

Represents the output for GetRecords.

Fields

The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates that record processing is caught up, and there are no new records to process at this moment.

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

The data records retrieved from the shard.

Trait Implementations

impl Default for GetRecordsOutput
[src]

[src]

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

impl Debug for GetRecordsOutput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetRecordsOutput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations