commonMain.aws.sdk.kotlin.services.proton.model.CreateEnvironmentAccountConnectionResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proton-jvm Show documentation
Show all versions of proton-jvm Show documentation
The AWS SDK for Kotlin client for Proton
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.proton.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateEnvironmentAccountConnectionResponse private constructor(builder: Builder) {
/**
* The environment account connection detail data that's returned by Proton.
*/
public val environmentAccountConnection: aws.sdk.kotlin.services.proton.model.EnvironmentAccountConnection? = builder.environmentAccountConnection
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.proton.model.CreateEnvironmentAccountConnectionResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateEnvironmentAccountConnectionResponse(")
append("environmentAccountConnection=$environmentAccountConnection")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = environmentAccountConnection?.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 CreateEnvironmentAccountConnectionResponse
if (environmentAccountConnection != other.environmentAccountConnection) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.proton.model.CreateEnvironmentAccountConnectionResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The environment account connection detail data that's returned by Proton.
*/
public var environmentAccountConnection: aws.sdk.kotlin.services.proton.model.EnvironmentAccountConnection? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.proton.model.CreateEnvironmentAccountConnectionResponse) : this() {
this.environmentAccountConnection = x.environmentAccountConnection
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.proton.model.CreateEnvironmentAccountConnectionResponse = CreateEnvironmentAccountConnectionResponse(this)
/**
* construct an [aws.sdk.kotlin.services.proton.model.EnvironmentAccountConnection] inside the given [block]
*/
public fun environmentAccountConnection(block: aws.sdk.kotlin.services.proton.model.EnvironmentAccountConnection.Builder.() -> kotlin.Unit) {
this.environmentAccountConnection = aws.sdk.kotlin.services.proton.model.EnvironmentAccountConnection.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy