Class: Aws::Greengrass::Types::FunctionDefaultConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::FunctionDefaultConfig
- Defined in:
- gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb
Overview
Note:
When making an API call, you may pass FunctionDefaultConfig data as a hash:
{
execution: {
isolation_mode: "GreengrassContainer", # accepts GreengrassContainer, NoContainer
run_as: {
gid: 1,
uid: 1,
},
},
}
The default configuration that applies to all Lambda functions in the group. Individual Lambda functions can override these settings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#execution ⇒ Types::FunctionDefaultExecutionConfig
Configuration information that specifies how a Lambda function runs.
Instance Attribute Details
#execution ⇒ Types::FunctionDefaultExecutionConfig
Configuration information that specifies how a Lambda function runs.
2479 2480 2481 2482 2483 |
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 2479 class FunctionDefaultConfig < Struct.new( :execution) SENSITIVE = [] include Aws::Structure end |