[][src]Struct rusoto_kinesis::ConsumerDescription

pub struct ConsumerDescription {
    pub consumer_arn: String,
    pub consumer_creation_timestamp: f64,
    pub consumer_name: String,
    pub consumer_status: String,
    pub stream_arn: String,
}

An object that represents the details of a registered consumer.

Fields

consumer_arn: String

When you register a consumer, Kinesis Data Streams generates an ARN for it. You need this ARN to be able to call SubscribeToShard.

If you delete a consumer and then create a new one with the same name, it won't have the same ARN. That's because consumer ARNs contain the creation timestamp. This is important to keep in mind if you have IAM policies that reference consumer ARNs.

consumer_creation_timestamp: f64

consumer_name: String

The name of the consumer is something you choose when you register the consumer.

consumer_status: String

A consumer can't read data while in the CREATING or DELETING states.

stream_arn: String

The ARN of the stream with which you registered the consumer.

Trait Implementations

impl PartialEq<ConsumerDescription> for ConsumerDescription[src]

impl Default for ConsumerDescription[src]

impl Clone for ConsumerDescription[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ConsumerDescription[src]

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

Auto Trait Implementations

impl Send for ConsumerDescription

impl Sync for ConsumerDescription

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self