aws-cdk-lib.aws_lambda.CfnFunction.EnvironmentProperty

interface EnvironmentProperty

LanguageType name
.NETAmazon.CDK.AWS.Lambda.CfnFunction.EnvironmentProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslambda#CfnFunction_EnvironmentProperty
Javasoftware.amazon.awscdk.services.lambda.CfnFunction.EnvironmentProperty
Pythonaws_cdk.aws_lambda.CfnFunction.EnvironmentProperty
TypeScript aws-cdk-lib » 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 { aws_lambda as lambda } from 'aws-cdk-lib';
const environmentProperty: lambda.CfnFunction.EnvironmentProperty = {
  variables: {
    variablesKey: 'variables',
  },
};

Properties

NameTypeDescription
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 .