commonMain.aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionRequest.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
public class UpdateConnectionRequest private constructor(builder: Builder) {
/**
* The authorization parameters to use for the connection.
*/
public val authParameters: aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionAuthRequestParameters? = builder.authParameters
/**
* The type of authorization to use for the connection.
*/
public val authorizationType: aws.sdk.kotlin.services.eventbridge.model.ConnectionAuthorizationType? = builder.authorizationType
/**
* A description for the connection.
*/
public val description: kotlin.String? = builder.description
/**
* The name of the connection to update.
*/
public val name: kotlin.String? = builder.name
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateConnectionRequest(")
append("authParameters=$authParameters,")
append("authorizationType=$authorizationType,")
append("description=$description,")
append("name=$name")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = authParameters?.hashCode() ?: 0
result = 31 * result + (authorizationType?.hashCode() ?: 0)
result = 31 * result + (description?.hashCode() ?: 0)
result = 31 * result + (name?.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 UpdateConnectionRequest
if (authParameters != other.authParameters) return false
if (authorizationType != other.authorizationType) return false
if (description != other.description) return false
if (name != other.name) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The authorization parameters to use for the connection.
*/
public var authParameters: aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionAuthRequestParameters? = null
/**
* The type of authorization to use for the connection.
*/
public var authorizationType: aws.sdk.kotlin.services.eventbridge.model.ConnectionAuthorizationType? = null
/**
* A description for the connection.
*/
public var description: kotlin.String? = null
/**
* The name of the connection to update.
*/
public var name: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionRequest) : this() {
this.authParameters = x.authParameters
this.authorizationType = x.authorizationType
this.description = x.description
this.name = x.name
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionRequest = UpdateConnectionRequest(this)
/**
* construct an [aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionAuthRequestParameters] inside the given [block]
*/
public fun authParameters(block: aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionAuthRequestParameters.Builder.() -> kotlin.Unit) {
this.authParameters = aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionAuthRequestParameters.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}