commonMain.aws.sdk.kotlin.services.appsync.model.CreateDomainNameRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appsync-jvm Show documentation
Show all versions of appsync-jvm Show documentation
The AWS SDK for Kotlin client for AppSync
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appsync.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateDomainNameRequest private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or an Identity and Access Management (IAM) server certificate.
*/
public val certificateArn: kotlin.String? = builder.certificateArn
/**
* A description of the `DomainName`.
*/
public val description: kotlin.String? = builder.description
/**
* The domain name.
*/
public val domainName: kotlin.String? = builder.domainName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appsync.model.CreateDomainNameRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateDomainNameRequest(")
append("certificateArn=$certificateArn,")
append("description=$description,")
append("domainName=$domainName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = certificateArn?.hashCode() ?: 0
result = 31 * result + (description?.hashCode() ?: 0)
result = 31 * result + (domainName?.hashCode() ?: 0)
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 CreateDomainNameRequest
if (certificateArn != other.certificateArn) return false
if (description != other.description) return false
if (domainName != other.domainName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appsync.model.CreateDomainNameRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or an Identity and Access Management (IAM) server certificate.
*/
public var certificateArn: kotlin.String? = null
/**
* A description of the `DomainName`.
*/
public var description: kotlin.String? = null
/**
* The domain name.
*/
public var domainName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appsync.model.CreateDomainNameRequest) : this() {
this.certificateArn = x.certificateArn
this.description = x.description
this.domainName = x.domainName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appsync.model.CreateDomainNameRequest = CreateDomainNameRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}