Interface IUserPoolClientProps
Properties for the UserPoolClient construct.
Inherited Members
Namespace: Amazon.CDK.AWS.Cognito
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IUserPoolClientProps : IUserPoolClientOptions
Syntax (vb)
Public Interface IUserPoolClientProps
Inherits IUserPoolClientOptions
Remarks
ExampleMetadata: infused
Examples
UserPool importedPool;
var userPoolClient = new UserPoolClient(this, "UserPoolClient", new UserPoolClientProps {
UserPool = importedPool,
GenerateSecret = true
});
// Allows you to pass the generated secret to other pieces of infrastructure
var secret = userPoolClient.UserPoolClientSecret;
Synopsis
Properties
UserPool | The UserPool resource this client will have access to. |
Properties
UserPool
The UserPool resource this client will have access to.
IUserPool UserPool { get; }
Property Value