Table of Contents

Class UntagResourceRequest

Namespace
Amazon.DynamoDBv2.Model
Assembly
AWSSDK.DynamoDBv2.dll

Container for the parameters to the UntagResource operation. Removes the association of tags from an Amazon DynamoDB resource. You can call

UntagResource
up to five times per second, per account.

For an overview on tagging DynamoDB resources, see Tagging for DynamoDB in the Amazon DynamoDB Developer Guide.

public class UntagResourceRequest : AmazonDynamoDBRequest
Inheritance
UntagResourceRequest

Constructors

UntagResourceRequest()

public UntagResourceRequest()

Properties

ResourceArn

Gets and sets the property ResourceArn.

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

public string ResourceArn { get; set; }

Property Value

string

TagKeys

Gets and sets the property TagKeys.

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

public List<string> TagKeys { get; set; }

Property Value

List<string>