interface EnvironmentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lambda.Mixins.CfnFunctionPropsMixin.EnvironmentProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslambda/mixins#CfnFunctionPropsMixin_EnvironmentProperty |
Java | software.amazon.awscdk.mixins.preview.services.lambda.mixins.CfnFunctionPropsMixin.EnvironmentProperty |
Python | aws_cdk.mixins_preview.aws_lambda.mixins.CfnFunctionPropsMixin.EnvironmentProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lambda » mixins » CfnFunctionPropsMixin » 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 { mixins as lambda_mixins } from '@aws-cdk/mixins-preview/aws-lambda';
const environmentProperty: lambda_mixins.CfnFunctionPropsMixin.EnvironmentProperty = {
variables: {
variablesKey: 'variables',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| variables? | { [string]: string } | IResolvable | Environment variable key-value pairs. For more information, see Using Lambda environment variables . |
variables?
Type:
{ [string]: string } | IResolvable
(optional)
Environment variable key-value pairs. For more information, see Using Lambda environment variables .
If the value of the environment variable is a time or a duration, enclose the value in quotes.

.NET
Go
Java
Python
TypeScript