Class: Aws::DataPipeline::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::Tag
- Defined in:
- gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb
Overview
Note:
When making an API call, you may pass Tag data as a hash:
{
key: "tagKey", # required
value: "tagValue", # required
}
Tags are key/value pairs defined by a user and associated with a pipeline to control access. AWS Data Pipeline allows you to associate ten tags per pipeline. For more information, see Controlling User Access to Pipelines in the AWS Data Pipeline Developer Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key name of a tag defined by a user.
-
#value ⇒ String
The optional value portion of a tag defined by a user.
Instance Attribute Details
#key ⇒ String
The key name of a tag defined by a user. For more information, see Controlling User Access to Pipelines in the AWS Data Pipeline Developer Guide.
1477 1478 1479 1480 1481 1482 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 1477 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The optional value portion of a tag defined by a user. For more information, see Controlling User Access to Pipelines in the AWS Data Pipeline Developer Guide.
1477 1478 1479 1480 1481 1482 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 1477 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |