DataSourceReference

class aws_cdk.aws_bedrock.DataSourceReference(*, data_source_id, knowledge_base_id)

Bases: object

A reference to a DataSource resource.

Parameters:
  • data_source_id (str) – The DataSourceId of the DataSource resource.

  • knowledge_base_id (str) – The KnowledgeBaseId of the DataSource resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_bedrock as bedrock

data_source_reference = bedrock.DataSourceReference(
    data_source_id="dataSourceId",
    knowledge_base_id="knowledgeBaseId"
)

Attributes

data_source_id

The DataSourceId of the DataSource resource.

knowledge_base_id

The KnowledgeBaseId of the DataSource resource.