interface DocumentStandardOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnDataAutomationProject.DocumentStandardOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_DocumentStandardOutputConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.DocumentStandardOutputConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.DocumentStandardOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » 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-lib';
const documentStandardOutputConfigurationProperty: bedrock.CfnDataAutomationProject.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