Amazon.EC2.Model.CreateTagsRequest.CreateTagsRequest C# (CSharp) Method

CreateTagsRequest() public method

Instantiates CreateTagsRequest with the parameterized properties
public CreateTagsRequest ( List resources, List tags ) : System
resources List The IDs of one or more resources to tag. For example, ami-1a2b3c4d.
tags List One or more tags. The value parameter is required, but if you don't want the tag to have a value, specify the parameter with no value, and we set the value to an empty string.
return System
        public CreateTagsRequest(List<string> resources, List<Tag> tags)
        {
            _resources = resources;
            _tags = tags;
        }

Same methods

CreateTagsRequest::CreateTagsRequest ( ) : System