Class CfnCatalog.PrincipalPermissionsProperty
Permissions granted to a principal.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCatalog.PrincipalPermissionsProperty : CfnCatalog.IPrincipalPermissionsProperty
Syntax (vb)
Public Class CfnCatalog.PrincipalPermissionsProperty Implements CfnCatalog.IPrincipalPermissionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Glue;
var principalPermissionsProperty = new PrincipalPermissionsProperty {
Permissions = new [] { "permissions" },
Principal = new DataLakePrincipalProperty {
DataLakePrincipalIdentifier = "dataLakePrincipalIdentifier"
}
};
Synopsis
Constructors
| PrincipalPermissionsProperty() | Permissions granted to a principal. |
Properties
| Permissions | The permissions that are granted to the principal. |
| Principal | The Lake Formation principal. |
Constructors
PrincipalPermissionsProperty()
Permissions granted to a principal.
public PrincipalPermissionsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Glue;
var principalPermissionsProperty = new PrincipalPermissionsProperty {
Permissions = new [] { "permissions" },
Principal = new DataLakePrincipalProperty {
DataLakePrincipalIdentifier = "dataLakePrincipalIdentifier"
}
};
Properties
Permissions
The permissions that are granted to the principal.
public string[]? Permissions { get; set; }
Property Value
string[]
Remarks
Principal
The Lake Formation principal.
public object? Principal { get; set; }