Interface UserPoolClientProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, UserPoolClientOptions
All Known Implementing Classes:
UserPoolClientProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.070Z") @Stability(Stable) public interface UserPoolClientProps extends software.amazon.jsii.JsiiSerializable, UserPoolClientOptions
Properties for the UserPoolClient construct.

Example:

 IUserPool importedPool = UserPool.fromUserPoolId(this, "imported-pool", "us-east-1_oiuR12Abd");
 UserPoolClient.Builder.create(this, "customer-app-client")
         .userPool(importedPool)
         .build();