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.

Container for the parameters to the RemoveTagsFromResource operation. Removes metadata tags from an Amazon Neptune resource.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Neptune.AmazonNeptuneRequest
      Amazon.Neptune.Model.RemoveTagsFromResourceRequest

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

Syntax

C#
public class RemoveTagsFromResourceRequest : AmazonNeptuneRequest
         IAmazonWebServiceRequest

The RemoveTagsFromResourceRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ResourceName System.String

Gets and sets the property ResourceName.

The Amazon Neptune resource that the tags are removed from. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an Amazon Resource Name (ARN).

Public Property TagKeys System.Collections.Generic.List<System.String>

Gets and sets the property TagKeys.

The tag key (name) of the tag to be removed.

Examples

This example removes the specified tag associated with the specified DB option group.

To remove tags from a resource


var response = client.RemoveTagsFromResource(new RemoveTagsFromResourceRequest 
{
    ResourceName = "arn:aws:rds:us-east-1:992648334831:og:mydboptiongroup",
    TagKeys = new List<string> {
        "MyKey"
    }
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

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