Struct rusoto_kinesis::SequenceNumberRange [] [src]

pub struct SequenceNumberRange {
    pub ending_sequence_number: Option<String>,
    pub starting_sequence_number: String,
}

The range of possible sequence numbers for the shard.

Fields

The ending sequence number for the range. Shards that are in the OPEN state have an ending sequence number of null.

The starting sequence number for the range.

Trait Implementations

impl Default for SequenceNumberRange
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for SequenceNumberRange
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SequenceNumberRange
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations