Interface CfnFunctionDefinitionVersion.ExecutionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFunctionDefinitionVersion.ExecutionProperty.Jsii$Proxy
Enclosing class:
CfnFunctionDefinitionVersion

@Stability(Stable) public static interface CfnFunctionDefinitionVersion.ExecutionProperty extends software.amazon.jsii.JsiiSerializable
Configuration settings for the Lambda execution environment on the AWS IoT Greengrass core.

In an AWS CloudFormation template, Execution is a property of the DefaultConfig property type for a function definition version and the Environment property type for a function.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.greengrass.*;
 ExecutionProperty executionProperty = ExecutionProperty.builder()
         .isolationMode("isolationMode")
         .runAs(RunAsProperty.builder()
                 .gid(123)
                 .uid(123)
                 .build())
         .build();
 

See Also: