Interface CfnKnowledgeBasePropsMixin.SupplementalDataStorageConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnKnowledgeBasePropsMixin.SupplementalDataStorageConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnKnowledgeBasePropsMixin
@Stability(Stable)
public static interface CfnKnowledgeBasePropsMixin.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.cfnpropertymixins.services.bedrock.*;
SupplementalDataStorageConfigurationProperty supplementalDataStorageConfigurationProperty = SupplementalDataStorageConfigurationProperty.builder()
.supplementalDataStorageLocations(List.of(SupplementalDataStorageLocationProperty.builder()
.s3Location(S3LocationProperty.builder()
.uri("uri")
.build())
.supplementalDataStorageLocationType("supplementalDataStorageLocationType")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnKnowledgeBasePropsMixin.SupplementalDataStorageConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSupplementalDataStorageLocations
List of supplemental data storage locations.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnKnowledgeBasePropsMixin.SupplementalDataStorageLocationProperty>- See Also:
-
builder
@Stability(Stable) static CfnKnowledgeBasePropsMixin.SupplementalDataStorageConfigurationProperty.Builder builder()
-