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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-applicationdiscoveryservice/types.rb

Overview

Note:

When making an API call, you may pass DeleteTagsRequest data as a 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>)


554
555
556
557
558
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 554

class DeleteTagsRequest < Struct.new(
  :configuration_ids,
  :tags)
  include Aws::Structure
end

#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:

‘“serverType”, “value”: “webServer”`

Returns:



554
555
556
557
558
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 554

class DeleteTagsRequest < Struct.new(
  :configuration_ids,
  :tags)
  include Aws::Structure
end