commonMain.aws.sdk.kotlin.services.computeoptimizer.auth.AuthSchemeParameters.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of computeoptimizer-jvm Show documentation
Show all versions of computeoptimizer-jvm Show documentation
The AWS SDK for Kotlin client for Compute Optimizer
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.computeoptimizer.auth
internal class AuthSchemeParameters private constructor(builder: Builder) {
public val operationName: String = requireNotNull(builder.operationName) { "operationName is a required auth scheme parameter" }
internal companion object {
internal inline operator fun invoke(block: Builder.() -> kotlin.Unit): AuthSchemeParameters = Builder().apply(block).build()
}
internal fun toBuilder(): Builder = Builder().apply {
operationName = [email protected]
}
internal class Builder {
/**
* The name of the operation currently being invoked.
*/
public var operationName: String? = null
@PublishedApi
internal fun build(): AuthSchemeParameters = AuthSchemeParameters(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy