All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.timestreamwrite.auth.TimestreamWriteAuthSchemeParametersImpl.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.timestreamwrite.auth



internal class TimestreamWriteAuthSchemeParametersImpl private constructor(builder: Builder) : TimestreamWriteAuthSchemeParameters {
    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): TimestreamWriteAuthSchemeParametersImpl = 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(): TimestreamWriteAuthSchemeParametersImpl = TimestreamWriteAuthSchemeParametersImpl(this)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy