Interface CfnKnowledgeBase.SupplementalDataStorageLocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnKnowledgeBase.SupplementalDataStorageLocationProperty.Jsii$Proxy
- Enclosing class:
CfnKnowledgeBase
@Stability(Stable)
public static interface CfnKnowledgeBase.SupplementalDataStorageLocationProperty
extends software.amazon.jsii.JsiiSerializable
Contains information about a storage location for multimedia content (images, audio, and video) extracted from multimodal documents in your data source.
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.*;
SupplementalDataStorageLocationProperty supplementalDataStorageLocationProperty = SupplementalDataStorageLocationProperty.builder()
.supplementalDataStorageLocationType("supplementalDataStorageLocationType")
// the properties below are optional
.s3Location(S3LocationProperty.builder()
.uri("uri")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnKnowledgeBase.SupplementalDataStorageLocationPropertystatic final classAn implementation forCfnKnowledgeBase.SupplementalDataStorageLocationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSupplementalDataStorageLocationType
Supplemental data storage location type.- See Also:
-
getS3Location
Contains information about the Amazon S3 location for the extracted multimedia content.Returns union: either
IResolvableorCfnKnowledgeBase.S3LocationProperty- See Also:
-
builder
@Stability(Stable) static CfnKnowledgeBase.SupplementalDataStorageLocationProperty.Builder builder()
-