JwtClaimsArgs

data class JwtClaimsArgs(val audience: Output<String>? = null, val issuer: Output<String>? = null, val subject: Output<String>? = null) : ConvertibleToJava<JwtClaimsArgs>

JWT claims used for the jwt-bearer authorization grant.

Constructors

Link copied to clipboard
constructor(audience: Output<String>? = null, issuer: Output<String>? = null, subject: Output<String>? = null)

Properties

Link copied to clipboard
val audience: Output<String>? = null

Value for the "aud" claim.

Link copied to clipboard
val issuer: Output<String>? = null

Value for the "iss" claim.

Link copied to clipboard
val subject: Output<String>? = null

Value for the "sub" claim.

Functions

Link copied to clipboard
open override fun toJava(): JwtClaimsArgs