Class: Aws::SecurityHub::Types::UntagResourceRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The ARN of the resource to remove the tags from.

Returns:

  • (String)


30916
30917
30918
30919
30920
30921
# File 'lib/aws-sdk-securityhub/types.rb', line 30916

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

#tag_keysArray<String>

The tag keys associated with the tags to remove from the resource. You can remove up to 50 tags at a time.

Returns:

  • (Array<String>)


30916
30917
30918
30919
30920
30921
# File 'lib/aws-sdk-securityhub/types.rb', line 30916

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