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