commonMain.aws.sdk.kotlin.services.vpclattice.model.UpdateAccessLogSubscriptionRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vpclattice-jvm Show documentation
Show all versions of vpclattice-jvm Show documentation
The AWS SDK for Kotlin client for VPC Lattice
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.vpclattice.model
import aws.smithy.kotlin.runtime.SdkDsl
public class UpdateAccessLogSubscriptionRequest private constructor(builder: Builder) {
/**
* The ID or Amazon Resource Name (ARN) of the access log subscription.
*/
public val accessLogSubscriptionIdentifier: kotlin.String = requireNotNull(builder.accessLogSubscriptionIdentifier) { "A non-null value must be provided for accessLogSubscriptionIdentifier" }
/**
* The Amazon Resource Name (ARN) of the access log destination.
*/
public val destinationArn: kotlin.String = requireNotNull(builder.destinationArn) { "A non-null value must be provided for destinationArn" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.UpdateAccessLogSubscriptionRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateAccessLogSubscriptionRequest(")
append("accessLogSubscriptionIdentifier=$accessLogSubscriptionIdentifier,")
append("destinationArn=$destinationArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = accessLogSubscriptionIdentifier.hashCode()
result = 31 * result + (destinationArn.hashCode())
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 UpdateAccessLogSubscriptionRequest
if (accessLogSubscriptionIdentifier != other.accessLogSubscriptionIdentifier) return false
if (destinationArn != other.destinationArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.UpdateAccessLogSubscriptionRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID or Amazon Resource Name (ARN) of the access log subscription.
*/
public var accessLogSubscriptionIdentifier: kotlin.String? = null
/**
* The Amazon Resource Name (ARN) of the access log destination.
*/
public var destinationArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.UpdateAccessLogSubscriptionRequest) : this() {
this.accessLogSubscriptionIdentifier = x.accessLogSubscriptionIdentifier
this.destinationArn = x.destinationArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.UpdateAccessLogSubscriptionRequest = UpdateAccessLogSubscriptionRequest(this)
internal fun correctErrors(): Builder {
if (accessLogSubscriptionIdentifier == null) accessLogSubscriptionIdentifier = ""
if (destinationArn == null) destinationArn = ""
return this
}
}
}