Amazon.CodePipeline.AmazonCodePipelineClient.DeletePipelineAsync C# (CSharp) Метод

DeletePipelineAsync() публичный Метод

Deletes the specified pipeline.
/// The validation was specified in an invalid format. ///
public DeletePipelineAsync ( string name, System cancellationToken = default(CancellationToken) ) : Task
name string The name of the pipeline to be deleted.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<DeletePipelineResponse> DeletePipelineAsync(string name, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new DeletePipelineRequest();
            request.Name = name;
            return DeletePipelineAsync(request, cancellationToken);
        }

Same methods

AmazonCodePipelineClient::DeletePipelineAsync ( Amazon.CodePipeline.Model.DeletePipelineRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonCodePipelineClient