OidcEndpoints

class aws_cdk.aws_cognito.OidcEndpoints(*, authorization, jwks_uri, token, user_info)

Bases: object

OpenID Connect endpoints.

Parameters:
  • authorization (str) – Authorization endpoint.

  • jwks_uri (str) – Jwks_uri endpoint.

  • token (str) – Token endpoint.

  • user_info (str) – UserInfo endpoint.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_cognito as cognito

oidc_endpoints = cognito.OidcEndpoints(
    authorization="authorization",
    jwks_uri="jwksUri",
    token="token",
    user_info="userInfo"
)

Attributes

authorization

Authorization endpoint.

jwks_uri

Jwks_uri endpoint.

token

Token endpoint.

user_info

UserInfo endpoint.