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