Amazon.DataPipeline.AmazonDataPipelineClient.RemoveTagsAsync C# (CSharp) Method

RemoveTagsAsync() public method

Removes existing tags from the specified pipeline.
/// An internal service error occurred. /// /// The request was not valid. Verify that your request was properly formatted, that the /// signature was generated with the correct credentials, and that you haven't exceeded /// any of the service limits for your account. /// /// The specified pipeline has been deleted. /// /// The specified pipeline was not found. Verify that you used the correct user and account /// identifiers. ///
public RemoveTagsAsync ( string pipelineId, List tagKeys, System cancellationToken = default(CancellationToken) ) : Task
pipelineId string The ID of the pipeline.
tagKeys List The keys of the tags to remove.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
return Task
        public Task<RemoveTagsResponse> RemoveTagsAsync(string pipelineId, List<string> tagKeys, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new RemoveTagsRequest();
            request.PipelineId = pipelineId;
            request.TagKeys = tagKeys;
            return RemoveTagsAsync(request, cancellationToken);
        }

Same methods

AmazonDataPipelineClient::RemoveTagsAsync ( Amazon.DataPipeline.Model.RemoveTagsRequest request, System cancellationToken = default(CancellationToken) ) : Task