
com.pulumi.awsnative.greengrassv2.kotlin.inputs.ComponentVersionLambdaExecutionParametersArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.greengrassv2.kotlin.inputs
import com.pulumi.awsnative.greengrassv2.inputs.ComponentVersionLambdaExecutionParametersArgs.builder
import com.pulumi.awsnative.greengrassv2.kotlin.enums.ComponentVersionLambdaExecutionParametersInputPayloadEncodingType
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.Int
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
*
* @property environmentVariables The map of environment variables that are available to the Lambda function when it runs.
* @property eventSources The list of event sources to which to subscribe to receive work messages. The Lambda function runs when it receives a message from an event source. You can subscribe this function to local publish/subscribe messages and AWS IoT Core MQTT messages.
* @property execArgs The list of arguments to pass to the Lambda function when it runs.
* @property inputPayloadEncodingType The encoding type that the Lambda function supports.
* Default: `json`
* @property linuxProcessParams The parameters for the Linux process that contains the Lambda function.
* @property maxIdleTimeInSeconds The maximum amount of time in seconds that a non-pinned Lambda function can idle before the AWS IoT Greengrass Core software stops its process.
* @property maxInstancesCount The maximum number of instances that a non-pinned Lambda function can run at the same time.
* @property maxQueueSize The maximum size of the message queue for the Lambda function component. The AWS IoT Greengrass core device stores messages in a FIFO (first-in-first-out) queue until it can run the Lambda function to consume each message.
* @property pinned Whether or not the Lambda function is pinned, or long-lived.
* - A pinned Lambda function starts when the AWS IoT Greengrass Core starts and keeps running in its own container.
* - A non-pinned Lambda function starts only when it receives a work item and exists after it idles for `maxIdleTimeInSeconds` . If the function has multiple work items, the AWS IoT Greengrass Core software creates multiple instances of the function.
* Default: `true`
* @property statusTimeoutInSeconds The interval in seconds at which a pinned (also known as long-lived) Lambda function component sends status updates to the Lambda manager component.
* @property timeoutInSeconds The maximum amount of time in seconds that the Lambda function can process a work item.
*/
public data class ComponentVersionLambdaExecutionParametersArgs(
public val environmentVariables: Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy