Interface OidcEndpoints

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
OidcEndpoints.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.029Z") @Stability(Stable) public interface OidcEndpoints extends software.amazon.jsii.JsiiSerializable
OpenID Connect endpoints.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cognito.*;
 OidcEndpoints oidcEndpoints = OidcEndpoints.builder()
         .authorization("authorization")
         .jwksUri("jwksUri")
         .token("token")
         .userInfo("userInfo")
         .build();
 
  • Method Details

    • getAuthorization

      @Stability(Stable) @NotNull String getAuthorization()
      Authorization endpoint.
    • getJwksUri

      @Stability(Stable) @NotNull String getJwksUri()
      Jwks_uri endpoint.
    • getToken

      @Stability(Stable) @NotNull String getToken()
      Token endpoint.
    • getUserInfo

      @Stability(Stable) @NotNull String getUserInfo()
      UserInfo endpoint.
    • builder

      @Stability(Stable) static OidcEndpoints.Builder builder()
      Returns:
      a OidcEndpoints.Builder of OidcEndpoints