
com.pulumi.awsnative.kinesisfirehose.kotlin.outputs.DeliveryStreamRedshiftRetryOptions.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.kinesisfirehose.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property durationInSeconds The length of time during which Firehose retries delivery after a failure, starting from the initial request and including the first attempt. The default value is 3600 seconds (60 minutes). Firehose does not retry if the value of `DurationInSeconds` is 0 (zero) or if the first delivery attempt takes longer than the current value.
*/
public data class DeliveryStreamRedshiftRetryOptions(
public val durationInSeconds: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.kinesisfirehose.outputs.DeliveryStreamRedshiftRetryOptions): DeliveryStreamRedshiftRetryOptions = DeliveryStreamRedshiftRetryOptions(
durationInSeconds = javaType.durationInSeconds().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy