Class: Aws::Greengrass::Types::FunctionExecutionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::FunctionExecutionConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrass/types.rb
Overview
Configuration information that specifies how a Lambda function runs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#isolation_mode ⇒ String
Specifies whether the Lambda function runs in a Greengrass container (default) or without containerization.
-
#run_as ⇒ Types::FunctionRunAsConfig
Specifies the user and group whose permissions are used when running the Lambda function.
Instance Attribute Details
#isolation_mode ⇒ String
Specifies whether the Lambda function runs in a Greengrass container (default) or without containerization. Unless your scenario requires that you run without containerization, we recommend that you run in a Greengrass container. Omit this value to run the Lambda function with the default containerization for the group.
1833 1834 1835 1836 1837 1838 |
# File 'lib/aws-sdk-greengrass/types.rb', line 1833 class FunctionExecutionConfig < Struct.new( :isolation_mode, :run_as) SENSITIVE = [] include Aws::Structure end |
#run_as ⇒ Types::FunctionRunAsConfig
Specifies the user and group whose permissions are used when running the Lambda function. You can specify one or both values to override the default values. We recommend that you avoid running as root unless absolutely necessary to minimize the risk of unintended changes or malicious attacks. To run as root, you must set ”IsolationMode” to ”NoContainer” and update config.json in ”greengrass-root/config” to set ”allowFunctionsToRunAsRoot” to ”yes”.
1833 1834 1835 1836 1837 1838 |
# File 'lib/aws-sdk-greengrass/types.rb', line 1833 class FunctionExecutionConfig < Struct.new( :isolation_mode, :run_as) SENSITIVE = [] include Aws::Structure end |