Amazon.SimpleSystemsManagement.AmazonSimpleSystemsManagementClient.AddTagsToResource C# (CSharp) Method

AddTagsToResource() public method

Adds or overwrites one or more tags for the specified resource. Tags are metadata that you assign to your managed instances. Tags enable you to categorize your managed instances in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value, both of which you define. For example, you could define a set of tags for your account's managed instances that helps you track each instance's owner and stack level. For example: Key=Owner and Value=DbAdmin, SysAdmin, or Dev. Or Key=Stack and Value=Production, Pre-Production, or Test. Each resource can have a maximum of 10 tags.

We recommend that you devise a set of tag keys that meets your needs for each resource type. Using a consistent set of tag keys makes it easier for you to manage your resources. You can search and filter the resources based on the tags you add. Tags don't have any semantic meaning to Amazon EC2 and are interpreted strictly as a string of characters.

For more information about tags, see Tagging Your Amazon EC2 Resources in the Amazon EC2 User Guide.

/// An error occurred on the server side. /// /// The resource ID is not valid. Verify that you entered the correct ID and try again. /// /// The resource type is not valid. If you are attempting to tag an instance, the instance /// must be a registered, managed instance. /// /// The Targets parameter includes too many tags. Remove one or more tags /// and try the command again. ///
public AddTagsToResource ( AddTagsToResourceRequest request ) : AddTagsToResourceResponse
request Amazon.SimpleSystemsManagement.Model.AddTagsToResourceRequest Container for the necessary parameters to execute the AddTagsToResource service method.
return AddTagsToResourceResponse
        public AddTagsToResourceResponse AddTagsToResource(AddTagsToResourceRequest request)
        {
            var marshaller = new AddTagsToResourceRequestMarshaller();
            var unmarshaller = AddTagsToResourceResponseUnmarshaller.Instance;

            return Invoke<AddTagsToResourceRequest,AddTagsToResourceResponse>(request, marshaller, unmarshaller);
        }
AmazonSimpleSystemsManagementClient