interface DatabaseResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LakeFormation.Mixins.CfnPermissionsPropsMixin.DatabaseResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslakeformation/mixins#CfnPermissionsPropsMixin_DatabaseResourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.lakeformation.mixins.CfnPermissionsPropsMixin.DatabaseResourceProperty |
Python | aws_cdk.mixins_preview.aws_lakeformation.mixins.CfnPermissionsPropsMixin.DatabaseResourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lakeformation » mixins » CfnPermissionsPropsMixin » DatabaseResourceProperty |
A structure for the database object.
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 databaseResourceProperty: lakeformation_mixins.CfnPermissionsPropsMixin.DatabaseResourceProperty = {
catalogId: 'catalogId',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The identifier for the Data Catalog . |
| name? | string | The name of the database resource. |
catalogId?
Type:
string
(optional)
The identifier for the Data Catalog .
By default, it is the account ID of the caller.
name?
Type:
string
(optional)
The name of the database resource.
Unique to the Data Catalog.

.NET
Go
Java
Python
TypeScript