All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.lambda.kotlin.outputs.EventSourceMappingScalingConfig.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.lambda.kotlin.outputs

import kotlin.Int
import kotlin.Suppress

/**
 * (Amazon SQS only) The scaling configuration for the event source. To remove the configuration, pass an empty value.
 * @property maximumConcurrency Limits the number of concurrent instances that the SQS event source can invoke.
 */
public data class EventSourceMappingScalingConfig(
    public val maximumConcurrency: Int? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.lambda.outputs.EventSourceMappingScalingConfig): EventSourceMappingScalingConfig = EventSourceMappingScalingConfig(
            maximumConcurrency = javaType.maximumConcurrency().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy