interface ImageStandardOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataAutomationProjectPropsMixin.ImageStandardOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataAutomationProjectPropsMixin_ImageStandardOutputConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataAutomationProjectPropsMixin.ImageStandardOutputConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataAutomationProjectPropsMixin.ImageStandardOutputConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnDataAutomationProjectPropsMixin » 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/cfn-property-mixins';
const imageStandardOutputConfigurationProperty: bedrock.CfnDataAutomationProjectPropsMixin.ImageStandardOutputConfigurationProperty = {
extraction: {
boundingBox: {
state: 'state',
},
category: {
state: 'state',
types: ['types'],
},
},
generativeField: {
state: 'state',
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