Class: Aws::AuditManager::Types::UntagResourceRequest

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

Overview

Note:

When making an API call, you may pass UntagResourceRequest data as a hash:

{
  resource_arn: "AuditManagerArn", # required
  tag_keys: ["TagKey"], # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the specified resource.

Returns:

  • (String)


4732
4733
4734
4735
4736
4737
# File 'lib/aws-sdk-auditmanager/types.rb', line 4732

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

#tag_keysArray<String>

The name or key of the tag.

Returns:

  • (Array<String>)


4732
4733
4734
4735
4736
4737
# File 'lib/aws-sdk-auditmanager/types.rb', line 4732

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