#[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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
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§
source§impl 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.
source§impl DescribeStreamInput
 
impl DescribeStreamInput
sourcepub fn builder() -> DescribeStreamInputBuilder
 
pub fn builder() -> DescribeStreamInputBuilder
Creates a new builder-style object to manufacture DescribeStreamInput.
Trait Implementations§
source§impl Clone for DescribeStreamInput
 
impl Clone for DescribeStreamInput
source§fn clone(&self) -> DescribeStreamInput
 
fn clone(&self) -> DescribeStreamInput
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 DescribeStreamInput
 
impl Debug for DescribeStreamInput
source§impl PartialEq for DescribeStreamInput
 
impl PartialEq for DescribeStreamInput
impl StructuralPartialEq for DescribeStreamInput
Auto Trait Implementations§
impl Freeze for DescribeStreamInput
impl RefUnwindSafe for DescribeStreamInput
impl Send for DescribeStreamInput
impl Sync for DescribeStreamInput
impl Unpin for DescribeStreamInput
impl UnwindSafe for DescribeStreamInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
 
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.