Interface IdentitySourceDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IdentitySourceDetails.Builder,IdentitySourceDetails>,SdkBuilder<IdentitySourceDetails.Builder,IdentitySourceDetails>,SdkPojo
- Enclosing class:
- IdentitySourceDetails
public static interface IdentitySourceDetails.Builder extends SdkPojo, CopyableBuilder<IdentitySourceDetails.Builder,IdentitySourceDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IdentitySourceDetails.BuilderclientIds(String... clientIds)The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.IdentitySourceDetails.BuilderclientIds(Collection<String> clientIds)The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.IdentitySourceDetails.BuilderdiscoveryUrl(String discoveryUrl)The well-known URL that points to this user pool's OIDC discovery endpoint.IdentitySourceDetails.BuilderopenIdIssuer(String openIdIssuer)A string that identifies the type of OIDC service represented by this identity source.IdentitySourceDetails.BuilderopenIdIssuer(OpenIdIssuer openIdIssuer)A string that identifies the type of OIDC service represented by this identity source.IdentitySourceDetails.BuilderuserPoolArn(String userPoolArn)The Amazon Resource Name (ARN) of the Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.-
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
-
clientIds
IdentitySourceDetails.Builder clientIds(Collection<String> clientIds)
The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.
- Parameters:
clientIds- The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientIds
IdentitySourceDetails.Builder clientIds(String... clientIds)
The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.
- Parameters:
clientIds- The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userPoolArn
IdentitySourceDetails.Builder userPoolArn(String userPoolArn)
The Amazon Resource Name (ARN) of the Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.
- Parameters:
userPoolArn- The Amazon Resource Name (ARN) of the Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
discoveryUrl
IdentitySourceDetails.Builder discoveryUrl(String discoveryUrl)
The well-known URL that points to this user pool's OIDC discovery endpoint. This is a URL string in the following format. This URL replaces the placeholders for both the Amazon Web Services Region and the user pool identifier with those appropriate for this user pool.
https://cognito-idp.<region>.amazonaws.com/<user-pool-id>/.well-known/openid-configuration- Parameters:
discoveryUrl- The well-known URL that points to this user pool's OIDC discovery endpoint. This is a URL string in the following format. This URL replaces the placeholders for both the Amazon Web Services Region and the user pool identifier with those appropriate for this user pool.https://cognito-idp.<region>.amazonaws.com/<user-pool-id>/.well-known/openid-configuration- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
openIdIssuer
IdentitySourceDetails.Builder openIdIssuer(String openIdIssuer)
A string that identifies the type of OIDC service represented by this identity source.
At this time, the only valid value is
cognito.- Parameters:
openIdIssuer- A string that identifies the type of OIDC service represented by this identity source.At this time, the only valid value is
cognito.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpenIdIssuer,OpenIdIssuer
-
openIdIssuer
IdentitySourceDetails.Builder openIdIssuer(OpenIdIssuer openIdIssuer)
A string that identifies the type of OIDC service represented by this identity source.
At this time, the only valid value is
cognito.- Parameters:
openIdIssuer- A string that identifies the type of OIDC service represented by this identity source.At this time, the only valid value is
cognito.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpenIdIssuer,OpenIdIssuer
-
-