commonMain.aws.sdk.kotlin.services.configservice.auth.ConfigAuthSchemeParametersImpl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of configservice-jvm Show documentation
Show all versions of configservice-jvm Show documentation
The AWS Kotlin client for Config Service
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.configservice.auth
internal class ConfigAuthSchemeParametersImpl private constructor(builder: Builder) : ConfigAuthSchemeParameters {
override 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): ConfigAuthSchemeParametersImpl = 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(): ConfigAuthSchemeParametersImpl = ConfigAuthSchemeParametersImpl(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy