Struct aws_sdk_kinesis::types::Shard
source · #[non_exhaustive]pub struct Shard {
pub shard_id: String,
pub parent_shard_id: Option<String>,
pub adjacent_parent_shard_id: Option<String>,
pub hash_key_range: Option<HashKeyRange>,
pub sequence_number_range: Option<SequenceNumberRange>,
}Expand description
A uniquely identified group of data records in a Kinesis data 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: StringThe unique identifier of the shard within the stream.
parent_shard_id: Option<String>The shard ID of the shard's parent.
adjacent_parent_shard_id: Option<String>The shard ID of the shard adjacent to the shard's parent.
hash_key_range: Option<HashKeyRange>The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.
sequence_number_range: Option<SequenceNumberRange>The range of possible sequence numbers for the shard.
Implementations§
source§impl Shard
impl Shard
sourcepub fn parent_shard_id(&self) -> Option<&str>
pub fn parent_shard_id(&self) -> Option<&str>
The shard ID of the shard's parent.
sourcepub fn adjacent_parent_shard_id(&self) -> Option<&str>
pub fn adjacent_parent_shard_id(&self) -> Option<&str>
The shard ID of the shard adjacent to the shard's parent.
sourcepub fn hash_key_range(&self) -> Option<&HashKeyRange>
pub fn hash_key_range(&self) -> Option<&HashKeyRange>
The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.
sourcepub fn sequence_number_range(&self) -> Option<&SequenceNumberRange>
pub fn sequence_number_range(&self) -> Option<&SequenceNumberRange>
The range of possible sequence numbers for the shard.
Trait Implementations§
source§impl PartialEq for Shard
impl PartialEq for Shard
impl StructuralPartialEq for Shard
Auto Trait Implementations§
impl RefUnwindSafe for Shard
impl Send for Shard
impl Sync for Shard
impl Unpin for Shard
impl UnwindSafe for Shard
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> 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>
Creates a shared type from an unshared type.