Interface CfnPipeline.EnvironmentVariableProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipeline.EnvironmentVariableProperty.Jsii$Proxy
- Enclosing class:
CfnPipeline
@Stability(Stable)
public static interface CfnPipeline.EnvironmentVariableProperty
extends software.amazon.jsii.JsiiSerializable
The environment variables for the action.
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.*; EnvironmentVariableProperty environmentVariableProperty = EnvironmentVariableProperty.builder() .name("name") .value("value") // the properties below are optional .type("type") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipeline.EnvironmentVariableProperty
static final class
An implementation forCfnPipeline.EnvironmentVariableProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The environment variable name in the key-value pair.- See Also:
-
getValue
The environment variable value in the key-value pair.- See Also:
-
getType
Specifies the type of use for the environment variable value.The value can be either
PLAINTEXT
orSECRETS_MANAGER
. If the value isSECRETS_MANAGER
, provide the Secrets reference in the EnvironmentVariable value.- See Also:
-
builder
-