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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-dynamodb/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)


9371
9372
9373
9374
9375
9376
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9371

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>)


9371
9372
9373
9374
9375
9376
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9371

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