commonMain.aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionResponse.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 UpdateConnectionResponse private constructor(builder: Builder) {
/**
* The ARN of the connection that was updated.
*/
public val connectionArn: kotlin.String? = builder.connectionArn
/**
* The state of the connection that was updated.
*/
public val connectionState: aws.sdk.kotlin.services.eventbridge.model.ConnectionState? = builder.connectionState
/**
* A time stamp for the time that the connection was created.
*/
public val creationTime: aws.smithy.kotlin.runtime.time.Instant? = builder.creationTime
/**
* A time stamp for the time that the connection was last authorized.
*/
public val lastAuthorizedTime: aws.smithy.kotlin.runtime.time.Instant? = builder.lastAuthorizedTime
/**
* A time stamp for the time that the connection was last modified.
*/
public val lastModifiedTime: aws.smithy.kotlin.runtime.time.Instant? = builder.lastModifiedTime
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateConnectionResponse(")
append("connectionArn=$connectionArn,")
append("connectionState=$connectionState,")
append("creationTime=$creationTime,")
append("lastAuthorizedTime=$lastAuthorizedTime,")
append("lastModifiedTime=$lastModifiedTime")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = connectionArn?.hashCode() ?: 0
result = 31 * result + (connectionState?.hashCode() ?: 0)
result = 31 * result + (creationTime?.hashCode() ?: 0)
result = 31 * result + (lastAuthorizedTime?.hashCode() ?: 0)
result = 31 * result + (lastModifiedTime?.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 UpdateConnectionResponse
if (connectionArn != other.connectionArn) return false
if (connectionState != other.connectionState) return false
if (creationTime != other.creationTime) return false
if (lastAuthorizedTime != other.lastAuthorizedTime) return false
if (lastModifiedTime != other.lastModifiedTime) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ARN of the connection that was updated.
*/
public var connectionArn: kotlin.String? = null
/**
* The state of the connection that was updated.
*/
public var connectionState: aws.sdk.kotlin.services.eventbridge.model.ConnectionState? = null
/**
* A time stamp for the time that the connection was created.
*/
public var creationTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* A time stamp for the time that the connection was last authorized.
*/
public var lastAuthorizedTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* A time stamp for the time that the connection was last modified.
*/
public var lastModifiedTime: aws.smithy.kotlin.runtime.time.Instant? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionResponse) : this() {
this.connectionArn = x.connectionArn
this.connectionState = x.connectionState
this.creationTime = x.creationTime
this.lastAuthorizedTime = x.lastAuthorizedTime
this.lastModifiedTime = x.lastModifiedTime
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionResponse = UpdateConnectionResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}