interface ResourceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.LakeFormation.ResourceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslakeformation#ResourceReference |
Java | software.amazon.awscdk.interfaces.lakeformation.ResourceReference |
Python | aws_cdk.interfaces.aws_lakeformation.ResourceReference |
TypeScript | aws-cdk-lib » interfaces » aws_lakeformation » ResourceReference |
A reference to a Resource resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lakeformation as interfaces_aws_lakeformation } from 'aws-cdk-lib/interfaces';
const resourceReference: interfaces_aws_lakeformation.ResourceReference = {
resourceId: 'resourceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The Id of the Resource resource. |
resourceId
Type:
string
The Id of the Resource resource.

.NET
Go
Java
Python
TypeScript