interface DefaultConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Greengrass.CfnFunctionDefinitionPropsMixin.DefaultConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgreengrass#CfnFunctionDefinitionPropsMixin_DefaultConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.greengrass.CfnFunctionDefinitionPropsMixin.DefaultConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_greengrass.CfnFunctionDefinitionPropsMixin.DefaultConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_greengrass » CfnFunctionDefinitionPropsMixin » DefaultConfigProperty |
The default configuration that applies to all Lambda functions in the function definition version.
Individual Lambda functions can override these settings.
In an CloudFormation template, DefaultConfig is a property of the FunctionDefinitionVersion property type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_greengrass as greengrass } from '@aws-cdk/cfn-property-mixins';
const defaultConfigProperty: greengrass.CfnFunctionDefinitionPropsMixin.DefaultConfigProperty = {
execution: {
isolationMode: 'isolationMode',
runAs: {
gid: 123,
uid: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| execution? | IResolvable | Execution | Configuration settings for the Lambda execution environment on the AWS IoT Greengrass core. |
execution?
Type:
IResolvable | Execution
(optional)
Configuration settings for the Lambda execution environment on the AWS IoT Greengrass core.

.NET
Go
Java
Python
TypeScript