Interface CfnKnowledgeBase.SupplementalDataStorageConfigurationProperty

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

@Stability(Stable) public static interface CfnKnowledgeBase.SupplementalDataStorageConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies configurations for the storage location of the images extracted from multimodal documents in your data source.

These images can be retrieved and returned to the end user.

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.*;
 SupplementalDataStorageConfigurationProperty supplementalDataStorageConfigurationProperty = SupplementalDataStorageConfigurationProperty.builder()
         .supplementalDataStorageLocations(List.of(SupplementalDataStorageLocationProperty.builder()
                 .supplementalDataStorageLocationType("supplementalDataStorageLocationType")
                 // the properties below are optional
                 .s3Location(S3LocationProperty.builder()
                         .uri("uri")
                         .build())
                 .build()))
         .build();
 

See Also: