Class: Aws::GreengrassV2::Types::LambdaLinuxProcessParams

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb

Overview

Contains parameters for a Linux process that contains an Lambda function.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#container_paramsTypes::LambdaContainerParams

The parameters for the container in which the Lambda function runs.



2284
2285
2286
2287
2288
2289
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2284

class LambdaLinuxProcessParams < Struct.new(
  :isolation_mode,
  :container_params)
  SENSITIVE = []
  include Aws::Structure
end

#isolation_modeString

The isolation mode for the process that contains the Lambda function. The process can run in an isolated runtime environment inside the IoT Greengrass container, or as a regular process outside any container.

Default: GreengrassContainer

Returns:

  • (String)


2284
2285
2286
2287
2288
2289
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2284

class LambdaLinuxProcessParams < Struct.new(
  :isolation_mode,
  :container_params)
  SENSITIVE = []
  include Aws::Structure
end