
commonMain.aws.sdk.kotlin.services.opensearch.model.PackageSource.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.opensearch.model
/**
* The Amazon S3 location to import the package from.
*/
public class PackageSource private constructor(builder: Builder) {
/**
* The name of the Amazon S3 bucket containing the package.
*/
public val s3BucketName: kotlin.String? = builder.s3BucketName
/**
* Key (file name) of the package.
*/
public val s3Key: kotlin.String? = builder.s3Key
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.opensearch.model.PackageSource = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PackageSource(")
append("s3BucketName=$s3BucketName,")
append("s3Key=$s3Key")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = s3BucketName?.hashCode() ?: 0
result = 31 * result + (s3Key?.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 PackageSource
if (s3BucketName != other.s3BucketName) return false
if (s3Key != other.s3Key) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.opensearch.model.PackageSource = Builder(this).apply(block).build()
public class Builder {
/**
* The name of the Amazon S3 bucket containing the package.
*/
public var s3BucketName: kotlin.String? = null
/**
* Key (file name) of the package.
*/
public var s3Key: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.opensearch.model.PackageSource) : this() {
this.s3BucketName = x.s3BucketName
this.s3Key = x.s3Key
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.opensearch.model.PackageSource = PackageSource(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy