@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:41.882Z")
public interface CommonActionProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.codepipeline.*; CommonActionProps commonActionProps = CommonActionProps.builder() .actionName("actionName") // the properties below are optional .runOrder(123) .variablesNamespace("variablesNamespace") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CommonActionProps.Builder
A builder for
CommonActionProps |
static class |
CommonActionProps.Jsii$Proxy
An implementation for
CommonActionProps |
Modifier and Type | Method and Description |
---|---|
static CommonActionProps.Builder |
builder() |
java.lang.String |
getActionName()
The physical, human-readable name of the Action.
|
default java.lang.Number |
getRunOrder()
The runOrder property for this Action.
|
default java.lang.String |
getVariablesNamespace()
The name of the namespace to use for variables emitted by this action.
|
java.lang.String getActionName()
Note that Action names must be unique within a single Stage.
default java.lang.Number getRunOrder()
RunOrder determines the relative order in which multiple Actions in the same Stage execute.
Default: 1
default java.lang.String getVariablesNamespace()
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
static CommonActionProps.Builder builder()
CommonActionProps.Builder
of CommonActionProps