Struct aws_sdk_dynamodbstreams::input::ListStreamsInput [−][src]
#[non_exhaustive]pub struct ListStreamsInput {
pub table_name: Option<String>,
pub limit: Option<i32>,
pub exclusive_start_stream_arn: Option<String>,
}
Expand description
Represents the input 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.table_name: Option<String>
If this parameter is provided, then only the streams associated with this table name are returned.
limit: Option<i32>
The maximum number of streams to return. The upper limit is 100.
exclusive_start_stream_arn: Option<String>
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListStreams, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListStreams, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListStreams
>
Creates a new builder-style object to manufacture ListStreamsInput
If this parameter is provided, then only the streams associated with this table name are returned.
The maximum number of streams to return. The upper limit is 100.
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
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 ListStreamsInput
impl Send for ListStreamsInput
impl Sync for ListStreamsInput
impl Unpin for ListStreamsInput
impl UnwindSafe for ListStreamsInput
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