AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Adds metadata tags to an Amazon Neptune resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon Neptune resources, or used in a Condition statement in an IAM policy for Amazon Neptune.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to AddTagsToResourceAsync.

Namespace: Amazon.Neptune
Assembly: AWSSDK.Neptune.dll
Version: 3.x.y.z

Syntax

C#
public abstract AddTagsToResourceResponse AddTagsToResource(
         AddTagsToResourceRequest request
)

Parameters

request
Type: Amazon.Neptune.Model.AddTagsToResourceRequest

Container for the necessary parameters to execute the AddTagsToResource service method.

Return Value


The response from the AddTagsToResource service method, as returned by Neptune.

Exceptions

ExceptionCondition
DBClusterNotFoundException DBClusterIdentifier does not refer to an existing DB cluster.
DBInstanceNotFoundException DBInstanceIdentifier does not refer to an existing DB instance.
DBSnapshotNotFoundException DBSnapshotIdentifier does not refer to an existing DB snapshot.

Examples

This example adds a tag to an option group.

To add tags to a resource


var response = client.AddTagsToResource(new AddTagsToResourceRequest 
{
    ResourceName = "arn:aws:rds:us-east-1:992648334831:og:mymysqloptiongroup",
    Tags = new List<Tag> {
        new Tag {
            Key = "Staging",
            Value = "LocationDB"
        }
    }
});


            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also