interface CustomEntityTypeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Glue.CustomEntityTypeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsglue#CustomEntityTypeReference |
Java | software.amazon.awscdk.interfaces.glue.CustomEntityTypeReference |
Python | aws_cdk.interfaces.aws_glue.CustomEntityTypeReference |
TypeScript | aws-cdk-lib » interfaces » aws_glue » CustomEntityTypeReference |
A reference to a CustomEntityType resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as interfaces_aws_glue } from 'aws-cdk-lib/interfaces';
const customEntityTypeReference: interfaces_aws_glue.CustomEntityTypeReference = {
customEntityTypeId: 'customEntityTypeId',
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | string | The Id of the CustomEntityType resource. |
customEntityTypeId
Type:
string
The Id of the CustomEntityType resource.

.NET
Go
Java
Python
TypeScript