Interface CfnDataAutomationProjectPropsMixin.DocumentStandardExtractionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAutomationProjectPropsMixin.DocumentStandardExtractionProperty.Jsii$Proxy
- Enclosing class:
CfnDataAutomationProjectPropsMixin
@Stability(Stable)
public static interface CfnDataAutomationProjectPropsMixin.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.cfnpropertymixins.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 forCfnDataAutomationProjectPropsMixin.DocumentStandardExtractionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBoundingBox
Whether to generate bounding boxes.Returns union: either
IResolvableorCfnDataAutomationProjectPropsMixin.DocumentBoundingBoxProperty- See Also:
-
getGranularity
Which granularities to generate data for.Returns union: either
IResolvableorCfnDataAutomationProjectPropsMixin.DocumentExtractionGranularityProperty- See Also:
-
builder
@Stability(Stable) static CfnDataAutomationProjectPropsMixin.DocumentStandardExtractionProperty.Builder builder()
-