interface SupplementalDataStorageConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnKnowledgeBasePropsMixin.SupplementalDataStorageConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnKnowledgeBasePropsMixin_SupplementalDataStorageConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnKnowledgeBasePropsMixin.SupplementalDataStorageConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnKnowledgeBasePropsMixin.SupplementalDataStorageConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnKnowledgeBasePropsMixin » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const supplementalDataStorageConfigurationProperty: bedrock_mixins.CfnKnowledgeBasePropsMixin.SupplementalDataStorageConfigurationProperty = {
supplementalDataStorageLocations: [{
s3Location: {
uri: 'uri',
},
supplementalDataStorageLocationType: 'supplementalDataStorageLocationType',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| supplemental | IResolvable | (IResolvable | Supplemental)[] | List of supplemental data storage locations. |
supplementalDataStorageLocations?
Type:
IResolvable | (IResolvable | Supplemental)[]
(optional)
List of supplemental data storage locations.

.NET
Go
Java
Python
TypeScript