Struct aws_sdk_dynamodbstreams::output::ListStreamsOutput
source · #[non_exhaustive]pub struct ListStreamsOutput { /* private fields */ }
Expand description
Represents the output of a ListStreams
operation.
Implementations§
source§impl ListStreamsOutput
impl ListStreamsOutput
sourcepub fn streams(&self) -> Option<&[Stream]>
pub fn streams(&self) -> Option<&[Stream]>
A list of stream descriptors associated with the current account and endpoint.
sourcepub fn last_evaluated_stream_arn(&self) -> Option<&str>
pub fn last_evaluated_stream_arn(&self) -> Option<&str>
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.
source§impl ListStreamsOutput
impl ListStreamsOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListStreamsOutput
.
Trait Implementations§
source§impl Clone for ListStreamsOutput
impl Clone for ListStreamsOutput
source§fn clone(&self) -> ListStreamsOutput
fn clone(&self) -> ListStreamsOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more