interface SupplementalDataStorageLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnKnowledgeBase.SupplementalDataStorageLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnKnowledgeBase_SupplementalDataStorageLocationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnKnowledgeBase.SupplementalDataStorageLocationProperty |
Python | aws_cdk.aws_bedrock.CfnKnowledgeBase.SupplementalDataStorageLocationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnKnowledgeBase » SupplementalDataStorageLocationProperty |
Contains information about a storage location for images 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 { aws_bedrock as bedrock } from 'aws-cdk-lib';
const supplementalDataStorageLocationProperty: bedrock.CfnKnowledgeBase.SupplementalDataStorageLocationProperty = {
supplementalDataStorageLocationType: 'supplementalDataStorageLocationType',
// the properties below are optional
s3Location: {
uri: 'uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| supplemental | string | Supplemental data storage location type. |
| s3 | IResolvable | S3 | Contains information about the Amazon S3 location for the extracted images. |
supplementalDataStorageLocationType
Type:
string
Supplemental data storage location type.
s3Location?
Type:
IResolvable | S3
(optional)
Contains information about the Amazon S3 location for the extracted images.

.NET
Go
Java
Python
TypeScript