commonMain.aws.sdk.kotlin.services.bedrockagent.model.GetFlowAliasRequest.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
public class GetFlowAliasRequest private constructor(builder: Builder) {
/**
* The unique identifier of the alias for which to retrieve information.
*/
public val aliasIdentifier: kotlin.String? = builder.aliasIdentifier
/**
* The unique identifier of the flow that the alias belongs to.
*/
public val flowIdentifier: kotlin.String? = builder.flowIdentifier
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.bedrockagent.model.GetFlowAliasRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetFlowAliasRequest(")
append("aliasIdentifier=$aliasIdentifier,")
append("flowIdentifier=$flowIdentifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = aliasIdentifier?.hashCode() ?: 0
result = 31 * result + (flowIdentifier?.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 GetFlowAliasRequest
if (aliasIdentifier != other.aliasIdentifier) return false
if (flowIdentifier != other.flowIdentifier) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.bedrockagent.model.GetFlowAliasRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The unique identifier of the alias for which to retrieve information.
*/
public var aliasIdentifier: kotlin.String? = null
/**
* The unique identifier of the flow that the alias belongs to.
*/
public var flowIdentifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.GetFlowAliasRequest) : this() {
this.aliasIdentifier = x.aliasIdentifier
this.flowIdentifier = x.flowIdentifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.bedrockagent.model.GetFlowAliasRequest = GetFlowAliasRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}