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.

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.

Note:

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

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

Syntax

C#
public virtual CreateTagsResponse CreateTags(
         CreateTagsRequest request
)

Parameters

request
Type: Amazon.ElasticFileSystem.Model.CreateTagsRequest

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

Return Value


The response from the CreateTags service method, as returned by ElasticFileSystem.

Exceptions

ExceptionCondition
BadRequestException Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.
FileSystemNotFoundException Returned if the specified FileSystemId value doesn't exist in the requester's Amazon Web Services account.
InternalServerErrorException Returned if an error occurred on the server side.

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 Framework:
Supported in: 4.5, 4.0, 3.5

See Also