Table of Contents

Interface IOidcEndpoints

Namespace
Amazon.CDK.AWS.Cognito
Assembly
Amazon.CDK.AWS.Cognito.dll

OpenID Connect endpoints.

public interface IOidcEndpoints

Examples

// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.Cognito;

            var oidcEndpoints = new OidcEndpoints {
                Authorization = "authorization",
                JwksUri = "jwksUri",
                Token = "token",
                UserInfo = "userInfo"
            };

Remarks

ExampleMetadata: fixture=_generated

Properties

Authorization

Authorization endpoint.

string Authorization { get; }

Property Value

string

JwksUri

Jwks_uri endpoint.

string JwksUri { get; }

Property Value

string

Token

Token endpoint.

string Token { get; }

Property Value

string

UserInfo

UserInfo endpoint.

string UserInfo { get; }

Property Value

string