[−][src]Struct rusoto_kinesis::ConsumerDescription
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]
fn eq(&self, other: &ConsumerDescription) -> bool
[src]
fn ne(&self, other: &ConsumerDescription) -> bool
[src]
impl Default for ConsumerDescription
[src]
fn default() -> ConsumerDescription
[src]
impl Clone for ConsumerDescription
[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self