Interface OidcJwtConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<OidcJwtConfiguration.Builder,OidcJwtConfiguration>
,SdkBuilder<OidcJwtConfiguration.Builder,OidcJwtConfiguration>
,SdkPojo
- Enclosing class:
- OidcJwtConfiguration
public static interface OidcJwtConfiguration.Builder extends SdkPojo, CopyableBuilder<OidcJwtConfiguration.Builder,OidcJwtConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OidcJwtConfiguration.Builder
claimAttributePath(String claimAttributePath)
The path of the source attribute in the JWT from the trusted token issuer.OidcJwtConfiguration.Builder
identityStoreAttributePath(String identityStoreAttributePath)
The path of the destination attribute in a JWT from IAM Identity Center.OidcJwtConfiguration.Builder
issuerUrl(String issuerUrl)
The URL that IAM Identity Center uses for OpenID Discovery.OidcJwtConfiguration.Builder
jwksRetrievalOption(String jwksRetrievalOption)
The method that the trusted token issuer can use to retrieve the JSON Web Key Set used to verify a JWT.OidcJwtConfiguration.Builder
jwksRetrievalOption(JwksRetrievalOption jwksRetrievalOption)
The method that the trusted token issuer can use to retrieve the JSON Web Key Set used to verify a JWT.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
claimAttributePath
OidcJwtConfiguration.Builder claimAttributePath(String claimAttributePath)
The path of the source attribute in the JWT from the trusted token issuer. The attribute mapped by this JMESPath expression is compared against the attribute mapped by
IdentityStoreAttributePath
when a trusted token issuer token is exchanged for an IAM Identity Center token.- Parameters:
claimAttributePath
- The path of the source attribute in the JWT from the trusted token issuer. The attribute mapped by this JMESPath expression is compared against the attribute mapped byIdentityStoreAttributePath
when a trusted token issuer token is exchanged for an IAM Identity Center token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identityStoreAttributePath
OidcJwtConfiguration.Builder identityStoreAttributePath(String identityStoreAttributePath)
The path of the destination attribute in a JWT from IAM Identity Center. The attribute mapped by this JMESPath expression is compared against the attribute mapped by
ClaimAttributePath
when a trusted token issuer token is exchanged for an IAM Identity Center token.- Parameters:
identityStoreAttributePath
- The path of the destination attribute in a JWT from IAM Identity Center. The attribute mapped by this JMESPath expression is compared against the attribute mapped byClaimAttributePath
when a trusted token issuer token is exchanged for an IAM Identity Center token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
issuerUrl
OidcJwtConfiguration.Builder issuerUrl(String issuerUrl)
The URL that IAM Identity Center uses for OpenID Discovery. OpenID Discovery is used to obtain the information required to verify the tokens that the trusted token issuer generates.
- Parameters:
issuerUrl
- The URL that IAM Identity Center uses for OpenID Discovery. OpenID Discovery is used to obtain the information required to verify the tokens that the trusted token issuer generates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jwksRetrievalOption
OidcJwtConfiguration.Builder jwksRetrievalOption(String jwksRetrievalOption)
The method that the trusted token issuer can use to retrieve the JSON Web Key Set used to verify a JWT.
- Parameters:
jwksRetrievalOption
- The method that the trusted token issuer can use to retrieve the JSON Web Key Set used to verify a JWT.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JwksRetrievalOption
,JwksRetrievalOption
-
jwksRetrievalOption
OidcJwtConfiguration.Builder jwksRetrievalOption(JwksRetrievalOption jwksRetrievalOption)
The method that the trusted token issuer can use to retrieve the JSON Web Key Set used to verify a JWT.
- Parameters:
jwksRetrievalOption
- The method that the trusted token issuer can use to retrieve the JSON Web Key Set used to verify a JWT.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JwksRetrievalOption
,JwksRetrievalOption
-
-