AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Represents the output of a GetPipelineState action.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.CodePipeline.Model.GetPipelineStateResponse

Namespace: Amazon.CodePipeline.Model
Assembly: AWSSDK.CodePipeline.dll
Version: 3.x.y.z

Syntax

C#
public class GetPipelineStateResponse : AmazonWebServiceResponse

The GetPipelineStateResponse type exposes the following members

Constructors

NameDescription
Public Method GetPipelineStateResponse()

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property Created System.DateTime

Gets and sets the property Created.

The date and time the pipeline was created, in timestamp format.

Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property PipelineName System.String

Gets and sets the property PipelineName.

The name of the pipeline for which you want to get the state.

Public Property PipelineVersion System.Int32

Gets and sets the property PipelineVersion.

The version number of the pipeline.

A newly created pipeline is always assigned a version number of 1.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property StageStates System.Collections.Generic.List<Amazon.CodePipeline.Model.StageState>

Gets and sets the property StageStates.

A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.

Public Property Updated System.DateTime

Gets and sets the property Updated.

The date and time the pipeline was last updated, in timestamp format.

Examples

This example returns the most recent state of a pipeline named MyFirstPipeline.

View information about the state of a pipeline


var client = new AmazonCodePipelineClient();
var response = client.GetPipelineState(new GetPipelineStateRequest 
{
    Name = "MyFirstPipeline"
});

DateTime created = response.Created; // The value for created and all other time- and date-related information such as lastStatusChange, is returned in timestamp format.
string pipelineName = response.PipelineName;
int pipelineVersion = response.PipelineVersion;
List<StageState> stageStates = response.StageStates;
DateTime updated = response.Updated;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5