Class: Aws::AutoScaling::Types::DeleteTagsType

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

Overview

Note:

When making an API call, you may pass DeleteTagsType data as a hash:

{
  tags: [ # required
    {
      resource_id: "XmlString",
      resource_type: "XmlString",
      key: "TagKey", # required
      value: "TagValue",
      propagate_at_launch: false,
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#tagsArray<Types::Tag>

One or more tags.

Returns:



1472
1473
1474
1475
# File 'lib/aws-sdk-autoscaling/types.rb', line 1472

class DeleteTagsType < Struct.new(
  :tags)
  include Aws::Structure
end