commonMain.aws.sdk.kotlin.services.firehose.model.RetryOptions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firehose-jvm Show documentation
Show all versions of firehose-jvm Show documentation
The AWS SDK for Kotlin client for Firehose
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.firehose.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The retry behavior in case Firehose is unable to deliver data to an Amazon S3 prefix.
*/
public class RetryOptions private constructor(builder: Builder) {
/**
* The period of time during which Firehose retries to deliver data to the specified Amazon S3 prefix.
*/
public val durationInSeconds: kotlin.Int? = builder.durationInSeconds
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.firehose.model.RetryOptions = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RetryOptions(")
append("durationInSeconds=$durationInSeconds")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = durationInSeconds ?: 0
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as RetryOptions
if (durationInSeconds != other.durationInSeconds) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.firehose.model.RetryOptions = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The period of time during which Firehose retries to deliver data to the specified Amazon S3 prefix.
*/
public var durationInSeconds: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.firehose.model.RetryOptions) : this() {
this.durationInSeconds = x.durationInSeconds
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.firehose.model.RetryOptions = RetryOptions(this)
internal fun correctErrors(): Builder {
return this
}
}
}