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

Class: Aws::ApplicationDiscoveryService::Types::CreateTagsRequest

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

Overview

Note:

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

{
  configuration_ids: ["ConfigurationId"], # required
  tags: [ # required
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_idsArray<String>

A list of configuration items that you want to tag.

Returns:

  • (Array<String>)

    A list of configuration items that you want to tag.

#tagsArray<Types::Tag>

Tags that you want to associate with one or more configuration items. Specify the tags that you want to create in a key-value format. For example:

{"key": "serverType", "value": "webServer"}

Returns:

  • (Array<Types::Tag>)

    Tags that you want to associate with one or more configuration items.