commonMain.aws.sdk.kotlin.services.bedrockruntime.auth.BedrockRuntimeAuthSchemeParameters.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bedrockruntime-jvm Show documentation
Show all versions of bedrockruntime-jvm Show documentation
The AWS Kotlin client for Bedrock Runtime
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrockruntime.auth
public class BedrockRuntimeAuthSchemeParameters private constructor(builder: Builder) {
public val operationName: String = requireNotNull(builder.operationName) { "operationName is a required auth scheme parameter" }
public companion object {
public inline operator fun invoke(block: Builder.() -> kotlin.Unit): BedrockRuntimeAuthSchemeParameters = Builder().apply(block).build()
}
public fun toBuilder(): Builder = Builder().apply {
operationName = [email protected]
}
public class Builder {
/**
* The name of the operation currently being invoked.
*/
public var operationName: String? = null
@PublishedApi
internal fun build(): BedrockRuntimeAuthSchemeParameters = BedrockRuntimeAuthSchemeParameters(this)
}
override fun toString(): String = buildString {
append("BedrockRuntimeAuthSchemeParameters(")
append("operationName=$operationName)")
}
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other !is BedrockRuntimeAuthSchemeParameters) return false
if (this.operationName != other.operationName) return false
return true
}
override fun hashCode(): Int {
var result = operationName?.hashCode() ?: 0
return result
}
public fun copy(block: Builder.() -> Unit = {}): BedrockRuntimeAuthSchemeParameters {
return Builder().apply {
operationName = [email protected]
block()
}
.build()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy