Interface CfnCatalog.PrincipalPermissionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCatalog.PrincipalPermissionsProperty.Jsii$Proxy
- Enclosing class:
CfnCatalog
@Stability(Stable)
public static interface CfnCatalog.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.glue.*;
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 forCfnCatalog.PrincipalPermissionsPropertystatic final classAn implementation forCfnCatalog.PrincipalPermissionsProperty -
Method Summary
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 Lake Formation principal.Returns union: either
IResolvableorCfnCatalog.DataLakePrincipalProperty- See Also:
-
builder
-