AuthorizerJwtConfiguration

data class AuthorizerJwtConfiguration(val audiences: List<String>? = null, val issuer: String? = null)

Constructors

Link copied to clipboard
constructor(audiences: List<String>? = null, issuer: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val audiences: List<String>? = null

List of the intended recipients of the JWT. A valid JWT must provide an aud that matches at least one entry in this list.

Link copied to clipboard
val issuer: String? = null

Base domain of the identity provider that issues JSON Web Tokens, such as the endpoint attribute of the aws.cognito.UserPool resource.