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