Table of Contents

Interface IUserPoolClientProps

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

Properties for the UserPoolClient construct.

public interface IUserPoolClientProps : IUserPoolClientOptions
Inherited Members

Examples

var importedPool = UserPool.FromUserPoolId(this, "imported-pool", "us-east-1_oiuR12Abd");
            new UserPoolClient(this, "customer-app-client", new UserPoolClientProps {
                UserPool = importedPool
            });

Remarks

ExampleMetadata: infused

Properties

UserPool

The UserPool resource this client will have access to.

IUserPool UserPool { get; }

Property Value

IUserPool