Class: Aws::DynamoDB::Types::UntagResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::UntagResourceInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The DynamoDB resource that the tags will be removed from.
-
#tag_keys ⇒ Array<String>
A list of tag keys.
Instance Attribute Details
#resource_arn ⇒ String
The DynamoDB resource that the tags will be removed from. This value is an Amazon Resource Name (ARN).
9537 9538 9539 9540 9541 9542 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 9537 class UntagResourceInput < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<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.
9537 9538 9539 9540 9541 9542 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 9537 class UntagResourceInput < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |