commonMain.aws.sdk.kotlin.services.appsync.model.OpenSearchServiceDataSourceConfig.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
/**
* Describes an OpenSearch data source configuration.
*/
public class OpenSearchServiceDataSourceConfig private constructor(builder: Builder) {
/**
* The Amazon Web Services Region.
*/
public val awsRegion: kotlin.String = requireNotNull(builder.awsRegion) { "A non-null value must be provided for awsRegion" }
/**
* The endpoint.
*/
public val endpoint: kotlin.String = requireNotNull(builder.endpoint) { "A non-null value must be provided for endpoint" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appsync.model.OpenSearchServiceDataSourceConfig = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("OpenSearchServiceDataSourceConfig(")
append("awsRegion=$awsRegion,")
append("endpoint=$endpoint")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = awsRegion.hashCode()
result = 31 * result + (endpoint.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 OpenSearchServiceDataSourceConfig
if (awsRegion != other.awsRegion) return false
if (endpoint != other.endpoint) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appsync.model.OpenSearchServiceDataSourceConfig = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Web Services Region.
*/
public var awsRegion: kotlin.String? = null
/**
* The endpoint.
*/
public var endpoint: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appsync.model.OpenSearchServiceDataSourceConfig) : this() {
this.awsRegion = x.awsRegion
this.endpoint = x.endpoint
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appsync.model.OpenSearchServiceDataSourceConfig = OpenSearchServiceDataSourceConfig(this)
internal fun correctErrors(): Builder {
if (awsRegion == null) awsRegion = ""
if (endpoint == null) endpoint = ""
return this
}
}
}