Struct aws_sdk_dynamodbstreams::input::ListStreamsInput
source · #[non_exhaustive]pub struct ListStreamsInput { /* private fields */ }
Expand description
Represents the input of a ListStreams
operation.
Implementations§
source§impl ListStreamsInput
impl ListStreamsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListStreams, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListStreams, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListStreams
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListStreamsInput
.
source§impl ListStreamsInput
impl ListStreamsInput
sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
If this parameter is provided, then only the streams associated with this table name are returned.
sourcepub fn limit(&self) -> Option<i32>
pub fn limit(&self) -> Option<i32>
The maximum number of streams to return. The upper limit is 100.
sourcepub fn exclusive_start_stream_arn(&self) -> Option<&str>
pub fn exclusive_start_stream_arn(&self) -> Option<&str>
The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
Trait Implementations§
source§impl Clone for ListStreamsInput
impl Clone for ListStreamsInput
source§fn clone(&self) -> ListStreamsInput
fn clone(&self) -> ListStreamsInput
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 moresource§impl Debug for ListStreamsInput
impl Debug for ListStreamsInput
source§impl PartialEq<ListStreamsInput> for ListStreamsInput
impl PartialEq<ListStreamsInput> for ListStreamsInput
source§fn eq(&self, other: &ListStreamsInput) -> bool
fn eq(&self, other: &ListStreamsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.