interface PrincipalPermissionsReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.LakeFormation.PrincipalPermissionsReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslakeformation#PrincipalPermissionsReference |
Java | software.amazon.awscdk.interfaces.lakeformation.PrincipalPermissionsReference |
Python | aws_cdk.interfaces.aws_lakeformation.PrincipalPermissionsReference |
TypeScript | aws-cdk-lib » interfaces » aws_lakeformation » PrincipalPermissionsReference |
A reference to a PrincipalPermissions resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lakeformation as interfaces_aws_lakeformation } from 'aws-cdk-lib/interfaces';
const principalPermissionsReference: interfaces_aws_lakeformation.PrincipalPermissionsReference = {
principalIdentifier: 'principalIdentifier',
resourceIdentifier: 'resourceIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| principal | string | The PrincipalIdentifier of the PrincipalPermissions resource. |
| resource | string | The ResourceIdentifier of the PrincipalPermissions resource. |
principalIdentifier
Type:
string
The PrincipalIdentifier of the PrincipalPermissions resource.
resourceIdentifier
Type:
string
The ResourceIdentifier of the PrincipalPermissions resource.

.NET
Go
Java
Python
TypeScript