commonMain.aws.sdk.kotlin.services.bedrockagent.model.CreateFlowAliasRequest.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
public class CreateFlowAliasRequest private constructor(builder: Builder) {
/**
* A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see [Ensuring idempotency](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html).
*/
public val clientToken: kotlin.String? = builder.clientToken
/**
* A description for the alias.
*/
public val description: kotlin.String? = builder.description
/**
* The unique identifier of the flow for which to create an alias.
*/
public val flowIdentifier: kotlin.String? = builder.flowIdentifier
/**
* A name for the alias.
*/
public val name: kotlin.String? = builder.name
/**
* Contains information about the version to which to map the alias.
*/
public val routingConfiguration: List? = builder.routingConfiguration
/**
* Any tags that you want to attach to the alias of the flow. For more information, see [Tagging resources in Amazon Bedrock](https://docs.aws.amazon.com/bedrock/latest/userguide/tagging.html).
*/
public val tags: Map? = builder.tags
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.bedrockagent.model.CreateFlowAliasRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateFlowAliasRequest(")
append("clientToken=$clientToken,")
append("description=$description,")
append("flowIdentifier=$flowIdentifier,")
append("name=$name,")
append("routingConfiguration=$routingConfiguration,")
append("tags=$tags")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clientToken?.hashCode() ?: 0
result = 31 * result + (description?.hashCode() ?: 0)
result = 31 * result + (flowIdentifier?.hashCode() ?: 0)
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (routingConfiguration?.hashCode() ?: 0)
result = 31 * result + (tags?.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 CreateFlowAliasRequest
if (clientToken != other.clientToken) return false
if (description != other.description) return false
if (flowIdentifier != other.flowIdentifier) return false
if (name != other.name) return false
if (routingConfiguration != other.routingConfiguration) return false
if (tags != other.tags) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.bedrockagent.model.CreateFlowAliasRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see [Ensuring idempotency](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html).
*/
public var clientToken: kotlin.String? = null
/**
* A description for the alias.
*/
public var description: kotlin.String? = null
/**
* The unique identifier of the flow for which to create an alias.
*/
public var flowIdentifier: kotlin.String? = null
/**
* A name for the alias.
*/
public var name: kotlin.String? = null
/**
* Contains information about the version to which to map the alias.
*/
public var routingConfiguration: List? = null
/**
* Any tags that you want to attach to the alias of the flow. For more information, see [Tagging resources in Amazon Bedrock](https://docs.aws.amazon.com/bedrock/latest/userguide/tagging.html).
*/
public var tags: Map? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.CreateFlowAliasRequest) : this() {
this.clientToken = x.clientToken
this.description = x.description
this.flowIdentifier = x.flowIdentifier
this.name = x.name
this.routingConfiguration = x.routingConfiguration
this.tags = x.tags
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.bedrockagent.model.CreateFlowAliasRequest = CreateFlowAliasRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}