Interface CfnProject.EnvironmentVariableProperty

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

@Stability(Stable) public static interface CfnProject.EnvironmentVariableProperty extends software.amazon.jsii.JsiiSerializable
EnvironmentVariable is a property of the AWS CodeBuild Project Environment property type that specifies the name and value of an environment variable for an AWS CodeBuild project environment. When you use the environment to run a build, these variables are available for your builds to use. EnvironmentVariable contains a list of EnvironmentVariable property types.

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.codebuild.*;
 EnvironmentVariableProperty environmentVariableProperty = EnvironmentVariableProperty.builder()
         .name("name")
         .value("value")
         // the properties below are optional
         .type("type")
         .build();
 

See Also: