interface DataLocationResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LakeFormation.CfnPrincipalPermissionsPropsMixin.DataLocationResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslakeformation#CfnPrincipalPermissionsPropsMixin_DataLocationResourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lakeformation.CfnPrincipalPermissionsPropsMixin.DataLocationResourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_lakeformation.CfnPrincipalPermissionsPropsMixin.DataLocationResourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lakeformation » CfnPrincipalPermissionsPropsMixin » 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 { aws_lakeformation as lakeformation } from '@aws-cdk/cfn-property-mixins';
const dataLocationResourceProperty: lakeformation.CfnPrincipalPermissionsPropsMixin.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
(optional)
The identifier for the Data Catalog where the location is registered with AWS Lake Formation .
resourceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) that uniquely identifies the data location resource.

.NET
Go
Java
Python
TypeScript