interface FunctionEnvironmentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SAM.CfnFunction.FunctionEnvironmentProperty |
Java | software.amazon.awscdk.services.sam.CfnFunction.FunctionEnvironmentProperty |
Python | aws_cdk.aws_sam.CfnFunction.FunctionEnvironmentProperty |
TypeScript | @aws-cdk/aws-sam » CfnFunction » FunctionEnvironmentProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sam from '@aws-cdk/aws-sam';
const functionEnvironmentProperty: sam.CfnFunction.FunctionEnvironmentProperty = {
variables: {
variablesKey: 'variables',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| variables | IResolvable | { [string]: string } | CfnFunction.FunctionEnvironmentProperty.Variables. |
variables
Type:
IResolvable | { [string]: string }
CfnFunction.FunctionEnvironmentProperty.Variables.

.NET
Java
Python
TypeScript