interface SupplementalDataStorageConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnKnowledgeBase.SupplementalDataStorageConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnKnowledgeBase_SupplementalDataStorageConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnKnowledgeBase.SupplementalDataStorageConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnKnowledgeBase.SupplementalDataStorageConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnKnowledgeBase » SupplementalDataStorageConfigurationProperty |
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 { aws_bedrock as bedrock } from 'aws-cdk-lib';
const supplementalDataStorageConfigurationProperty: bedrock.CfnKnowledgeBase.SupplementalDataStorageConfigurationProperty = {
supplementalDataStorageLocations: [{
supplementalDataStorageLocationType: 'supplementalDataStorageLocationType',
// the properties below are optional
s3Location: {
uri: 'uri',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| supplemental | IResolvable | (IResolvable | Supplemental)[] | List of supplemental data storage locations. |
supplementalDataStorageLocations
Type:
IResolvable | (IResolvable | Supplemental)[]
List of supplemental data storage locations.

.NET
Go
Java
Python
TypeScript