Interface CfnDataAutomationProject.DocumentStandardExtractionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAutomationProject.DocumentStandardExtractionProperty.Jsii$Proxy
- Enclosing class:
CfnDataAutomationProject
@Stability(Stable)
public static interface CfnDataAutomationProject.DocumentStandardExtractionProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrock.*;
DocumentStandardExtractionProperty documentStandardExtractionProperty = DocumentStandardExtractionProperty.builder()
.boundingBox(DocumentBoundingBoxProperty.builder()
.state("state")
.build())
.granularity(DocumentExtractionGranularityProperty.builder()
.types(List.of("types"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataAutomationProject.DocumentStandardExtractionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Whether to generate bounding boxes.Which granularities to generate data for.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBoundingBox
Whether to generate bounding boxes.Returns union: either
IResolvableorCfnDataAutomationProject.DocumentBoundingBoxProperty- See Also:
-
getGranularity
Which granularities to generate data for.Returns union: either
IResolvableorCfnDataAutomationProject.DocumentExtractionGranularityProperty- See Also:
-
builder
@Stability(Stable) static CfnDataAutomationProject.DocumentStandardExtractionProperty.Builder builder()
-