interface DataSourceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.DataSourceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#DataSourceReference |
Java | software.amazon.awscdk.services.bedrock.DataSourceReference |
Python | aws_cdk.aws_bedrock.DataSourceReference |
TypeScript | aws-cdk-lib » aws_bedrock » DataSourceReference |
A reference to a DataSource resource.
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 dataSourceReference: bedrock.DataSourceReference = {
dataSourceId: 'dataSourceId',
knowledgeBaseId: 'knowledgeBaseId',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The DataSourceId of the DataSource resource. |
| knowledge | string | The KnowledgeBaseId of the DataSource resource. |
dataSourceId
Type:
string
The DataSourceId of the DataSource resource.
knowledgeBaseId
Type:
string
The KnowledgeBaseId of the DataSource resource.

.NET
Go
Java
Python
TypeScript