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

com.pulumi.awsnative.scheduler.kotlin.outputs.ScheduleSqsParameters.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.11.0.0
Show newest version
@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),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy