Interface OpenIdConnectIdentityTokenConfigurationItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OpenIdConnectIdentityTokenConfigurationItem.Builder,OpenIdConnectIdentityTokenConfigurationItem>,SdkBuilder<OpenIdConnectIdentityTokenConfigurationItem.Builder,OpenIdConnectIdentityTokenConfigurationItem>,SdkPojo
- Enclosing class:
- OpenIdConnectIdentityTokenConfigurationItem
public static interface OpenIdConnectIdentityTokenConfigurationItem.Builder extends SdkPojo, CopyableBuilder<OpenIdConnectIdentityTokenConfigurationItem.Builder,OpenIdConnectIdentityTokenConfigurationItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OpenIdConnectIdentityTokenConfigurationItem.BuilderclientIds(String... clientIds)The ID token audience, or client ID, claim values that you want to accept in your policy store from an OIDC identity provider.OpenIdConnectIdentityTokenConfigurationItem.BuilderclientIds(Collection<String> clientIds)The ID token audience, or client ID, claim values that you want to accept in your policy store from an OIDC identity provider.OpenIdConnectIdentityTokenConfigurationItem.BuilderprincipalIdClaim(String principalIdClaim)The claim that determines the principal in OIDC access tokens.-
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, sdkFields
-
-
-
-
Method Detail
-
principalIdClaim
OpenIdConnectIdentityTokenConfigurationItem.Builder principalIdClaim(String principalIdClaim)
The claim that determines the principal in OIDC access tokens. For example,
sub.- Parameters:
principalIdClaim- The claim that determines the principal in OIDC access tokens. For example,sub.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientIds
OpenIdConnectIdentityTokenConfigurationItem.Builder clientIds(Collection<String> clientIds)
The ID token audience, or client ID, claim values that you want to accept in your policy store from an OIDC identity provider. For example,
1example23456789, 2example10111213.- Parameters:
clientIds- The ID token audience, or client ID, claim values that you want to accept in your policy store from an OIDC identity provider. For example,1example23456789, 2example10111213.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientIds
OpenIdConnectIdentityTokenConfigurationItem.Builder clientIds(String... clientIds)
The ID token audience, or client ID, claim values that you want to accept in your policy store from an OIDC identity provider. For example,
1example23456789, 2example10111213.- Parameters:
clientIds- The ID token audience, or client ID, claim values that you want to accept in your policy store from an OIDC identity provider. For example,1example23456789, 2example10111213.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-