commonMain.aws.sdk.kotlin.services.bedrockagent.model.S3Identifier.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bedrockagent-jvm Show documentation
Show all versions of bedrockagent-jvm Show documentation
The AWS SDK for Kotlin client for Bedrock Agent
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrockagent.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The identifier information for an Amazon S3 bucket.
*/
public class S3Identifier private constructor(builder: Builder) {
/**
* The name of the S3 bucket.
*/
public val s3BucketName: kotlin.String? = builder.s3BucketName
/**
* The S3 object key for the S3 resource.
*/
public val s3ObjectKey: kotlin.String? = builder.s3ObjectKey
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.bedrockagent.model.S3Identifier = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("S3Identifier(")
append("s3BucketName=$s3BucketName,")
append("s3ObjectKey=$s3ObjectKey")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = s3BucketName?.hashCode() ?: 0
result = 31 * result + (s3ObjectKey?.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 S3Identifier
if (s3BucketName != other.s3BucketName) return false
if (s3ObjectKey != other.s3ObjectKey) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.bedrockagent.model.S3Identifier = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the S3 bucket.
*/
public var s3BucketName: kotlin.String? = null
/**
* The S3 object key for the S3 resource.
*/
public var s3ObjectKey: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.S3Identifier) : this() {
this.s3BucketName = x.s3BucketName
this.s3ObjectKey = x.s3ObjectKey
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.bedrockagent.model.S3Identifier = S3Identifier(this)
internal fun correctErrors(): Builder {
return this
}
}
}