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

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

Starts the specified pipeline. Specifically, it begins processing the latest commit to the source location specified as part of the pipeline.
/// The specified pipeline was specified in an invalid format or cannot be found. /// /// The validation was specified in an invalid format. ///
public StartPipelineExecutionAsync ( string name, System cancellationToken = default(CancellationToken) ) : Task
name string The name of the pipeline to start.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<StartPipelineExecutionResponse> StartPipelineExecutionAsync(string name, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new StartPipelineExecutionRequest();
            request.Name = name;
            return StartPipelineExecutionAsync(request, cancellationToken);
        }

Same methods

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