Interface CfnIdentitySourceProps

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-10-31T19:13:06.870Z") @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 software.amazon.awscdk.services.verifiedpermissions.*;
 CfnIdentitySourceProps cfnIdentitySourceProps = CfnIdentitySourceProps.builder()
         .configuration(IdentitySourceConfigurationProperty.builder()
                 .cognitoUserPoolConfiguration(CognitoUserPoolConfigurationProperty.builder()
                         .userPoolArn("userPoolArn")
                         // the properties below are optional
                         .clientIds(List.of("clientIds"))
                         .groupConfiguration(CognitoGroupConfigurationProperty.builder()
                                 .groupEntityType("groupEntityType")
                                 .build())
                         .build())
                 .openIdConnectConfiguration(OpenIdConnectConfigurationProperty.builder()
                         .issuer("issuer")
                         .tokenSelection(OpenIdConnectTokenSelectionProperty.builder()
                                 .accessTokenOnly(OpenIdConnectAccessTokenConfigurationProperty.builder()
                                         .audiences(List.of("audiences"))
                                         .principalIdClaim("principalIdClaim")
                                         .build())
                                 .identityTokenOnly(OpenIdConnectIdentityTokenConfigurationProperty.builder()
                                         .clientIds(List.of("clientIds"))
                                         .principalIdClaim("principalIdClaim")
                                         .build())
                                 .build())
                         // the properties below are optional
                         .entityIdPrefix("entityIdPrefix")
                         .groupConfiguration(OpenIdConnectGroupConfigurationProperty.builder()
                                 .groupClaim("groupClaim")
                                 .groupEntityType("groupEntityType")
                                 .build())
                         .build())
                 .build())
         .policyStoreId("policyStoreId")
         // the properties below are optional
         .principalEntityType("principalEntityType")
         .build();
 

See Also: