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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataLakeSettings.PrincipalPermissionsPropertystatic final classAn implementation forCfnDataLakeSettings.PrincipalPermissionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The permissions that are granted to the principal.The principal who is granted permissions.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPermissions
The permissions that are granted to the principal.- See Also:
-
getPrincipal
The principal who is granted permissions.Returns union: either
IResolvableorCfnDataLakeSettings.DataLakePrincipalProperty- See Also:
-
builder
-