Interface OidcEndpoints
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
OidcEndpoints.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:05.603Z")
@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 Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forOidcEndpoints
static final class
An implementation forOidcEndpoints
-
Method Summary
Modifier and TypeMethodDescriptionstatic OidcEndpoints.Builder
builder()
Authorization endpoint.Jwks_uri endpoint.getToken()
Token endpoint.UserInfo endpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorization
Authorization endpoint. -
getJwksUri
Jwks_uri endpoint. -
getToken
Token endpoint. -
getUserInfo
UserInfo endpoint. -
builder
- Returns:
- a
OidcEndpoints.Builder
ofOidcEndpoints
-