interface ImageStandardOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnDataAutomationProject.ImageStandardOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_ImageStandardOutputConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.ImageStandardOutputConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.ImageStandardOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » ImageStandardOutputConfigurationProperty |
Output settings for processing 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 imageStandardOutputConfigurationProperty: bedrock.CfnDataAutomationProject.ImageStandardOutputConfigurationProperty = {
extraction: {
boundingBox: {
state: 'state',
},
category: {
state: 'state',
// the properties below are optional
types: ['types'],
},
},
generativeField: {
state: 'state',
// the properties below are optional
types: ['types'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| extraction? | IResolvable | Image | Settings for populating data fields that describe the image. |
| generative | IResolvable | Image | Whether to generate descriptions of the data. |
extraction?
Type:
IResolvable | Image
(optional)
Settings for populating data fields that describe the image.
generativeField?
Type:
IResolvable | Image
(optional)
Whether to generate descriptions of the data.

.NET
Go
Java
Python
TypeScript