Show / Hide Table of Contents

Class CommonActionProps

Common properties shared by all Actions.

Inheritance
System.Object
CommonActionProps
Implements
ICommonActionProps
Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.AWS.CodePipeline.dll
Syntax (csharp)
public class CommonActionProps : Object, ICommonActionProps
Syntax (vb)
Public Class CommonActionProps
    Inherits Object
    Implements ICommonActionProps
Remarks

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;

CommonActionProps commonActionProps = new CommonActionProps {
    ActionName = "actionName",

    // the properties below are optional
    RunOrder = 123,
    VariablesNamespace = "variablesNamespace"
};

Synopsis

Constructors

CommonActionProps()

Properties

ActionName

The physical, human-readable name of the Action.

RunOrder

The runOrder property for this Action.

VariablesNamespace

The name of the namespace to use for variables emitted by this action.

Constructors

CommonActionProps()

public CommonActionProps()

Properties

ActionName

The physical, human-readable name of the Action.

public string ActionName { get; set; }
Property Value

System.String

Remarks

Note that Action names must be unique within a single Stage.

RunOrder

The runOrder property for this Action.

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

System.Nullable<System.Double>

Remarks

RunOrder determines the relative order in which multiple Actions in the same Stage execute.

Default: 1

See: https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html

VariablesNamespace

The name of the namespace to use for variables emitted by this action.

public string VariablesNamespace { get; set; }
Property Value

System.String

Remarks

Default: - a name will be generated, based on the stage and action names, if any of the action's variables were referenced - otherwise, no namespace will be set

Implements

ICommonActionProps
Back to top Generated by DocFX