commonMain.aws.sdk.kotlin.services.firehose.model.SplunkRetryOptions.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
/**
* Configures retry behavior in case Firehose is unable to deliver documents to Splunk, or if it doesn't receive an acknowledgment from Splunk.
*/
public class SplunkRetryOptions private constructor(builder: Builder) {
/**
* The total amount of time that Firehose spends on retries. This duration starts after the initial attempt to send data to Splunk fails. It doesn't include the periods during which Firehose waits for acknowledgment from Splunk after each attempt.
*/
public val durationInSeconds: kotlin.Int? = builder.durationInSeconds
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.firehose.model.SplunkRetryOptions = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SplunkRetryOptions(")
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 SplunkRetryOptions
if (durationInSeconds != other.durationInSeconds) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.firehose.model.SplunkRetryOptions = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The total amount of time that Firehose spends on retries. This duration starts after the initial attempt to send data to Splunk fails. It doesn't include the periods during which Firehose waits for acknowledgment from Splunk after each attempt.
*/
public var durationInSeconds: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.firehose.model.SplunkRetryOptions) : this() {
this.durationInSeconds = x.durationInSeconds
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.firehose.model.SplunkRetryOptions = SplunkRetryOptions(this)
internal fun correctErrors(): Builder {
return this
}
}
}