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

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

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

Returns:

  • (String)


9111
9112
9113
9114
9115
9116
# File 'lib/aws-sdk-dynamodb/types.rb', line 9111

class UntagResourceInput < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = []
  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 DynamoDB resource.

Returns:

  • (Array<String>)


9111
9112
9113
9114
9115
9116
# File 'lib/aws-sdk-dynamodb/types.rb', line 9111

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