Interface CfnIdentitySourceProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIdentitySourceProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)", date="2023-11-02T10:21:24.635Z") @Stability(Stable) public interface CfnIdentitySourceProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnIdentitySource.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import services.verifiedpermissions.*;
 CfnIdentitySourceProps cfnIdentitySourceProps = CfnIdentitySourceProps.builder()
         .configuration(IdentitySourceConfigurationProperty.builder()
                 .cognitoUserPoolConfiguration(CognitoUserPoolConfigurationProperty.builder()
                         .userPoolArn("userPoolArn")
                         // the properties below are optional
                         .clientIds(List.of("clientIds"))
                         .build())
                 .build())
         // the properties below are optional
         .policyStoreId("policyStoreId")
         .principalEntityType("principalEntityType")
         .build();
 

See Also: