interface DocumentStandardExtractionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnDataAutomationProject.DocumentStandardExtractionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_DocumentStandardExtractionProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.DocumentStandardExtractionProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.DocumentStandardExtractionProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » DocumentStandardExtractionProperty |
Settings for generating data from 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 documentStandardExtractionProperty: bedrock.CfnDataAutomationProject.DocumentStandardExtractionProperty = {
boundingBox: {
state: 'state',
},
granularity: {
types: ['types'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bounding | IResolvable | Document | Whether to generate bounding boxes. |
| granularity | IResolvable | Document | Which granularities to generate data for. |
boundingBox
Type:
IResolvable | Document
Whether to generate bounding boxes.
granularity
Type:
IResolvable | Document
Which granularities to generate data for.

.NET
Go
Java
Python
TypeScript