Class GlobalVariables
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.codepipeline.GlobalVariables
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:36.925Z")
@Stability(Stable)
public class GlobalVariables
extends software.amazon.jsii.JsiiObject
The CodePipeline variables that are global, not bound to a specific action.
This class defines a bunch of static fields that represent the different variables. These can be used can be used in any action configuration.
Example:
// OtherAction is some action type that produces variables, like EcrSourceAction
// OtherAction is some action type that produces variables, like EcrSourceAction
new OtherAction(new OtherActionProps()
// ...
.config(GlobalVariables.executionId)
.actionName("otherAction")
);
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe identifier of the current pipeline execution. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedGlobalVariables(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedGlobalVariables(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
EXECUTION_ID
The identifier of the current pipeline execution.
-
-
Constructor Details
-
GlobalVariables
protected GlobalVariables(software.amazon.jsii.JsiiObjectRef objRef) -
GlobalVariables
protected GlobalVariables(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
GlobalVariables
@Stability(Stable) public GlobalVariables()
-