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();
 

See Also: