Class: Aws::ECS::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource to delete tags from.
-
#tag_keys ⇒ Array<String>
The keys of the tags to be removed.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource to delete tags from. Currently, the supported resources are Amazon ECS capacity providers, tasks, services, task definitions, clusters, and container instances.
11131 11132 11133 11134 11135 11136 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 11131 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The keys of the tags to be removed.
11131 11132 11133 11134 11135 11136 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 11131 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |