interface EnvironmentProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Lambda.CfnFunction.EnvironmentProperty |
Java | software.amazon.awscdk.services.lambda.CfnFunction.EnvironmentProperty |
Python | aws_cdk.aws_lambda.CfnFunction.EnvironmentProperty |
TypeScript | @aws-cdk/aws-lambda » CfnFunction » EnvironmentProperty |
A function's environment variable settings.
You can use environment variables to adjust your function's behavior without updating code. An environment variable is a pair of strings that are stored in a function's version-specific configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as lambda from '@aws-cdk/aws-lambda';
const environmentProperty: lambda.CfnFunction.EnvironmentProperty = {
variables: {
variablesKey: 'variables',
},
};
Properties
Name | Type | Description |
---|---|---|
variables? | IResolvable | { [string]: string } | Environment variable key-value pairs. |
variables?
Type:
IResolvable
| { [string]: string }
(optional)
Environment variable key-value pairs.
For more information, see Using Lambda environment variables .