Interface CfnDataAutomationProjectPropsMixin.ImageStandardExtractionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAutomationProjectPropsMixin.ImageStandardExtractionProperty.Jsii$Proxy
- Enclosing class:
CfnDataAutomationProjectPropsMixin
@Stability(Stable)
public static interface CfnDataAutomationProjectPropsMixin.ImageStandardExtractionProperty
extends software.amazon.jsii.JsiiSerializable
Settings for generating data from images.
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.*;
ImageStandardExtractionProperty imageStandardExtractionProperty = ImageStandardExtractionProperty.builder()
.boundingBox(ImageBoundingBoxProperty.builder()
.state("state")
.build())
.category(ImageExtractionCategoryProperty.builder()
.state("state")
.types(List.of("types"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataAutomationProjectPropsMixin.ImageStandardExtractionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBoundingBox
Settings for generating bounding boxes.Returns union: either
IResolvableorCfnDataAutomationProjectPropsMixin.ImageBoundingBoxProperty- See Also:
-
getCategory
Settings for generating categorical data.Returns union: either
IResolvableorCfnDataAutomationProjectPropsMixin.ImageExtractionCategoryProperty- See Also:
-
builder
@Stability(Stable) static CfnDataAutomationProjectPropsMixin.ImageStandardExtractionProperty.Builder builder()
-