Struct aws_sdk_dynamodbstreams::input::GetShardIteratorInput [−][src]
#[non_exhaustive]pub struct GetShardIteratorInput {
pub stream_arn: Option<String>,
pub shard_id: Option<String>,
pub shard_iterator_type: Option<ShardIteratorType>,
pub sequence_number: Option<String>,
}
Expand description
Represents the input of a GetShardIterator
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.
shard_id: Option<String>
The identifier of the shard. The iterator will be returned for this shard ID.
shard_iterator_type: Option<ShardIteratorType>
Determines how the shard iterator is used to start reading stream records from the shard:
-
AT_SEQUENCE_NUMBER
- Start reading exactly from the position denoted by a specific sequence number. -
AFTER_SEQUENCE_NUMBER
- Start reading right after the position denoted by a specific sequence number. -
TRIM_HORIZON
- Start reading at the last (untrimmed) stream record, which is the oldest record in the shard. In DynamoDB Streams, there is a 24 hour limit on data retention. Stream records whose age exceeds this limit are subject to removal (trimming) from the stream. -
LATEST
- Start reading just after the most recent stream record in the shard, so that you always read the most recent data in the shard.
sequence_number: Option<String>
The sequence number of a stream record in the shard from which to start reading.
Implementations
pub fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetShardIterator, AwsErrorRetryPolicy>, BuildError>
pub fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetShardIterator, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetShardIterator
>
Creates a new builder-style object to manufacture GetShardIteratorInput
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 GetShardIteratorInput
impl Send for GetShardIteratorInput
impl Sync for GetShardIteratorInput
impl Unpin for GetShardIteratorInput
impl UnwindSafe for GetShardIteratorInput
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