interface TableResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LakeFormation.Mixins.CfnPermissionsPropsMixin.TableResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslakeformation/mixins#CfnPermissionsPropsMixin_TableResourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.lakeformation.mixins.CfnPermissionsPropsMixin.TableResourceProperty |
Python | aws_cdk.mixins_preview.aws_lakeformation.mixins.CfnPermissionsPropsMixin.TableResourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lakeformation » mixins » CfnPermissionsPropsMixin » TableResourceProperty |
A structure for the table object.
A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal.
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 tableResourceProperty: lakeformation_mixins.CfnPermissionsPropsMixin.TableResourceProperty = {
catalogId: 'catalogId',
databaseName: 'databaseName',
name: 'name',
tableWildcard: { },
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The identifier for the Data Catalog . |
| database | string | The name of the database for the table. |
| name? | string | The name of the table. |
| table | IResolvable | Table | An empty object representing all tables under a database. |
catalogId?
Type:
string
(optional)
The identifier for the Data Catalog .
By default, it is the account ID of the caller.
databaseName?
Type:
string
(optional)
The name of the database for the table.
Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
name?
Type:
string
(optional)
The name of the table.
tableWildcard?
Type:
IResolvable | Table
(optional)
An empty object representing all tables under a database.
If this field is specified instead of the Name field, all tables under DatabaseName will have permission changes applied.

.NET
Go
Java
Python
TypeScript