commonMain.aws.sdk.kotlin.services.vpclattice.model.GetAccessLogSubscriptionRequest.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 GetAccessLogSubscriptionRequest 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" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.GetAccessLogSubscriptionRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetAccessLogSubscriptionRequest(")
append("accessLogSubscriptionIdentifier=$accessLogSubscriptionIdentifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = accessLogSubscriptionIdentifier.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 GetAccessLogSubscriptionRequest
if (accessLogSubscriptionIdentifier != other.accessLogSubscriptionIdentifier) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.GetAccessLogSubscriptionRequest = 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
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.GetAccessLogSubscriptionRequest) : this() {
this.accessLogSubscriptionIdentifier = x.accessLogSubscriptionIdentifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.GetAccessLogSubscriptionRequest = GetAccessLogSubscriptionRequest(this)
internal fun correctErrors(): Builder {
if (accessLogSubscriptionIdentifier == null) accessLogSubscriptionIdentifier = ""
return this
}
}
}