Class: Aws::Backup::Types::UntagResourceInput

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

Overview

Constant Summary collapse

SENSITIVE =
[:tag_key_list]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

An ARN that uniquely identifies a resource. The format of the ARN depends on the type of the tagged resource.

Returns:

  • (String)


8367
8368
8369
8370
8371
8372
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8367

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

#tag_key_listArray<String>

A list of keys to identify which key-value tags to remove from a resource.

Returns:

  • (Array<String>)


8367
8368
8369
8370
8371
8372
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8367

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