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 multimedia content (images, audio, and video) extracted from multimodal documents in your data source.

This content can be retrieved and returned to the end user with timestamp references for audio and video segments.

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: