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 the images extracted from multimodal documents in your data source.
These images can be retrieved and returned to the end user.
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