Class: Aws::ECR::Types::UntagResourceRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the resource from which to remove tags. Currently, the only supported resource is an Amazon ECR repository.

Returns:

  • (String)


3811
3812
3813
3814
3815
3816
# File 'lib/aws-sdk-ecr/types.rb', line 3811

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

#tag_keysArray<String>

The keys of the tags to be removed.

Returns:

  • (Array<String>)


3811
3812
3813
3814
3815
3816
# File 'lib/aws-sdk-ecr/types.rb', line 3811

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