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

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

Returns information about the state of a pipeline, including the stages and actions.
/// The specified pipeline was specified in an invalid format or cannot be found. /// /// The validation was specified in an invalid format. ///
public GetPipelineStateAsync ( string name, System cancellationToken = default(CancellationToken) ) : Task
name string The name of the pipeline about which you want to get information.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetPipelineStateResponse> GetPipelineStateAsync(string name, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetPipelineStateRequest();
            request.Name = name;
            return GetPipelineStateAsync(request, cancellationToken);
        }

Same methods

AmazonCodePipelineClient::GetPipelineStateAsync ( GetPipelineStateRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonCodePipelineClient