Struct rusoto_dynamodbstreams::ListStreamsOutput[][src]

pub struct ListStreamsOutput {
    pub last_evaluated_stream_arn: Option<String>,
    pub streams: Option<Vec<Stream>>,
}

Represents the output of a ListStreams operation.

Fields

The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.

If LastEvaluatedStreamArn is empty, then the "last page" of results has been processed and there is no more data to be retrieved.

If LastEvaluatedStreamArn is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn is empty.

A list of stream descriptors associated with the current account and endpoint.

Trait Implementations

impl Default for ListStreamsOutput
[src]

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

impl Debug for ListStreamsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListStreamsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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