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

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

Returns the metadata, structure, stages, and actions of a pipeline. Can be used to return the entire structure of a pipeline in JSON format, which can then be modified and used to update the pipeline structure with UpdatePipeline.
/// The specified pipeline was specified in an invalid format or cannot be found. /// /// The specified pipeline version was specified in an invalid format or cannot be found. /// /// The validation was specified in an invalid format. ///
public GetPipeline ( string name, int version ) : Amazon.CodePipeline.Model.GetPipelineResponse
name string The name of the pipeline for which you want to get information. Pipeline names must be unique under an Amazon Web Services (AWS) user account.
version int The version number of the pipeline. If you do not specify a version, defaults to the most current version.
Результат Amazon.CodePipeline.Model.GetPipelineResponse
        public GetPipelineResponse GetPipeline(string name, int version)
        {
            var request = new GetPipelineRequest();
            request.Name = name;
            request.Version = version;
            return GetPipeline(request);
        }

Same methods

AmazonCodePipelineClient::GetPipeline ( Amazon.CodePipeline.Model.GetPipelineRequest request ) : Amazon.CodePipeline.Model.GetPipelineResponse
AmazonCodePipelineClient::GetPipeline ( string name ) : Amazon.CodePipeline.Model.GetPipelineResponse
AmazonCodePipelineClient