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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forOidcEndpointsstatic final classAn implementation forOidcEndpoints
- 
Method SummaryModifier and TypeMethodDescriptionstatic OidcEndpoints.Builderbuilder()Authorization endpoint.Jwks_uri endpoint.getToken()Token endpoint.UserInfo endpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getAuthorizationAuthorization endpoint.
- 
getJwksUriJwks_uri endpoint.
- 
getTokenToken endpoint.
- 
getUserInfoUserInfo endpoint.
- 
builder- Returns:
- a OidcEndpoints.BuilderofOidcEndpoints
 
 
-