interface SupplementalDataStorageLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnKnowledgeBasePropsMixin.SupplementalDataStorageLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnKnowledgeBasePropsMixin_SupplementalDataStorageLocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnKnowledgeBasePropsMixin.SupplementalDataStorageLocationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnKnowledgeBasePropsMixin.SupplementalDataStorageLocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnKnowledgeBasePropsMixin » SupplementalDataStorageLocationProperty |
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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const supplementalDataStorageLocationProperty: bedrock_mixins.CfnKnowledgeBasePropsMixin.SupplementalDataStorageLocationProperty = {
s3Location: {
uri: 'uri',
},
supplementalDataStorageLocationType: 'supplementalDataStorageLocationType',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | Contains information about the Amazon S3 location for the extracted multimedia content. |
| supplemental | string | Supplemental data storage location type. |
s3Location?
Type:
IResolvable | S3
(optional)
Contains information about the Amazon S3 location for the extracted multimedia content.
supplementalDataStorageLocationType?
Type:
string
(optional)
Supplemental data storage location type.

.NET
Go
Java
Python
TypeScript