Class: Aws::Drs::Types::UntagResourceRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:tag_keys]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

ARN of the resource for which tags are to be removed.

Returns:

  • (String)


3707
3708
3709
3710
3711
3712
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 3707

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

#tag_keysArray<String>

Array of tags to be removed.

Returns:

  • (Array<String>)


3707
3708
3709
3710
3711
3712
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 3707

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