commonMain.aws.sdk.kotlin.services.cloudsearch.model.UpdateDomainEndpointOptionsRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudsearch-jvm Show documentation
Show all versions of cloudsearch-jvm Show documentation
The AWS SDK for Kotlin client for CloudSearch
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudsearch.model
/**
* Container for the parameters to the `UpdateDomainEndpointOptions` operation. Specifies the name of the domain you want to update and the domain endpoint options.
*/
public class UpdateDomainEndpointOptionsRequest private constructor(builder: Builder) {
/**
* Whether to require that all requests to the domain arrive over HTTPS. We recommend Policy-Min-TLS-1-2-2019-07 for TLSSecurityPolicy. For compatibility with older clients, the default is Policy-Min-TLS-1-0-2019-07.
*/
public val domainEndpointOptions: aws.sdk.kotlin.services.cloudsearch.model.DomainEndpointOptions? = builder.domainEndpointOptions
/**
* A string that represents the name of a domain.
*/
public val domainName: kotlin.String? = builder.domainName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cloudsearch.model.UpdateDomainEndpointOptionsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateDomainEndpointOptionsRequest(")
append("domainEndpointOptions=$domainEndpointOptions,")
append("domainName=$domainName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = domainEndpointOptions?.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 UpdateDomainEndpointOptionsRequest
if (domainEndpointOptions != other.domainEndpointOptions) return false
if (domainName != other.domainName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cloudsearch.model.UpdateDomainEndpointOptionsRequest = Builder(this).apply(block).build()
public class Builder {
/**
* Whether to require that all requests to the domain arrive over HTTPS. We recommend Policy-Min-TLS-1-2-2019-07 for TLSSecurityPolicy. For compatibility with older clients, the default is Policy-Min-TLS-1-0-2019-07.
*/
public var domainEndpointOptions: aws.sdk.kotlin.services.cloudsearch.model.DomainEndpointOptions? = null
/**
* A string that represents the name of a domain.
*/
public var domainName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cloudsearch.model.UpdateDomainEndpointOptionsRequest) : this() {
this.domainEndpointOptions = x.domainEndpointOptions
this.domainName = x.domainName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cloudsearch.model.UpdateDomainEndpointOptionsRequest = UpdateDomainEndpointOptionsRequest(this)
/**
* construct an [aws.sdk.kotlin.services.cloudsearch.model.DomainEndpointOptions] inside the given [block]
*/
public fun domainEndpointOptions(block: aws.sdk.kotlin.services.cloudsearch.model.DomainEndpointOptions.Builder.() -> kotlin.Unit) {
this.domainEndpointOptions = aws.sdk.kotlin.services.cloudsearch.model.DomainEndpointOptions.invoke(block)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy