Show / Hide Table of Contents

Class UpdatePipelineActionProps

(deprecated) Props for the UpdatePipelineAction.

Inheritance
System.Object
UpdatePipelineActionProps
Implements
IUpdatePipelineActionProps
Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Pipelines.dll
Syntax (csharp)
public class UpdatePipelineActionProps : Object, IUpdatePipelineActionProps
Syntax (vb)
Public Class UpdatePipelineActionProps
    Inherits Object
    Implements IUpdatePipelineActionProps
Remarks

Stability: Deprecated

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodeBuild;
using Amazon.CDK.AWS.CodePipeline;
using Amazon.CDK.Pipelines;

Artifact artifact;
BuildSpec buildSpec;
DockerCredential dockerCredential;

var updatePipelineActionProps = new UpdatePipelineActionProps {
    CloudAssemblyInput = artifact,
    PipelineStackHierarchicalId = "pipelineStackHierarchicalId",

    // the properties below are optional
    BuildSpec = buildSpec,
    CdkCliVersion = "cdkCliVersion",
    DockerCredentials = new [] { dockerCredential },
    PipelineStackName = "pipelineStackName",
    Privileged = false,
    ProjectName = "projectName"
};

Synopsis

Constructors

UpdatePipelineActionProps()

Properties

BuildSpec

(deprecated) Custom BuildSpec that is merged with generated one.

CdkCliVersion

(deprecated) Version of CDK CLI to 'npm install'.

CloudAssemblyInput

(deprecated) The CodePipeline artifact that holds the Cloud Assembly.

DockerCredentials

(deprecated) Docker registries and associated credentials necessary during the pipeline self-update stage.

PipelineStackHierarchicalId

(deprecated) Hierarchical id of the pipeline stack.

PipelineStackName

(deprecated) Name of the pipeline stack.

Privileged

(deprecated) Whether the build step should run in privileged mode.

ProjectName

(deprecated) Name of the CodeBuild project.

Constructors

UpdatePipelineActionProps()

public UpdatePipelineActionProps()

Properties

BuildSpec

(deprecated) Custom BuildSpec that is merged with generated one.

public BuildSpec BuildSpec { get; set; }
Property Value

BuildSpec

Remarks

Default: - none

Stability: Deprecated

CdkCliVersion

(deprecated) Version of CDK CLI to 'npm install'.

public string CdkCliVersion { get; set; }
Property Value

System.String

Remarks

Default: - Latest version

Stability: Deprecated

CloudAssemblyInput

(deprecated) The CodePipeline artifact that holds the Cloud Assembly.

public Artifact_ CloudAssemblyInput { get; set; }
Property Value

Artifact_

Remarks

Stability: Deprecated

DockerCredentials

(deprecated) Docker registries and associated credentials necessary during the pipeline self-update stage.

public DockerCredential[] DockerCredentials { get; set; }
Property Value

DockerCredential[]

Remarks

Default: []

Stability: Deprecated

PipelineStackHierarchicalId

(deprecated) Hierarchical id of the pipeline stack.

public string PipelineStackHierarchicalId { get; set; }
Property Value

System.String

Remarks

Stability: Deprecated

PipelineStackName

(deprecated) Name of the pipeline stack.

public string PipelineStackName { get; set; }
Property Value

System.String

Remarks

Default: - none

Stability: Deprecated

Privileged

(deprecated) Whether the build step should run in privileged mode.

public Nullable<bool> Privileged { get; set; }
Property Value

System.Nullable<System.Boolean>

Remarks

Default: - false

Stability: Deprecated

ProjectName

(deprecated) Name of the CodeBuild project.

public string ProjectName { get; set; }
Property Value

System.String

Remarks

Default: - Automatically generated

Stability: Deprecated

Implements

IUpdatePipelineActionProps
Back to top Generated by DocFX