Struct aws_sdk_dynamodbstreams::input::DescribeStreamInput
source · [−]#[non_exhaustive]pub struct DescribeStreamInput { /* private fields */ }
Expand description
Represents the input of a DescribeStream
operation.
Implementations
sourceimpl DescribeStreamInput
impl DescribeStreamInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeStream, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeStream, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DescribeStream
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeStreamInput
.
sourceimpl DescribeStreamInput
impl DescribeStreamInput
sourcepub fn stream_arn(&self) -> Option<&str>
pub fn stream_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the stream.
sourcepub fn limit(&self) -> Option<i32>
pub fn limit(&self) -> Option<i32>
The maximum number of shard objects to return. The upper limit is 100.
sourcepub fn exclusive_start_shard_id(&self) -> Option<&str>
pub fn exclusive_start_shard_id(&self) -> Option<&str>
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
sourceimpl Clone for DescribeStreamInput
impl Clone for DescribeStreamInput
sourcefn clone(&self) -> DescribeStreamInput
fn clone(&self) -> DescribeStreamInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DescribeStreamInput
impl Debug for DescribeStreamInput
sourceimpl PartialEq<DescribeStreamInput> for DescribeStreamInput
impl PartialEq<DescribeStreamInput> for DescribeStreamInput
sourcefn eq(&self, other: &DescribeStreamInput) -> bool
fn eq(&self, other: &DescribeStreamInput) -> bool
impl StructuralPartialEq for DescribeStreamInput
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more