commonMain.aws.sdk.kotlin.services.vpclattice.model.UpdateServiceRequest.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 UpdateServiceRequest private constructor(builder: Builder) {
/**
* The type of IAM policy.
* + `NONE`: The resource does not use an IAM policy. This is the default.
* + `AWS_IAM`: The resource uses an IAM policy. When this type is used, auth is enabled and an auth policy is required.
*/
public val authType: aws.sdk.kotlin.services.vpclattice.model.AuthType? = builder.authType
/**
* The Amazon Resource Name (ARN) of the certificate.
*/
public val certificateArn: kotlin.String? = builder.certificateArn
/**
* The ID or Amazon Resource Name (ARN) of the service.
*/
public val serviceIdentifier: kotlin.String = requireNotNull(builder.serviceIdentifier) { "A non-null value must be provided for serviceIdentifier" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.UpdateServiceRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateServiceRequest(")
append("authType=$authType,")
append("certificateArn=$certificateArn,")
append("serviceIdentifier=$serviceIdentifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = authType?.hashCode() ?: 0
result = 31 * result + (certificateArn?.hashCode() ?: 0)
result = 31 * result + (serviceIdentifier.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 UpdateServiceRequest
if (authType != other.authType) return false
if (certificateArn != other.certificateArn) return false
if (serviceIdentifier != other.serviceIdentifier) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.UpdateServiceRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The type of IAM policy.
* + `NONE`: The resource does not use an IAM policy. This is the default.
* + `AWS_IAM`: The resource uses an IAM policy. When this type is used, auth is enabled and an auth policy is required.
*/
public var authType: aws.sdk.kotlin.services.vpclattice.model.AuthType? = null
/**
* The Amazon Resource Name (ARN) of the certificate.
*/
public var certificateArn: kotlin.String? = null
/**
* The ID or Amazon Resource Name (ARN) of the service.
*/
public var serviceIdentifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.UpdateServiceRequest) : this() {
this.authType = x.authType
this.certificateArn = x.certificateArn
this.serviceIdentifier = x.serviceIdentifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.UpdateServiceRequest = UpdateServiceRequest(this)
internal fun correctErrors(): Builder {
if (serviceIdentifier == null) serviceIdentifier = ""
return this
}
}
}