Class OidcEndpoints
OpenID Connect endpoints.
public class OidcEndpoints : IOidcEndpoints
- Inheritance
-
OidcEndpoints
- Implements
- Inherited Members
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
Constructors
OidcEndpoints()
public OidcEndpoints()
Properties
Authorization
Authorization endpoint.
public string Authorization { get; set; }
Property Value
JwksUri
Jwks_uri endpoint.
public string JwksUri { get; set; }
Property Value
Token
Token endpoint.
public string Token { get; set; }
Property Value
UserInfo
UserInfo endpoint.
public string UserInfo { get; set; }