interface DataLocationResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LakeFormation.Mixins.CfnPermissionsPropsMixin.DataLocationResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslakeformation/mixins#CfnPermissionsPropsMixin_DataLocationResourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.lakeformation.mixins.CfnPermissionsPropsMixin.DataLocationResourceProperty |
Python | aws_cdk.mixins_preview.aws_lakeformation.mixins.CfnPermissionsPropsMixin.DataLocationResourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lakeformation » mixins » 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 { mixins as lakeformation_mixins } from '@aws-cdk/mixins-preview/aws-lakeformation';
const dataLocationResourceProperty: lakeformation_mixins.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