public static interface OpenIDConnectConfig.Builder extends SdkPojo, CopyableBuilder<OpenIDConnectConfig.Builder,OpenIDConnectConfig>
Modifier and Type | Method and Description |
---|---|
OpenIDConnectConfig.Builder |
authTTL(Long authTTL)
The number of milliseconds a token is valid after being authenticated.
|
OpenIDConnectConfig.Builder |
clientId(String clientId)
The client identifier of the Relying party at the OpenID identity provider.
|
OpenIDConnectConfig.Builder |
iatTTL(Long iatTTL)
The number of milliseconds a token is valid after being issued to a user.
|
OpenIDConnectConfig.Builder |
issuer(String issuer)
The issuer for the OpenID Connect configuration.
|
copy
applyMutation, build
OpenIDConnectConfig.Builder issuer(String issuer)
The issuer for the OpenID Connect configuration. The issuer returned by discovery must exactly match the
value of iss
in the ID token.
issuer
- The issuer for the OpenID Connect configuration. The issuer returned by discovery must exactly match
the value of iss
in the ID token.OpenIDConnectConfig.Builder clientId(String clientId)
The client identifier of the Relying party at the OpenID identity provider. This identifier is typically obtained when the Relying party is registered with the OpenID identity provider. You can specify a regular expression so the AWS AppSync can validate against multiple client identifiers at a time.
clientId
- The client identifier of the Relying party at the OpenID identity provider. This identifier is
typically obtained when the Relying party is registered with the OpenID identity provider. You can
specify a regular expression so the AWS AppSync can validate against multiple client identifiers at a
time.OpenIDConnectConfig.Builder iatTTL(Long iatTTL)
The number of milliseconds a token is valid after being issued to a user.
iatTTL
- The number of milliseconds a token is valid after being issued to a user.OpenIDConnectConfig.Builder authTTL(Long authTTL)
The number of milliseconds a token is valid after being authenticated.
authTTL
- The number of milliseconds a token is valid after being authenticated.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.