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.
Container for the parameters to the AddTagsToResource operation. 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.
Namespace: Amazon.Neptune.Model
Assembly: AWSSDK.Neptune.dll
Version: 3.x.y.z
public class AddTagsToResourceRequest : AmazonNeptuneRequest IAmazonWebServiceRequest
The AddTagsToResourceRequest type exposes the following members
Name | Description | |
---|---|---|
![]() |
AddTagsToResourceRequest() |
Name | Type | Description | |
---|---|---|---|
![]() |
ResourceName | System.String |
Gets and sets the property ResourceName. The Amazon Neptune resource that the tags are added to. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an Amazon Resource Name (ARN). |
![]() |
Tags | System.Collections.Generic.List<Amazon.Neptune.Model.Tag> |
Gets and sets the property Tags. The tags to be assigned to the Amazon Neptune resource. |
This example adds a tag to an option group.
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" } } });
.NET Core App:
Supported in: 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5, 4.0, 3.5