interface OidcEndpoints
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Cognito.OidcEndpoints |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscognito#OidcEndpoints |
![]() | software.amazon.awscdk.services.cognito.OidcEndpoints |
![]() | aws_cdk.aws_cognito.OidcEndpoints |
![]() | 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
Name | Type | Description |
---|---|---|
authorization | string | Authorization endpoint. |
jwks | string | Jwks_uri endpoint. |
token | string | Token endpoint. |
user | string | UserInfo endpoint. |
authorization
Type:
string
Authorization endpoint.
jwksUri
Type:
string
Jwks_uri endpoint.
token
Type:
string
Token endpoint.
userInfo
Type:
string
UserInfo endpoint.