com.pulumi.awsnative.scheduler.kotlin.outputs.ScheduleSqsParameters.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.scheduler.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Contains the message group ID to use when the target is a FIFO queue. If you specify an SQS FIFO queue as a target, the queue must have content-based deduplication enabled.
* @property messageGroupId The FIFO message group ID to use as the target.
*/
public data class ScheduleSqsParameters(
public val messageGroupId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.scheduler.outputs.ScheduleSqsParameters): ScheduleSqsParameters = ScheduleSqsParameters(
messageGroupId = javaType.messageGroupId().map({ args0 -> args0 }).orElse(null),
)
}
}