commonMain.aws.sdk.kotlin.services.ssoadmin.model.JwtBearerGrant.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ssoadmin-jvm Show documentation
Show all versions of ssoadmin-jvm Show documentation
The AWS SDK for Kotlin client for SSO Admin
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.ssoadmin.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* A structure that defines configuration settings for an application that supports the JWT Bearer Token Authorization Grant.
*/
public class JwtBearerGrant private constructor(builder: Builder) {
/**
* A list of allowed token issuers trusted by the Identity Center instances for this application.
*/
public val authorizedTokenIssuers: List? = builder.authorizedTokenIssuers
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.ssoadmin.model.JwtBearerGrant = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("JwtBearerGrant(")
append("authorizedTokenIssuers=$authorizedTokenIssuers")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = authorizedTokenIssuers?.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 JwtBearerGrant
if (authorizedTokenIssuers != other.authorizedTokenIssuers) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.ssoadmin.model.JwtBearerGrant = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A list of allowed token issuers trusted by the Identity Center instances for this application.
*/
public var authorizedTokenIssuers: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.ssoadmin.model.JwtBearerGrant) : this() {
this.authorizedTokenIssuers = x.authorizedTokenIssuers
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.ssoadmin.model.JwtBearerGrant = JwtBearerGrant(this)
internal fun correctErrors(): Builder {
return this
}
}
}