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