
com.pulumi.awsnative.customerprofiles.kotlin.outputs.IntegrationTriggerConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.customerprofiles.kotlin.outputs
import com.pulumi.awsnative.customerprofiles.kotlin.enums.IntegrationTriggerType
import kotlin.Suppress
/**
*
* @property triggerProperties Specifies the configuration details of a schedule-triggered flow that you define. Currently, these settings only apply to the Scheduled trigger type.
* @property triggerType Specifies the type of flow trigger. It can be OnDemand, Scheduled, or Event.
*/
public data class IntegrationTriggerConfig(
public val triggerProperties: IntegrationTriggerProperties? = null,
public val triggerType: IntegrationTriggerType,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.customerprofiles.outputs.IntegrationTriggerConfig): IntegrationTriggerConfig = IntegrationTriggerConfig(
triggerProperties = javaType.triggerProperties().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.customerprofiles.kotlin.outputs.IntegrationTriggerProperties.Companion.toKotlin(args0)
})
}).orElse(null),
triggerType = javaType.triggerType().let({ args0 ->
com.pulumi.awsnative.customerprofiles.kotlin.enums.IntegrationTriggerType.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy