You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Kinesis::Types::ConsumerDescription

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

An object that represents the details of a registered consumer. This type of object is returned by DescribeStreamConsumer.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#consumer_arnString

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.

Returns:

  • (String)

    When you register a consumer, Kinesis Data Streams generates an ARN for it.

#consumer_creation_timestampTime

Returns:

  • (Time)

#consumer_nameString

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

Returns:

  • (String)

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

#consumer_statusString

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

Possible values:

  • CREATING
  • DELETING
  • ACTIVE

Returns:

  • (String)

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

#stream_arnString

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

Returns:

  • (String)

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