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

Class: Aws::ApplicationDiscoveryService::Types::DeleteTagsRequest

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

Overview

Note:

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_idsArray<String>

A list of configuration items with tags that you want to delete.

Returns:

  • (Array<String>)

    A list of configuration items with tags that you want to delete.

#tagsArray<Types::Tag>

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

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

Returns:

  • (Array<Types::Tag>)

    Tags that you want to delete from one or more configuration items.