pub struct ListStreamsInput {
pub exclusive_start_stream_arn: Option<String>,
pub limit: Option<i64>,
pub table_name: Option<String>,
}Expand description
Represents the input of a ListStreams operation.
Fields§
§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.
limit: Option<i64>The maximum number of streams to return. The upper limit is 100.
table_name: Option<String>If this parameter is provided, then only the streams associated with this table name are returned.
Trait Implementations§
Source§impl Clone for ListStreamsInput
impl Clone for ListStreamsInput
Source§fn clone(&self) -> ListStreamsInput
fn clone(&self) -> ListStreamsInput
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 ListStreamsInput
impl Debug for ListStreamsInput
Source§impl Default for ListStreamsInput
impl Default for ListStreamsInput
Source§fn default() -> ListStreamsInput
fn default() -> ListStreamsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListStreamsInput
impl PartialEq for ListStreamsInput
Source§impl Serialize for ListStreamsInput
impl Serialize for ListStreamsInput
impl StructuralPartialEq for ListStreamsInput
Auto Trait Implementations§
impl Freeze for ListStreamsInput
impl RefUnwindSafe for ListStreamsInput
impl Send for ListStreamsInput
impl Sync for ListStreamsInput
impl Unpin for ListStreamsInput
impl UnwindSafe for ListStreamsInput
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