Class: Aws::Kinesis::Types::TagResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::TagResourceInput
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the Kinesis resource to which to add tags.
-
#stream_id ⇒ String
Not Implemented.
-
#tags ⇒ Hash<String,String>
An array of tags to be added to the Kinesis resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the Kinesis resource to which to add tags.
2778 2779 2780 2781 2782 2783 2784 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2778 class TagResourceInput < Struct.new( :tags, :resource_arn, :stream_id) SENSITIVE = [] include Aws::Structure end |
#stream_id ⇒ String
Not Implemented. Reserved for future use.
2778 2779 2780 2781 2782 2783 2784 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2778 class TagResourceInput < Struct.new( :tags, :resource_arn, :stream_id) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
An array of tags to be added to the Kinesis resource. A tag consists of a required key and an optional value. You can add up to 50 tags per resource.
Tags may only contain Unicode letters, digits, white space, or these symbols: _ . : / = + - @.
2778 2779 2780 2781 2782 2783 2784 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2778 class TagResourceInput < Struct.new( :tags, :resource_arn, :stream_id) SENSITIVE = [] include Aws::Structure end |