
commonMain.aws.sdk.kotlin.services.elasticloadbalancingv2.model.ModifyTrustStoreResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.elasticloadbalancingv2.model
import aws.smithy.kotlin.runtime.SdkDsl
public class ModifyTrustStoreResponse private constructor(builder: Builder) {
/**
* Information about the modified trust store.
*/
public val trustStores: List? = builder.trustStores
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.elasticloadbalancingv2.model.ModifyTrustStoreResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ModifyTrustStoreResponse(")
append("trustStores=$trustStores")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = trustStores?.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 ModifyTrustStoreResponse
if (trustStores != other.trustStores) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.elasticloadbalancingv2.model.ModifyTrustStoreResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Information about the modified trust store.
*/
public var trustStores: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.elasticloadbalancingv2.model.ModifyTrustStoreResponse) : this() {
this.trustStores = x.trustStores
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.elasticloadbalancingv2.model.ModifyTrustStoreResponse = ModifyTrustStoreResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy