Interface IUserPoolClientReference
A reference to a UserPoolClient resource.
Namespace: Amazon.CDK.AWS.Cognito
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IUserPoolClientReference
Syntax (vb)
Public Interface IUserPoolClientReference
Remarks
ExampleMetadata: fixture=_generated
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 userPoolClientReference = new UserPoolClientReference {
ClientId = "clientId",
UserPoolId = "userPoolId"
};
Synopsis
Properties
ClientId | The ClientId of the UserPoolClient resource. |
UserPoolId | The UserPoolId of the UserPoolClient resource. |
Properties
ClientId
The ClientId of the UserPoolClient resource.
string ClientId { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
UserPoolId
The UserPoolId of the UserPoolClient resource.
string UserPoolId { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated