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

Class: Aws::DataPipeline::Types::AddTagsInput

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

Overview

Note:

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

{
  pipeline_id: "id", # required
  tags: [ # required
    {
      key: "tagKey", # required
      value: "tagValue", # required
    },
  ],
}

Contains the parameters for AddTags.

Instance Attribute Summary collapse

Instance Attribute Details

#pipeline_idString

The ID of the pipeline.

Returns:

  • (String)

    The ID of the pipeline.

#tagsArray<Types::Tag>

The tags to add, as key/value pairs.

Returns:

  • (Array<Types::Tag>)

    The tags to add, as key/value pairs.