Interface CfnBranch.EnvironmentVariableProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBranch.EnvironmentVariableProperty.Jsii$Proxy
Enclosing class:
CfnBranch

@Stability(Stable) public static interface CfnBranch.EnvironmentVariableProperty extends software.amazon.jsii.JsiiSerializable
The EnvironmentVariable property type sets environment variables for a specific branch.

Environment variables are key-value pairs that are available at build time.

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: