Struct aws_sdk_dynamodbstreams::model::Shard [−][src]
#[non_exhaustive]pub struct Shard {
pub shard_id: Option<String>,
pub sequence_number_range: Option<SequenceNumberRange>,
pub parent_shard_id: Option<String>,
}
Expand description
A uniquely identified group of stream records within a stream.
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.shard_id: Option<String>
The system-generated identifier for this shard.
sequence_number_range: Option<SequenceNumberRange>
The range of possible sequence numbers for the shard.
parent_shard_id: Option<String>
The shard ID of the current shard's parent.
Implementations
The range of possible sequence numbers for the shard.
The shard ID of the current shard's parent.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Shard
impl UnwindSafe for Shard
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