Interface CfnDataLakeSettings.PrincipalPermissionsProperty

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

@Stability(Stable) public static interface CfnDataLakeSettings.PrincipalPermissionsProperty extends software.amazon.jsii.JsiiSerializable
Permissions granted to a principal.

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.lakeformation.*;
 PrincipalPermissionsProperty principalPermissionsProperty = PrincipalPermissionsProperty.builder()
         .permissions(List.of("permissions"))
         .principal(DataLakePrincipalProperty.builder()
                 .dataLakePrincipalIdentifier("dataLakePrincipalIdentifier")
                 .build())
         .build();