interface PrincipalPrivilegesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnDatabasePropsMixin.PrincipalPrivilegesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnDatabasePropsMixin_PrincipalPrivilegesProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnDatabasePropsMixin.PrincipalPrivilegesProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnDatabasePropsMixin.PrincipalPrivilegesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnDatabasePropsMixin » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const principalPrivilegesProperty: glue_mixins.CfnDatabasePropsMixin.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.

.NET
Go
Java
Python
TypeScript