commonMain.aws.sdk.kotlin.services.bedrockagent.model.CreatePromptResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrockagent.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
public class CreatePromptResponse private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the prompt.
*/
public val arn: kotlin.String = requireNotNull(builder.arn) { "A non-null value must be provided for arn" }
/**
* The time at which the prompt was created.
*/
public val createdAt: aws.smithy.kotlin.runtime.time.Instant = requireNotNull(builder.createdAt) { "A non-null value must be provided for createdAt" }
/**
* The Amazon Resource Name (ARN) of the KMS key that you encrypted the prompt with.
*/
public val customerEncryptionKeyArn: kotlin.String? = builder.customerEncryptionKeyArn
/**
* The name of the default variant for your prompt.
*/
public val defaultVariant: kotlin.String? = builder.defaultVariant
/**
* The description of the prompt.
*/
public val description: kotlin.String? = builder.description
/**
* The unique identifier of the prompt.
*/
public val id: kotlin.String = requireNotNull(builder.id) { "A non-null value must be provided for id" }
/**
* The name of the prompt.
*/
public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }
/**
* The time at which the prompt was last updated.
*/
public val updatedAt: aws.smithy.kotlin.runtime.time.Instant = requireNotNull(builder.updatedAt) { "A non-null value must be provided for updatedAt" }
/**
* A list of objects, each containing details about a variant of the prompt.
*/
public val variants: List? = builder.variants
/**
* The version of the prompt. When you create a prompt, the version created is the `DRAFT` version.
*/
public val version: kotlin.String = requireNotNull(builder.version) { "A non-null value must be provided for version" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.bedrockagent.model.CreatePromptResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreatePromptResponse(")
append("arn=$arn,")
append("createdAt=$createdAt,")
append("customerEncryptionKeyArn=$customerEncryptionKeyArn,")
append("defaultVariant=$defaultVariant,")
append("description=$description,")
append("id=$id,")
append("name=$name,")
append("updatedAt=$updatedAt,")
append("variants=*** Sensitive Data Redacted ***,")
append("version=$version")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = arn.hashCode()
result = 31 * result + (createdAt.hashCode())
result = 31 * result + (customerEncryptionKeyArn?.hashCode() ?: 0)
result = 31 * result + (defaultVariant?.hashCode() ?: 0)
result = 31 * result + (description?.hashCode() ?: 0)
result = 31 * result + (id.hashCode())
result = 31 * result + (name.hashCode())
result = 31 * result + (updatedAt.hashCode())
result = 31 * result + (variants?.hashCode() ?: 0)
result = 31 * result + (version.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 CreatePromptResponse
if (arn != other.arn) return false
if (createdAt != other.createdAt) return false
if (customerEncryptionKeyArn != other.customerEncryptionKeyArn) return false
if (defaultVariant != other.defaultVariant) return false
if (description != other.description) return false
if (id != other.id) return false
if (name != other.name) return false
if (updatedAt != other.updatedAt) return false
if (variants != other.variants) return false
if (version != other.version) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.bedrockagent.model.CreatePromptResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the prompt.
*/
public var arn: kotlin.String? = null
/**
* The time at which the prompt was created.
*/
public var createdAt: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The Amazon Resource Name (ARN) of the KMS key that you encrypted the prompt with.
*/
public var customerEncryptionKeyArn: kotlin.String? = null
/**
* The name of the default variant for your prompt.
*/
public var defaultVariant: kotlin.String? = null
/**
* The description of the prompt.
*/
public var description: kotlin.String? = null
/**
* The unique identifier of the prompt.
*/
public var id: kotlin.String? = null
/**
* The name of the prompt.
*/
public var name: kotlin.String? = null
/**
* The time at which the prompt was last updated.
*/
public var updatedAt: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* A list of objects, each containing details about a variant of the prompt.
*/
public var variants: List? = null
/**
* The version of the prompt. When you create a prompt, the version created is the `DRAFT` version.
*/
public var version: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.CreatePromptResponse) : this() {
this.arn = x.arn
this.createdAt = x.createdAt
this.customerEncryptionKeyArn = x.customerEncryptionKeyArn
this.defaultVariant = x.defaultVariant
this.description = x.description
this.id = x.id
this.name = x.name
this.updatedAt = x.updatedAt
this.variants = x.variants
this.version = x.version
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.bedrockagent.model.CreatePromptResponse = CreatePromptResponse(this)
internal fun correctErrors(): Builder {
if (arn == null) arn = ""
if (createdAt == null) createdAt = Instant.fromEpochSeconds(0)
if (id == null) id = ""
if (name == null) name = ""
if (updatedAt == null) updatedAt = Instant.fromEpochSeconds(0)
if (version == null) version = ""
return this
}
}
}