interface DocumentStandardOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataAutomationProjectPropsMixin.DocumentStandardOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataAutomationProjectPropsMixin_DocumentStandardOutputConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataAutomationProjectPropsMixin.DocumentStandardOutputConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataAutomationProjectPropsMixin.DocumentStandardOutputConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnDataAutomationProjectPropsMixin » DocumentStandardOutputConfigurationProperty |
Output settings for processing documents.
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 documentStandardOutputConfigurationProperty: bedrock.CfnDataAutomationProjectPropsMixin.DocumentStandardOutputConfigurationProperty = {
extraction: {
boundingBox: {
state: 'state',
},
granularity: {
types: ['types'],
},
},
generativeField: {
state: 'state',
},
outputFormat: {
additionalFileFormat: {
state: 'state',
},
textFormat: {
types: ['types'],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| extraction? | IResolvable | Document | Settings for populating data fields that describe the document. |
| generative | IResolvable | Document | Whether to generate descriptions. |
| output | IResolvable | Document | The output format to generate. |
extraction?
Type:
IResolvable | Document
(optional)
Settings for populating data fields that describe the document.
generativeField?
Type:
IResolvable | Document
(optional)
Whether to generate descriptions.
outputFormat?
Type:
IResolvable | Document
(optional)
The output format to generate.

.NET
Go
Java
Python
TypeScript