Interface CfnBranchPropsMixin.EnvironmentVariableProperty

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

@Stability(Stable) public static interface CfnBranchPropsMixin.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.cfnpropertymixins.services.amplify.*;
 EnvironmentVariableProperty environmentVariableProperty = EnvironmentVariableProperty.builder()
         .name("name")
         .value("value")
         .build();
 

See Also: