commonMain.aws.sdk.kotlin.services.eventbridge.model.Connection.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
/**
* Contains information about a connection.
*/
public class Connection private constructor(builder: Builder) {
/**
* The authorization type specified for the connection.
*
* OAUTH tokens are refreshed when a 401 or 407 response is returned.
*/
public val authorizationType: aws.sdk.kotlin.services.eventbridge.model.ConnectionAuthorizationType? = builder.authorizationType
/**
* The ARN of the connection.
*/
public val connectionArn: kotlin.String? = builder.connectionArn
/**
* The state of the connection.
*/
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
/**
* The name of the connection.
*/
public val name: kotlin.String? = builder.name
/**
* The reason that the connection is in the connection 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.Connection = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("Connection(")
append("authorizationType=$authorizationType,")
append("connectionArn=$connectionArn,")
append("connectionState=$connectionState,")
append("creationTime=$creationTime,")
append("lastAuthorizedTime=$lastAuthorizedTime,")
append("lastModifiedTime=$lastModifiedTime,")
append("name=$name,")
append("stateReason=$stateReason")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = authorizationType?.hashCode() ?: 0
result = 31 * 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)
result = 31 * result + (name?.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 Connection
if (authorizationType != other.authorizationType) return false
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
if (name != other.name) return false
if (stateReason != other.stateReason) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.eventbridge.model.Connection = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The authorization type specified for the connection.
*
* OAUTH tokens are refreshed when a 401 or 407 response is returned.
*/
public var authorizationType: aws.sdk.kotlin.services.eventbridge.model.ConnectionAuthorizationType? = null
/**
* The ARN of the connection.
*/
public var connectionArn: kotlin.String? = null
/**
* The state of the connection.
*/
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
/**
* The name of the connection.
*/
public var name: kotlin.String? = null
/**
* The reason that the connection is in the connection state.
*/
public var stateReason: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.eventbridge.model.Connection) : this() {
this.authorizationType = x.authorizationType
this.connectionArn = x.connectionArn
this.connectionState = x.connectionState
this.creationTime = x.creationTime
this.lastAuthorizedTime = x.lastAuthorizedTime
this.lastModifiedTime = x.lastModifiedTime
this.name = x.name
this.stateReason = x.stateReason
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.eventbridge.model.Connection = Connection(this)
internal fun correctErrors(): Builder {
return this
}
}
}