aws-cdk-lib.aws_cognito.OidcEndpoints

interface OidcEndpoints

LanguageType name
.NETAmazon.CDK.AWS.Cognito.OidcEndpoints
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscognito#OidcEndpoints
Javasoftware.amazon.awscdk.services.cognito.OidcEndpoints
Pythonaws_cdk.aws_cognito.OidcEndpoints
TypeScript (source)aws-cdk-lib » aws_cognito » OidcEndpoints

OpenID Connect endpoints.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognito as cognito } from 'aws-cdk-lib';
const oidcEndpoints: cognito.OidcEndpoints = {
  authorization: 'authorization',
  jwksUri: 'jwksUri',
  token: 'token',
  userInfo: 'userInfo',
};

Properties

NameTypeDescription
authorizationstringAuthorization endpoint.
jwksUristringJwks_uri endpoint.
tokenstringToken endpoint.
userInfostringUserInfo endpoint.

authorization

Type: string

Authorization endpoint.


jwksUri

Type: string

Jwks_uri endpoint.


token

Type: string

Token endpoint.


userInfo

Type: string

UserInfo endpoint.