Interface CfnIdentitySourcePropsMixin.CognitoUserPoolConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIdentitySourcePropsMixin.CognitoUserPoolConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnIdentitySourcePropsMixin

@Stability(Stable) public static interface CfnIdentitySourcePropsMixin.CognitoUserPoolConfigurationProperty extends software.amazon.jsii.JsiiSerializable
A structure that contains configuration information used when creating or updating an identity source that represents a connection to an Amazon Cognito user pool used as an identity provider for Verified Permissions .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.verifiedpermissions.*;
 CognitoUserPoolConfigurationProperty cognitoUserPoolConfigurationProperty = CognitoUserPoolConfigurationProperty.builder()
         .clientIds(List.of("clientIds"))
         .groupConfiguration(CognitoGroupConfigurationProperty.builder()
                 .groupEntityType("groupEntityType")
                 .build())
         .userPoolArn("userPoolArn")
         .build();
 

See Also: