interface EnvironmentVariableProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Amplify.CfnApp.EnvironmentVariableProperty | 
|  Java | software.amazon.awscdk.services.amplify.CfnApp.EnvironmentVariableProperty | 
|  Python | aws_cdk.aws_amplify.CfnApp.EnvironmentVariableProperty | 
|  TypeScript | @aws-cdk/aws-amplify»CfnApp»EnvironmentVariableProperty | 
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 * as amplify from '@aws-cdk/aws-amplify';
const environmentVariableProperty: amplify.CfnApp.EnvironmentVariableProperty = {
  name: 'name',
  value: 'value',
};
Properties
| Name | Type | Description | 
|---|---|---|
| name | string | The environment variable name. | 
| value | string | The environment variable value. | 
name
Type:
string
The environment variable name.
Length Constraints: Maximum length of 255.
Pattern: (?s).*
value
Type:
string
The environment variable value.
Length Constraints: Maximum length of 5500.
Pattern: (?s).*
