Interface CfnIdentitySource.CognitoUserPoolConfigurationProperty

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

@Stability(Stable) public static interface CfnIdentitySource.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.services.verifiedpermissions.*;
 CognitoUserPoolConfigurationProperty cognitoUserPoolConfigurationProperty = CognitoUserPoolConfigurationProperty.builder()
         .userPoolArn("userPoolArn")
         // the properties below are optional
         .clientIds(List.of("clientIds"))
         .groupConfiguration(CognitoGroupConfigurationProperty.builder()
                 .groupEntityType("groupEntityType")
                 .build())
         .build();
 

See Also: