pub struct DescribeStreamInput {
pub exclusive_start_shard_id: Option<String>,
pub limit: Option<i64>,
pub stream_arn: String,
}Expand description
Represents the input of a DescribeStream operation.
Fields§
§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.
limit: Option<i64>The maximum number of shard objects to return. The upper limit is 100.
stream_arn: StringThe Amazon Resource Name (ARN) for the stream.
Trait Implementations§
Source§impl Clone for DescribeStreamInput
impl Clone for DescribeStreamInput
Source§fn clone(&self) -> DescribeStreamInput
fn clone(&self) -> DescribeStreamInput
Returns a duplicate 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 Default for DescribeStreamInput
impl Default for DescribeStreamInput
Source§fn default() -> DescribeStreamInput
fn default() -> DescribeStreamInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeStreamInput
impl PartialEq for DescribeStreamInput
Source§impl Serialize for DescribeStreamInput
impl Serialize 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