Class: Aws::Kinesis::Types::RegisterStreamConsumerInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::RegisterStreamConsumerInput
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#consumer_name ⇒ String
For a given Kinesis data stream, each consumer must have a unique name.
-
#stream_arn ⇒ String
The ARN of the Kinesis data stream that you want to register the consumer with.
-
#stream_id ⇒ String
Not Implemented.
-
#tags ⇒ Hash<String,String>
A set of up to 50 key-value pairs.
Instance Attribute Details
#consumer_name ⇒ String
For a given Kinesis data stream, each consumer must have a unique name. However, consumer names don't have to be unique across data streams.
1976 1977 1978 1979 1980 1981 1982 1983 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1976 class RegisterStreamConsumerInput < Struct.new( :stream_arn, :consumer_name, :stream_id, :tags) SENSITIVE = [] include Aws::Structure end |
#stream_arn ⇒ String
The ARN of the Kinesis data stream that you want to register the consumer with. For more info, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces.
1976 1977 1978 1979 1980 1981 1982 1983 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1976 class RegisterStreamConsumerInput < Struct.new( :stream_arn, :consumer_name, :stream_id, :tags) SENSITIVE = [] include Aws::Structure end |
#stream_id ⇒ String
Not Implemented. Reserved for future use.
1976 1977 1978 1979 1980 1981 1982 1983 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1976 class RegisterStreamConsumerInput < Struct.new( :stream_arn, :consumer_name, :stream_id, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A set of up to 50 key-value pairs. A tag consists of a required key and an optional value.
1976 1977 1978 1979 1980 1981 1982 1983 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1976 class RegisterStreamConsumerInput < Struct.new( :stream_arn, :consumer_name, :stream_id, :tags) SENSITIVE = [] include Aws::Structure end |