interface DataLocationResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LakeFormation.CfnPermissionsPropsMixin.DataLocationResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslakeformation#CfnPermissionsPropsMixin_DataLocationResourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lakeformation.CfnPermissionsPropsMixin.DataLocationResourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_lakeformation.CfnPermissionsPropsMixin.DataLocationResourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lakeformation » CfnPermissionsPropsMixin » 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.CfnPermissionsPropsMixin.DataLocationResourceProperty = {
catalogId: 'catalogId',
s3Resource: 's3Resource',
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The identifier for the Data Catalog . |
| s3 | string | The Amazon Resource Name (ARN) that uniquely identifies the data location resource. |
catalogId?
Type:
string
(optional)
The identifier for the Data Catalog .
By default, it is the account ID of the caller.
s3Resource?
Type:
string
(optional)
The Amazon Resource Name (ARN) that uniquely identifies the data location resource.

.NET
Go
Java
Python
TypeScript