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

Class: Aws::Kinesis::Types::DeregisterStreamConsumerInput

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

Overview

Note:

When passing DeregisterStreamConsumerInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  stream_arn: "StreamARN",
  consumer_name: "ConsumerName",
  consumer_arn: "ConsumerARN",
}

Instance Attribute Summary collapse

Instance Attribute Details

#consumer_arnString

The ARN returned by Kinesis Data Streams when you registered the consumer. If you don\'t know the ARN of the consumer that you want to deregister, you can use the ListStreamConsumers operation to get a list of the descriptions of all the consumers that are currently registered with a given data stream. The description of a consumer contains its ARN.

Returns:

  • (String)

    The ARN returned by Kinesis Data Streams when you registered the consumer.

#consumer_nameString

The name that you gave to the consumer.

Returns:

  • (String)

    The name that you gave to the consumer.

#stream_arnString

The ARN of the Kinesis data stream that the consumer is registered with. For more information, see Amazon Resource Names (ARNs) and AWS Service Namespaces.

Returns:

  • (String)

    The ARN of the Kinesis data stream that the consumer is registered with.