published on Tuesday, Mar 10, 2026 by Pulumi
published on Tuesday, Mar 10, 2026 by Pulumi
Manages an individual DynamoDB resource tag. This resource should only be used in cases where DynamoDB resources are created outside the provider (e.g., Table replicas in other regions).
NOTE: This tagging resource should not be combined with the resource for managing the parent resource. For example, using
aws.dynamodb.Tableandaws.dynamodb.Tagto manage tags of the same DynamoDB Table in the same region will cause a perpetual difference where theaws_dynamodb_clusterresource will try to remove the tag being added by theaws.dynamodb.Tagresource.
NOTE: This tagging resource does not use the provider
ignore_tagsconfiguration.
Create Tag Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Tag(name: string, args: TagArgs, opts?: CustomResourceOptions);@overload
def Tag(resource_name: str,
args: TagArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Tag(resource_name: str,
opts: Optional[ResourceOptions] = None,
key: Optional[str] = None,
resource_arn: Optional[str] = None,
value: Optional[str] = None)func NewTag(ctx *Context, name string, args TagArgs, opts ...ResourceOption) (*Tag, error)public Tag(string name, TagArgs args, CustomResourceOptions? opts = null)type: aws:dynamodb:Tag
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args TagArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TagArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TagArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TagArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TagArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var awsTagResource = new Aws.DynamoDB.Tag("awsTagResource", new()
{
Key = "string",
ResourceArn = "string",
Value = "string",
});
example, err := dynamodb.NewTag(ctx, "awsTagResource", &dynamodb.TagArgs{
Key: pulumi.String("string"),
ResourceArn: pulumi.String("string"),
Value: pulumi.String("string"),
})
var awsTagResource = new com.pulumi.aws.dynamodb.Tag("awsTagResource", com.pulumi.aws.dynamodb.TagArgs.builder()
.key("string")
.resourceArn("string")
.value("string")
.build());
aws_tag_resource = aws.dynamodb.Tag("awsTagResource",
key="string",
resource_arn="string",
value="string")
const awsTagResource = new aws.dynamodb.Tag("awsTagResource", {
key: "string",
resourceArn: "string",
value: "string",
});
type: aws:dynamodb:Tag
properties:
key: string
resourceArn: string
value: string
Tag Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Tag resource accepts the following input properties:
- Key string
- Tag name.
- Resource
Arn string - Amazon Resource Name (ARN) of the DynamoDB resource to tag.
- Value string
- Tag value.
- Key string
- Tag name.
- Resource
Arn string - Amazon Resource Name (ARN) of the DynamoDB resource to tag.
- Value string
- Tag value.
- key String
- Tag name.
- resource
Arn String - Amazon Resource Name (ARN) of the DynamoDB resource to tag.
- value String
- Tag value.
- key string
- Tag name.
- resource
Arn string - Amazon Resource Name (ARN) of the DynamoDB resource to tag.
- value string
- Tag value.
- key str
- Tag name.
- resource_
arn str - Amazon Resource Name (ARN) of the DynamoDB resource to tag.
- value str
- Tag value.
- key String
- Tag name.
- resource
Arn String - Amazon Resource Name (ARN) of the DynamoDB resource to tag.
- value String
- Tag value.
Outputs
All input properties are implicitly available as output properties. Additionally, the Tag resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Tag Resource
Get an existing Tag resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: TagState, opts?: CustomResourceOptions): Tag@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
key: Optional[str] = None,
resource_arn: Optional[str] = None,
value: Optional[str] = None) -> Tagfunc GetTag(ctx *Context, name string, id IDInput, state *TagState, opts ...ResourceOption) (*Tag, error)public static Tag Get(string name, Input<string> id, TagState? state, CustomResourceOptions? opts = null)public static Tag get(String name, Output<String> id, TagState state, CustomResourceOptions options)resources: _: type: aws:dynamodb:Tag get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Key string
- Tag name.
- Resource
Arn string - Amazon Resource Name (ARN) of the DynamoDB resource to tag.
- Value string
- Tag value.
- Key string
- Tag name.
- Resource
Arn string - Amazon Resource Name (ARN) of the DynamoDB resource to tag.
- Value string
- Tag value.
- key String
- Tag name.
- resource
Arn String - Amazon Resource Name (ARN) of the DynamoDB resource to tag.
- value String
- Tag value.
- key string
- Tag name.
- resource
Arn string - Amazon Resource Name (ARN) of the DynamoDB resource to tag.
- value string
- Tag value.
- key str
- Tag name.
- resource_
arn str - Amazon Resource Name (ARN) of the DynamoDB resource to tag.
- value str
- Tag value.
- key String
- Tag name.
- resource
Arn String - Amazon Resource Name (ARN) of the DynamoDB resource to tag.
- value String
- Tag value.
Import
aws_dynamodb_tag can be imported by using the DynamoDB resource identifier and key, separated by a comma (,), e.g.,
$ pulumi import aws:dynamodb/tag:Tag example arn:aws:dynamodb:us-east-1:123456789012:table/example,Name
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
published on Tuesday, Mar 10, 2026 by Pulumi
