public static interface JWTConfiguration.Builder extends SdkPojo, CopyableBuilder<JWTConfiguration.Builder,JWTConfiguration>
| Modifier and Type | Method and Description |
|---|---|
JWTConfiguration.Builder |
audience(Collection<String> audience)
A list of the intended recipients of the JWT.
|
JWTConfiguration.Builder |
audience(String... audience)
A list of the intended recipients of the JWT.
|
JWTConfiguration.Builder |
issuer(String issuer)
The base domain of the identity provider that issues JSON Web Tokens.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildJWTConfiguration.Builder audience(Collection<String> audience)
A list of the intended recipients of the JWT. A valid JWT must provide an aud that matches at least one entry in this list. See RFC 7519. Supported only for HTTP APIs.
audience - A list of the intended recipients of the JWT. A valid JWT must provide an aud that matches at least
one entry in this list. See RFC 7519.
Supported only for HTTP APIs.JWTConfiguration.Builder audience(String... audience)
A list of the intended recipients of the JWT. A valid JWT must provide an aud that matches at least one entry in this list. See RFC 7519. Supported only for HTTP APIs.
audience - A list of the intended recipients of the JWT. A valid JWT must provide an aud that matches at least
one entry in this list. See RFC 7519.
Supported only for HTTP APIs.JWTConfiguration.Builder issuer(String issuer)
The base domain of the identity provider that issues JSON Web Tokens. For example, an Amazon Cognito user
pool has the following format:
https://cognito-idp.
issuer - The base domain of the identity provider that issues JSON Web Tokens. For example, an Amazon Cognito
user pool has the following format:
https://cognito-idp.Copyright © 2021. All rights reserved.