interface DatabaseResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.LakeFormation.CfnTagAssociation.DatabaseResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslakeformation#CfnTagAssociation_DatabaseResourceProperty |
Java | software.amazon.awscdk.services.lakeformation.CfnTagAssociation.DatabaseResourceProperty |
Python | aws_cdk.aws_lakeformation.CfnTagAssociation.DatabaseResourceProperty |
TypeScript | aws-cdk-lib » aws_lakeformation » CfnTagAssociation » 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 { aws_lakeformation as lakeformation } from 'aws-cdk-lib';
const databaseResourceProperty: lakeformation.CfnTagAssociation.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
The identifier for the Data Catalog .
By default, it should be the account ID of the caller.
name
Type:
string
The name of the database resource.
Unique to the Data Catalog.

.NET
Go
Java
Python
TypeScript