Interface CfnMemory.EpisodicOverrideReflectionConfigurationInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMemory.EpisodicOverrideReflectionConfigurationInputProperty.Jsii$Proxy
- Enclosing class:
CfnMemory
@Stability(Stable)
public static interface CfnMemory.EpisodicOverrideReflectionConfigurationInputProperty
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.*;
EpisodicOverrideReflectionConfigurationInputProperty episodicOverrideReflectionConfigurationInputProperty = EpisodicOverrideReflectionConfigurationInputProperty.builder()
.appendToPrompt("appendToPrompt")
.modelId("modelId")
// the properties below are optional
.memoryRecordSchema(MemoryRecordSchemaProperty.builder()
.metadataSchema(List.of(MetadataSchemaEntryProperty.builder()
.key("key")
// the properties below are optional
.extractionConfig(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())
.type("type")
.build()))
.build())
.namespaces(List.of("namespaces"))
.namespaceTemplates(List.of("namespaceTemplates"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMemory.EpisodicOverrideReflectionConfigurationInputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Text prompt for model instructions.default ObjectReturns union: eitherIResolvableorCfnMemory.MemoryRecordSchemaPropertyList of namespaces for memory strategy.List of namespaces for memory strategy.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppendToPrompt
Text prompt for model instructions.- See Also:
-
getModelId
- See Also:
-
getMemoryRecordSchema
Returns union: eitherIResolvableorCfnMemory.MemoryRecordSchemaProperty- See Also:
-
getNamespaces
List of namespaces for memory strategy.- See Also:
-
getNamespaceTemplates
List of namespaces for memory strategy.- See Also:
-
builder
@Stability(Stable) static CfnMemory.EpisodicOverrideReflectionConfigurationInputProperty.Builder builder()
-