Struct aws_sdk_dynamodbstreams::output::ListStreamsOutput [−][src]
#[non_exhaustive]pub struct ListStreamsOutput {
pub streams: Option<Vec<Stream>>,
pub last_evaluated_stream_arn: Option<String>,
}
Expand description
Represents the output of a ListStreams
operation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.streams: Option<Vec<Stream>>
A list of stream descriptors associated with the current account and endpoint.
last_evaluated_stream_arn: Option<String>
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.
Implementations
A list of stream descriptors associated with the current account and endpoint.
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.
Creates a new builder-style object to manufacture ListStreamsOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListStreamsOutput
impl Send for ListStreamsOutput
impl Sync for ListStreamsOutput
impl Unpin for ListStreamsOutput
impl UnwindSafe for ListStreamsOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more