Struct aws_sdk_dynamodbstreams::input::DescribeStreamInput [−][src]
#[non_exhaustive]pub struct DescribeStreamInput {
pub stream_arn: Option<String>,
pub limit: Option<i32>,
pub exclusive_start_shard_id: Option<String>,
}
Expand description
Represents the input of a DescribeStream
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.stream_arn: Option<String>
The Amazon Resource Name (ARN) for the stream.
limit: Option<i32>
The maximum number of shard objects to return. The upper limit is 100.
exclusive_start_shard_id: Option<String>
The shard ID of the first item that this operation will evaluate. Use the value that was
returned for LastEvaluatedShardId
in the previous operation.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeStream, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeStream, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeStream
>
Creates a new builder-style object to manufacture DescribeStreamInput
The Amazon Resource Name (ARN) for the stream.
The maximum number of shard objects to return. The upper limit is 100.
The shard ID of the first item that this operation will evaluate. Use the value that was
returned for LastEvaluatedShardId
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 DescribeStreamInput
impl Send for DescribeStreamInput
impl Sync for DescribeStreamInput
impl Unpin for DescribeStreamInput
impl UnwindSafe for DescribeStreamInput
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