interface DataLocationResourceProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.LakeFormation.CfnPrincipalPermissions.DataLocationResourceProperty | 
  Java | software.amazon.awscdk.services.lakeformation.CfnPrincipalPermissions.DataLocationResourceProperty | 
  Python | aws_cdk.aws_lakeformation.CfnPrincipalPermissions.DataLocationResourceProperty | 
  TypeScript  | @aws-cdk/aws-lakeformation » CfnPrincipalPermissions » DataLocationResourceProperty | 
A structure for a data location object where permissions are granted or revoked.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as lakeformation from '@aws-cdk/aws-lakeformation';
const dataLocationResourceProperty: lakeformation.CfnPrincipalPermissions.DataLocationResourceProperty = {
  catalogId: 'catalogId',
  resourceArn: 'resourceArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| catalog | string | The identifier for the Data Catalog where the location is registered with AWS Lake Formation . | 
| resource | string | The Amazon Resource Name (ARN) that uniquely identifies the data location resource. | 
catalogId
Type:
string
The identifier for the Data Catalog where the location is registered with AWS Lake Formation .
resourceArn
Type:
string
The Amazon Resource Name (ARN) that uniquely identifies the data location resource.

 .NET
 Java
 Python
 TypeScript