commonMain.aws.sdk.kotlin.services.vpclattice.model.GetAuthPolicyRequest.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 GetAuthPolicyRequest private constructor(builder: Builder) {
/**
* The ID or Amazon Resource Name (ARN) of the service network or service.
*/
public val resourceIdentifier: kotlin.String = requireNotNull(builder.resourceIdentifier) { "A non-null value must be provided for resourceIdentifier" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.GetAuthPolicyRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetAuthPolicyRequest(")
append("resourceIdentifier=$resourceIdentifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = resourceIdentifier.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 GetAuthPolicyRequest
if (resourceIdentifier != other.resourceIdentifier) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.GetAuthPolicyRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID or Amazon Resource Name (ARN) of the service network or service.
*/
public var resourceIdentifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.GetAuthPolicyRequest) : this() {
this.resourceIdentifier = x.resourceIdentifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.GetAuthPolicyRequest = GetAuthPolicyRequest(this)
internal fun correctErrors(): Builder {
if (resourceIdentifier == null) resourceIdentifier = ""
return this
}
}
}