
com.pulumi.awsnative.timestream.kotlin.outputs.ScheduledQueryNotificationConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.timestream.kotlin.outputs
import kotlin.Suppress
/**
* Notification configuration for the scheduled query. A notification is sent by Timestream when a query run finishes, when the state is updated or when you delete it.
* @property snsConfiguration Details on SNS configuration.
*/
public data class ScheduledQueryNotificationConfiguration(
public val snsConfiguration: ScheduledQuerySnsConfiguration,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.timestream.outputs.ScheduledQueryNotificationConfiguration): ScheduledQueryNotificationConfiguration = ScheduledQueryNotificationConfiguration(
snsConfiguration = javaType.snsConfiguration().let({ args0 ->
com.pulumi.awsnative.timestream.kotlin.outputs.ScheduledQuerySnsConfiguration.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy