Interface CfnKnowledgeBasePropsMixin.SupplementalDataStorageLocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnKnowledgeBasePropsMixin.SupplementalDataStorageLocationProperty.Jsii$Proxy
- Enclosing class:
CfnKnowledgeBasePropsMixin
@Stability(Stable)
public static interface CfnKnowledgeBasePropsMixin.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.cfnpropertymixins.services.bedrock.*;
SupplementalDataStorageLocationProperty supplementalDataStorageLocationProperty = SupplementalDataStorageLocationProperty.builder()
.s3Location(S3LocationProperty.builder()
.uri("uri")
.build())
.supplementalDataStorageLocationType("supplementalDataStorageLocationType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnKnowledgeBasePropsMixin.SupplementalDataStorageLocationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Location
Contains information about the Amazon S3 location for the extracted multimedia content.Returns union: either
IResolvableorCfnKnowledgeBasePropsMixin.S3LocationProperty- See Also:
-
getSupplementalDataStorageLocationType
Supplemental data storage location type.- See Also:
-
builder
@Stability(Stable) static CfnKnowledgeBasePropsMixin.SupplementalDataStorageLocationProperty.Builder builder()
-