interface EntityTypeInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnDataAutomationLibrary.EntityTypeInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationLibrary_EntityTypeInfoProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationLibrary.EntityTypeInfoProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationLibrary.EntityTypeInfoProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationLibrary » EntityTypeInfoProperty |
Information about an entity type in the DataAutomationLibrary.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const entityTypeInfoProperty: bedrock.CfnDataAutomationLibrary.EntityTypeInfoProperty = {
entityType: 'entityType',
// the properties below are optional
entityMetadata: 'entityMetadata',
};
Properties
| Name | Type | Description |
|---|---|---|
| entity | string | Entity types supported in DataAutomationLibraries. |
| entity | string | JSON string representing relevant metadata for the entity type. |
entityType
Type:
string
Entity types supported in DataAutomationLibraries.
entityMetadata?
Type:
string
(optional)
JSON string representing relevant metadata for the entity type.

.NET
Go
Java
Python
TypeScript