GlobalTableTagArgs

data class GlobalTableTagArgs(val key: Output<String>, val value: Output<String>) : ConvertibleToJava<GlobalTableTagArgs>

Constructors

Link copied to clipboard
constructor(key: Output<String>, value: Output<String>)

Properties

Link copied to clipboard
val key: Output<String>

The key of the tag. Tag keys are case sensitive. Each DynamoDB table can only have up to one tag with the same key. If you try to add an existing tag (same key), the existing tag value will be updated to the new value.

Link copied to clipboard
val value: Output<String>

The value of the tag. Tag values are case-sensitive and can be null.

Functions

Link copied to clipboard
open override fun toJava(): GlobalTableTagArgs