Interface UserPoolClientProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:04.722Z") @Stability(Stable) public interface UserPoolClientProps extends software.amazon.jsii.JsiiSerializable, UserPoolClientOptions
Properties for the UserPoolClient construct.

Example:

 UserPool importedPool;
 UserPoolClient userPoolClient = UserPoolClient.Builder.create(this, "UserPoolClient")
         .userPool(importedPool)
         .generateSecret(true)
         .build();
 // Allows you to pass the generated secret to other pieces of infrastructure
 SecretValue secret = userPoolClient.getUserPoolClientSecret();