interface ImageExtractionCategoryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnDataAutomationProject.ImageExtractionCategoryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_ImageExtractionCategoryProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.ImageExtractionCategoryProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.ImageExtractionCategoryProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » ImageExtractionCategoryProperty |
Settings for generating categorical data from images.
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 imageExtractionCategoryProperty: bedrock.CfnDataAutomationProject.ImageExtractionCategoryProperty = {
state: 'state',
// the properties below are optional
types: ['types'],
};
Properties
| Name | Type | Description |
|---|---|---|
| state | string | Whether generating categorical data from images is enabled. |
| types? | string[] | The types of data to generate. |
state
Type:
string
Whether generating categorical data from images is enabled.
types?
Type:
string[]
(optional)
The types of data to generate.

.NET
Go
Java
Python
TypeScript