Class: Aws::DataPipeline::Types::AddTagsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::AddTagsInput
- Defined in:
- gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb
Overview
Note:
When making an API call, you may pass AddTagsInput data as a hash:
{
pipeline_id: "id", # required
tags: [ # required
{
key: "tagKey", # required
value: "tagValue", # required
},
],
}
Contains the parameters for AddTags.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#pipeline_id ⇒ String
The ID of the pipeline.
-
#tags ⇒ Array<Types::Tag>
The tags to add, as key/value pairs.
Instance Attribute Details
#pipeline_id ⇒ String
The ID of the pipeline.
83 84 85 86 87 88 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 83 class AddTagsInput < Struct.new( :pipeline_id, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags to add, as key/value pairs.
83 84 85 86 87 88 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 83 class AddTagsInput < Struct.new( :pipeline_id, :tags) SENSITIVE = [] include Aws::Structure end |