Class: Aws::ECR::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::UntagResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecr/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource from which to remove tags.
-
#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 from which to remove tags. Currently, the only supported resource is an Amazon ECR repository.
4263 4264 4265 4266 4267 4268 |
# File 'lib/aws-sdk-ecr/types.rb', line 4263 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.
4263 4264 4265 4266 4267 4268 |
# File 'lib/aws-sdk-ecr/types.rb', line 4263 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |