interface EnvironmentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnFunctionPropsMixin.EnvironmentProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnFunctionPropsMixin_EnvironmentProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnFunctionPropsMixin.EnvironmentProperty |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnFunctionPropsMixin.EnvironmentProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » 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 { aws_lambda as lambda } from '@aws-cdk/cfn-property-mixins';
const environmentProperty: lambda.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