[][src]Struct rusoto_kinesis::SubscribeToShardEvent

pub struct SubscribeToShardEvent {
    pub continuation_sequence_number: String,
    pub millis_behind_latest: i64,
    pub records: Vec<Record>,
}

After you call SubscribeToShard, Kinesis Data Streams sends events of this type to your consumer.

Fields

continuation_sequence_number: String

Use this as StartingSequenceNumber in the next call to SubscribeToShard.

millis_behind_latest: i64

The number of milliseconds the read records are from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates that record processing is caught up, and there are no new records to process at this moment.

records: Vec<Record>

Trait Implementations

impl Clone for SubscribeToShardEvent[src]

impl Debug for SubscribeToShardEvent[src]

impl Default for SubscribeToShardEvent[src]

impl<'de> Deserialize<'de> for SubscribeToShardEvent[src]

impl PartialEq<SubscribeToShardEvent> for SubscribeToShardEvent[src]

impl StructuralPartialEq for SubscribeToShardEvent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.