Class: Aws::DynamoDB::Types::UntagResourceInput

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

Overview

Note:

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

{
  resource_arn: "ResourceArnString", # required
  tag_keys: ["TagKeyString"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon DyanamoDB resource the tags will be removed from. This value is an Amazon Resource Name (ARN).

Returns:

  • (String)


7250
7251
7252
7253
7254
# File 'lib/aws-sdk-dynamodb/types.rb', line 7250

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

#tag_keysArray<String>

A list of tag keys. Existing tags of the resource whose keys are members of this list will be removed from the Amazon DynamoDB resource.

Returns:

  • (Array<String>)


7250
7251
7252
7253
7254
# File 'lib/aws-sdk-dynamodb/types.rb', line 7250

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