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 CreateTags operation.

DEPRECATED - CreateTags is deprecated and not maintained. To create tags for EFS resources, use the API action.

Creates or overwrites tags associated with a file system. Each tag is a key-value pair. If a tag key specified in the request already exists on the file system, this operation overwrites its value with the value provided in the request. If you add the Name tag to your file system, Amazon EFS returns it in the response to the DescribeFileSystems operation.

This operation requires permission for the elasticfilesystem:CreateTags action.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.ElasticFileSystem.AmazonElasticFileSystemRequest
      Amazon.ElasticFileSystem.Model.CreateTagsRequest

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

Syntax

C#
public class CreateTagsRequest : AmazonElasticFileSystemRequest
         IAmazonWebServiceRequest

The CreateTagsRequest type exposes the following members

Constructors

NameDescription
Public Method CreateTagsRequest()

Properties

NameTypeDescription
Public Property FileSystemId System.String

Gets and sets the property FileSystemId.

The ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

Public Property Tags System.Collections.Generic.List<Amazon.ElasticFileSystem.Model.Tag>

Gets and sets the property Tags.

An array of Tag objects to add. Each Tag object is a key-value pair.

Examples

This operation creates a new tag for an EFS file system.

To create a new tag


var client = new AmazonElasticFileSystemClient();
var response = client.CreateTags(new CreateTagsRequest 
{
    FileSystemId = "fs-01234567",
    Tags = new List<Tag> {
        new Tag {
            Key = "Name",
            Value = "MyFileSystem"
        }
    }
});


            

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