Show / Hide Table of Contents

Class DeployCdkStackActionOptions

(deprecated) Customization options for a DeployCdkStackAction.

Inheritance
System.Object
DeployCdkStackActionOptions
Implements
IDeployCdkStackActionOptions
Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Pipelines.dll
Syntax (csharp)
public class DeployCdkStackActionOptions : Object, IDeployCdkStackActionOptions
Syntax (vb)
Public Class DeployCdkStackActionOptions
    Inherits Object
    Implements IDeployCdkStackActionOptions
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.CodePipeline;
using Amazon.CDK.Pipelines;

Artifact artifact;

var deployCdkStackActionOptions = new DeployCdkStackActionOptions {
    CloudAssemblyInput = artifact,

    // the properties below are optional
    BaseActionName = "baseActionName",
    ChangeSetName = "changeSetName",
    ExecuteRunOrder = 123,
    Output = artifact,
    OutputFileName = "outputFileName",
    PrepareRunOrder = 123
};

Synopsis

Constructors

DeployCdkStackActionOptions()

Properties

BaseActionName

(deprecated) Base name of the action.

ChangeSetName

(deprecated) Name of the change set to create and deploy.

CloudAssemblyInput

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

ExecuteRunOrder

(deprecated) Run order for the Execute action.

Output

(deprecated) Artifact to write Stack Outputs to.

OutputFileName

(deprecated) Filename in output to write Stack outputs to.

PrepareRunOrder

(deprecated) Run order for the Prepare action.

Constructors

DeployCdkStackActionOptions()

public DeployCdkStackActionOptions()

Properties

BaseActionName

(deprecated) Base name of the action.

public string BaseActionName { get; set; }
Property Value

System.String

Remarks

Default: stackName

Stability: Deprecated

ChangeSetName

(deprecated) Name of the change set to create and deploy.

public string ChangeSetName { get; set; }
Property Value

System.String

Remarks

Default: 'PipelineChange'

Stability: Deprecated

CloudAssemblyInput

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

public Artifact_ CloudAssemblyInput { get; set; }
Property Value

Artifact_

Remarks

Stability: Deprecated

ExecuteRunOrder

(deprecated) Run order for the Execute action.

public Nullable<double> ExecuteRunOrder { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Default: - prepareRunOrder + 1

Stability: Deprecated

Output

(deprecated) Artifact to write Stack Outputs to.

public Artifact_ Output { get; set; }
Property Value

Artifact_

Remarks

Default: - No outputs

Stability: Deprecated

OutputFileName

(deprecated) Filename in output to write Stack outputs to.

public string OutputFileName { get; set; }
Property Value

System.String

Remarks

Default: - Required when 'output' is set

Stability: Deprecated

PrepareRunOrder

(deprecated) Run order for the Prepare action.

public Nullable<double> PrepareRunOrder { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Default: 1

Stability: Deprecated

Implements

IDeployCdkStackActionOptions
Back to top Generated by DocFX