Interface UserPoolGroupProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, UserPoolGroupOptions
All Known Implementing Classes:
UserPoolGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-15T14:51:54.565Z") @Stability(Stable) public interface UserPoolGroupProps extends software.amazon.jsii.JsiiSerializable, UserPoolGroupOptions
Props for UserPoolGroup construct.

Example:

 UserPool userPool;
 Role role;
 UserPoolGroup.Builder.create(this, "UserPoolGroup")
         .userPool(userPool)
         .groupName("my-group-name")
         .precedence(1)
         .role(role)
         .build();
 // You can also add a group by using addGroup method.
 userPool.addGroup("AnotherUserPoolGroup", UserPoolGroupOptions.builder()
         .groupName("another-group-name")
         .build());