Interface CfnApp.EnvironmentVariableProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApp.EnvironmentVariableProperty.Jsii$Proxy
- Enclosing class:
CfnApp
@Stability(Stable)
public static interface CfnApp.EnvironmentVariableProperty
extends software.amazon.jsii.JsiiSerializable
Environment variables are key-value pairs that are available at build time.
Set environment variables for all branches in your app.
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.amplify.*; EnvironmentVariableProperty environmentVariableProperty = EnvironmentVariableProperty.builder() .name("name") .value("value") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApp.EnvironmentVariableProperty
static final class
An implementation forCfnApp.EnvironmentVariableProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The environment variable name.Length Constraints: Maximum length of 255.
Pattern: (?s).*
-
getValue
The environment variable value.Length Constraints: Maximum length of 5500.
Pattern: (?s).*
-
builder
-