commonMain.aws.sdk.kotlin.services.grafana.model.AwsSsoAuthentication.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grafana-jvm Show documentation
Show all versions of grafana-jvm Show documentation
The AWS SDK for Kotlin client for grafana
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.grafana.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* A structure containing information about how this workspace works with IAM Identity Center.
*/
public class AwsSsoAuthentication private constructor(builder: Builder) {
/**
* The ID of the IAM Identity Center-managed application that is created by Amazon Managed Grafana.
*/
public val ssoClientId: kotlin.String? = builder.ssoClientId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.grafana.model.AwsSsoAuthentication = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("AwsSsoAuthentication(")
append("ssoClientId=$ssoClientId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = ssoClientId?.hashCode() ?: 0
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as AwsSsoAuthentication
if (ssoClientId != other.ssoClientId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.grafana.model.AwsSsoAuthentication = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID of the IAM Identity Center-managed application that is created by Amazon Managed Grafana.
*/
public var ssoClientId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.grafana.model.AwsSsoAuthentication) : this() {
this.ssoClientId = x.ssoClientId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.grafana.model.AwsSsoAuthentication = AwsSsoAuthentication(this)
internal fun correctErrors(): Builder {
return this
}
}
}