commonMain.aws.sdk.kotlin.services.eventbridge.model.CreateArchiveResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eventbridge-jvm Show documentation
Show all versions of eventbridge-jvm Show documentation
The AWS SDK for Kotlin client for EventBridge
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.eventbridge.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
public class CreateArchiveResponse private constructor(builder: Builder) {
/**
* The ARN of the archive that was created.
*/
public val archiveArn: kotlin.String? = builder.archiveArn
/**
* The time at which the archive was created.
*/
public val creationTime: aws.smithy.kotlin.runtime.time.Instant? = builder.creationTime
/**
* The state of the archive that was created.
*/
public val state: aws.sdk.kotlin.services.eventbridge.model.ArchiveState? = builder.state
/**
* The reason that the archive is in the state.
*/
public val stateReason: kotlin.String? = builder.stateReason
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.eventbridge.model.CreateArchiveResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateArchiveResponse(")
append("archiveArn=$archiveArn,")
append("creationTime=$creationTime,")
append("state=$state,")
append("stateReason=$stateReason")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = archiveArn?.hashCode() ?: 0
result = 31 * result + (creationTime?.hashCode() ?: 0)
result = 31 * result + (state?.hashCode() ?: 0)
result = 31 * result + (stateReason?.hashCode() ?: 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 CreateArchiveResponse
if (archiveArn != other.archiveArn) return false
if (creationTime != other.creationTime) return false
if (state != other.state) return false
if (stateReason != other.stateReason) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.eventbridge.model.CreateArchiveResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ARN of the archive that was created.
*/
public var archiveArn: kotlin.String? = null
/**
* The time at which the archive was created.
*/
public var creationTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The state of the archive that was created.
*/
public var state: aws.sdk.kotlin.services.eventbridge.model.ArchiveState? = null
/**
* The reason that the archive is in the state.
*/
public var stateReason: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.eventbridge.model.CreateArchiveResponse) : this() {
this.archiveArn = x.archiveArn
this.creationTime = x.creationTime
this.state = x.state
this.stateReason = x.stateReason
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.eventbridge.model.CreateArchiveResponse = CreateArchiveResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}