interface PrincipalPrivilegesProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Glue.CfnDatabase.PrincipalPrivilegesProperty |
Java | software.amazon.awscdk.services.glue.CfnDatabase.PrincipalPrivilegesProperty |
Python | aws_cdk.aws_glue.CfnDatabase.PrincipalPrivilegesProperty |
TypeScript | @aws-cdk/aws-glue » CfnDatabase » PrincipalPrivilegesProperty |
the 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 * as glue from '@aws-cdk/aws-glue';
const principalPrivilegesProperty: glue.CfnDatabase.PrincipalPrivilegesProperty = {
permissions: ['permissions'],
principal: {
dataLakePrincipalIdentifier: 'dataLakePrincipalIdentifier',
},
};
Properties
Name | Type | Description |
---|---|---|
permissions? | string[] | The permissions that are granted to the principal. |
principal? | IResolvable | Data | The principal who is granted permissions. |
permissions?
Type:
string[]
(optional)
The permissions that are granted to the principal.
principal?
Type:
IResolvable
|
Data
(optional)
The principal who is granted permissions.