Interface SsoOidcClient
- All Superinterfaces:
AutoCloseable,AwsClient,SdkAutoCloseable,SdkClient
builder() method.
IAM Identity Center OpenID Connect (OIDC) is a web service that enables a client (such as CLI or a native application) to register with IAM Identity Center. The service also enables the client to fetch the user’s access token upon successful authentication and authorization with IAM Identity Center.
API namespaces
IAM Identity Center uses the sso and identitystore API namespaces. IAM Identity Center
OpenID Connect uses the sso-oauth namespace.
Considerations for using this guide
Before you begin using this guide, we recommend that you first review the following important information about how the IAM Identity Center OIDC service works.
-
The IAM Identity Center OIDC service currently implements only the portions of the OAuth 2.0 Device Authorization Grant standard (https://tools.ietf.org/html/rfc8628) that are necessary to enable single sign-on authentication with the CLI.
-
With older versions of the CLI, the service only emits OIDC access tokens, so to obtain a new token, users must explicitly re-authenticate. To access the OIDC flow that supports token refresh and doesn’t require re-authentication, update to the latest CLI version (1.27.10 for CLI V1 and 2.9.0 for CLI V2) with support for OIDC token refresh and configurable IAM Identity Center session durations. For more information, see Configure Amazon Web Services access portal session duration .
-
The access tokens provided by this service grant access to all Amazon Web Services account entitlements assigned to an IAM Identity Center user, not just a particular application.
-
The documentation in this guide does not describe the mechanism to convert the access token into Amazon Web Services Auth (“sigv4”) credentials for use with IAM-protected Amazon Web Services service endpoints. For more information, see GetRoleCredentials in the IAM Identity Center Portal API Reference Guide.
For general information about IAM Identity Center, see What is IAM Identity Center? in the IAM Identity Center User Guide.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringValue for looking up the service's metadata from theServiceMetadataProvider.static final String -
Method Summary
Modifier and TypeMethodDescriptionstatic SsoOidcClientBuilderbuilder()Create a builder that can be used to configure and create aSsoOidcClient.static SsoOidcClientcreate()Create aSsoOidcClientwith the region loaded from theDefaultAwsRegionProviderChainand credentials loaded from theDefaultCredentialsProvider.default CreateTokenResponsecreateToken(Consumer<CreateTokenRequest.Builder> createTokenRequest) Creates and returns access and refresh tokens for clients that are authenticated using client secrets.default CreateTokenResponsecreateToken(CreateTokenRequest createTokenRequest) Creates and returns access and refresh tokens for clients that are authenticated using client secrets.default CreateTokenWithIamResponsecreateTokenWithIAM(Consumer<CreateTokenWithIamRequest.Builder> createTokenWithIamRequest) Creates and returns access and refresh tokens for authorized client applications that are authenticated using any IAM entity, such as a service role or user.default CreateTokenWithIamResponsecreateTokenWithIAM(CreateTokenWithIamRequest createTokenWithIamRequest) Creates and returns access and refresh tokens for authorized client applications that are authenticated using any IAM entity, such as a service role or user.default RegisterClientResponseregisterClient(Consumer<RegisterClientRequest.Builder> registerClientRequest) Registers a public client with IAM Identity Center.default RegisterClientResponseregisterClient(RegisterClientRequest registerClientRequest) Registers a public client with IAM Identity Center.The SDK service client configuration exposes client settings to the user, e.g., ClientOverrideConfigurationstatic ServiceMetadatadefault StartDeviceAuthorizationResponsestartDeviceAuthorization(Consumer<StartDeviceAuthorizationRequest.Builder> startDeviceAuthorizationRequest) Initiates device authorization by requesting a pair of verification codes from the authorization service.default StartDeviceAuthorizationResponsestartDeviceAuthorization(StartDeviceAuthorizationRequest startDeviceAuthorizationRequest) Initiates device authorization by requesting a pair of verification codes from the authorization service.Methods inherited from interface software.amazon.awssdk.utils.SdkAutoCloseable
closeMethods inherited from interface software.amazon.awssdk.core.SdkClient
serviceName
-
Field Details
-
SERVICE_NAME
- See Also:
-
SERVICE_METADATA_ID
Value for looking up the service's metadata from theServiceMetadataProvider.- See Also:
-
-
Method Details
-
createToken
default CreateTokenResponse createToken(CreateTokenRequest createTokenRequest) throws InvalidRequestException, InvalidClientException, InvalidGrantException, UnauthorizedClientException, UnsupportedGrantTypeException, InvalidScopeException, AuthorizationPendingException, SlowDownException, AccessDeniedException, ExpiredTokenException, InternalServerException, AwsServiceException, SdkClientException, SsoOidcException Creates and returns access and refresh tokens for clients that are authenticated using client secrets. The access token can be used to fetch short-lived credentials for the assigned AWS accounts or to access application APIs using
bearerauthentication.- Parameters:
createTokenRequest-- Returns:
- Result of the CreateToken operation returned by the service.
- See Also:
-
createToken
default CreateTokenResponse createToken(Consumer<CreateTokenRequest.Builder> createTokenRequest) throws InvalidRequestException, InvalidClientException, InvalidGrantException, UnauthorizedClientException, UnsupportedGrantTypeException, InvalidScopeException, AuthorizationPendingException, SlowDownException, AccessDeniedException, ExpiredTokenException, InternalServerException, AwsServiceException, SdkClientException, SsoOidcException Creates and returns access and refresh tokens for clients that are authenticated using client secrets. The access token can be used to fetch short-lived credentials for the assigned AWS accounts or to access application APIs using
bearerauthentication.
This is a convenience which creates an instance of the
CreateTokenRequest.Builderavoiding the need to create one manually viaCreateTokenRequest.builder()- Parameters:
createTokenRequest- AConsumerthat will call methods onCreateTokenRequest.Builderto create a request.- Returns:
- Result of the CreateToken operation returned by the service.
- See Also:
-
createTokenWithIAM
default CreateTokenWithIamResponse createTokenWithIAM(CreateTokenWithIamRequest createTokenWithIamRequest) throws InvalidRequestException, InvalidClientException, InvalidGrantException, UnauthorizedClientException, UnsupportedGrantTypeException, InvalidScopeException, AuthorizationPendingException, SlowDownException, AccessDeniedException, ExpiredTokenException, InternalServerException, InvalidRequestRegionException, AwsServiceException, SdkClientException, SsoOidcException Creates and returns access and refresh tokens for authorized client applications that are authenticated using any IAM entity, such as a service role or user. These tokens might contain defined scopes that specify permissions such as
read:profileorwrite:data. Through downscoping, you can use the scopes parameter to request tokens with reduced permissions compared to the original client application's permissions or, if applicable, the refresh token's scopes. The access token can be used to fetch short-lived credentials for the assigned Amazon Web Services accounts or to access application APIs usingbearerauthentication.This API is used with Signature Version 4. For more information, see Amazon Web Services Signature Version 4 for API Requests.
- Parameters:
createTokenWithIamRequest-- Returns:
- Result of the CreateTokenWithIAM operation returned by the service.
- See Also:
-
createTokenWithIAM
default CreateTokenWithIamResponse createTokenWithIAM(Consumer<CreateTokenWithIamRequest.Builder> createTokenWithIamRequest) throws InvalidRequestException, InvalidClientException, InvalidGrantException, UnauthorizedClientException, UnsupportedGrantTypeException, InvalidScopeException, AuthorizationPendingException, SlowDownException, AccessDeniedException, ExpiredTokenException, InternalServerException, InvalidRequestRegionException, AwsServiceException, SdkClientException, SsoOidcException Creates and returns access and refresh tokens for authorized client applications that are authenticated using any IAM entity, such as a service role or user. These tokens might contain defined scopes that specify permissions such as
read:profileorwrite:data. Through downscoping, you can use the scopes parameter to request tokens with reduced permissions compared to the original client application's permissions or, if applicable, the refresh token's scopes. The access token can be used to fetch short-lived credentials for the assigned Amazon Web Services accounts or to access application APIs usingbearerauthentication.This API is used with Signature Version 4. For more information, see Amazon Web Services Signature Version 4 for API Requests.
This is a convenience which creates an instance of the
CreateTokenWithIamRequest.Builderavoiding the need to create one manually viaCreateTokenWithIamRequest.builder()- Parameters:
createTokenWithIamRequest- AConsumerthat will call methods onCreateTokenWithIamRequest.Builderto create a request.- Returns:
- Result of the CreateTokenWithIAM operation returned by the service.
- See Also:
-
registerClient
default RegisterClientResponse registerClient(RegisterClientRequest registerClientRequest) throws InvalidRequestException, InvalidScopeException, InvalidClientMetadataException, InternalServerException, InvalidRedirectUriException, UnsupportedGrantTypeException, SlowDownException, AwsServiceException, SdkClientException, SsoOidcException Registers a public client with IAM Identity Center. This allows clients to perform authorization using the authorization code grant with Proof Key for Code Exchange (PKCE) or the device code grant.
- Parameters:
registerClientRequest-- Returns:
- Result of the RegisterClient operation returned by the service.
- See Also:
-
registerClient
default RegisterClientResponse registerClient(Consumer<RegisterClientRequest.Builder> registerClientRequest) throws InvalidRequestException, InvalidScopeException, InvalidClientMetadataException, InternalServerException, InvalidRedirectUriException, UnsupportedGrantTypeException, SlowDownException, AwsServiceException, SdkClientException, SsoOidcException Registers a public client with IAM Identity Center. This allows clients to perform authorization using the authorization code grant with Proof Key for Code Exchange (PKCE) or the device code grant.
This is a convenience which creates an instance of the
RegisterClientRequest.Builderavoiding the need to create one manually viaRegisterClientRequest.builder()- Parameters:
registerClientRequest- AConsumerthat will call methods onRegisterClientRequest.Builderto create a request.- Returns:
- Result of the RegisterClient operation returned by the service.
- See Also:
-
startDeviceAuthorization
default StartDeviceAuthorizationResponse startDeviceAuthorization(StartDeviceAuthorizationRequest startDeviceAuthorizationRequest) throws InvalidRequestException, InvalidClientException, UnauthorizedClientException, SlowDownException, InternalServerException, AwsServiceException, SdkClientException, SsoOidcException Initiates device authorization by requesting a pair of verification codes from the authorization service.
- Parameters:
startDeviceAuthorizationRequest-- Returns:
- Result of the StartDeviceAuthorization operation returned by the service.
- See Also:
-
startDeviceAuthorization
default StartDeviceAuthorizationResponse startDeviceAuthorization(Consumer<StartDeviceAuthorizationRequest.Builder> startDeviceAuthorizationRequest) throws InvalidRequestException, InvalidClientException, UnauthorizedClientException, SlowDownException, InternalServerException, AwsServiceException, SdkClientException, SsoOidcException Initiates device authorization by requesting a pair of verification codes from the authorization service.
This is a convenience which creates an instance of the
StartDeviceAuthorizationRequest.Builderavoiding the need to create one manually viaStartDeviceAuthorizationRequest.builder()- Parameters:
startDeviceAuthorizationRequest- AConsumerthat will call methods onStartDeviceAuthorizationRequest.Builderto create a request.- Returns:
- Result of the StartDeviceAuthorization operation returned by the service.
- See Also:
-
create
Create aSsoOidcClientwith the region loaded from theDefaultAwsRegionProviderChainand credentials loaded from theDefaultCredentialsProvider. -
builder
Create a builder that can be used to configure and create aSsoOidcClient. -
serviceMetadata
-
serviceClientConfiguration
Description copied from interface:SdkClientThe SDK service client configuration exposes client settings to the user, e.g., ClientOverrideConfiguration- Specified by:
serviceClientConfigurationin interfaceAwsClient- Specified by:
serviceClientConfigurationin interfaceSdkClient- Returns:
- SdkServiceClientConfiguration
-