Interface CfnMemory.ExtractionConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMemory.ExtractionConfigProperty.Jsii$Proxy
Enclosing class:
CfnMemory

@Stability(Stable) public static interface CfnMemory.ExtractionConfigProperty extends software.amazon.jsii.JsiiSerializable
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.bedrockagentcore.*;
 ExtractionConfigProperty extractionConfigProperty = ExtractionConfigProperty.builder()
         .llmExtractionConfig(LlmExtractionConfigProperty.builder()
                 .definition("definition")
                 // the properties below are optional
                 .llmExtractionInstruction("llmExtractionInstruction")
                 .validation(ValidationProperty.builder()
                         .numberValidation(NumberValidationProperty.builder()
                                 .maxValue(123)
                                 .minValue(123)
                                 .build())
                         .stringListValidation(StringListValidationProperty.builder()
                                 .allowedValues(List.of("allowedValues"))
                                 .maxItems(123)
                                 .build())
                         .stringValidation(StringValidationProperty.builder()
                                 .allowedValues(List.of("allowedValues"))
                                 .build())
                         .build())
                 .build())
         .build();
 

See Also: