Class: Aws::Athena::Types::UntagResourceInput

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

Overview

Note:

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

Removes one or more tags from the workgroup resource for the specified ARN.

Returns:

  • (String)


1307
1308
1309
1310
1311
# File 'lib/aws-sdk-athena/types.rb', line 1307

class UntagResourceInput < Struct.new(
  :resource_arn,
  :tag_keys)
  include Aws::Structure
end

#tag_keysArray<String>

Removes the tags associated with one or more tag keys from the workgroup resource.

Returns:

  • (Array<String>)


1307
1308
1309
1310
1311
# File 'lib/aws-sdk-athena/types.rb', line 1307

class UntagResourceInput < Struct.new(
  :resource_arn,
  :tag_keys)
  include Aws::Structure
end