Class: Aws::ECS::Types::UntagResourceRequest

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

Overview

Note:

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

{
  resource_arn: "String", # required
  tag_keys: ["TagKey"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the resource from which to delete tags. Currently, the supported resources are Amazon ECS tasks, services, task definitions, clusters, and container instances.

Returns:

  • (String)


7319
7320
7321
7322
7323
# File 'lib/aws-sdk-ecs/types.rb', line 7319

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  include Aws::Structure
end

#tag_keysArray<String>

The keys of the tags to be removed.

Returns:

  • (Array<String>)


7319
7320
7321
7322
7323
# File 'lib/aws-sdk-ecs/types.rb', line 7319

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  include Aws::Structure
end