KnowledgeBaseReference

class aws_cdk.interfaces.aws_quicksight.KnowledgeBaseReference(*, aws_account_id, knowledge_base_arn, knowledge_base_id)

Bases: object

A reference to a KnowledgeBase resource.

Parameters:
  • aws_account_id (str) – The AwsAccountId of the KnowledgeBase resource.

  • knowledge_base_arn (str) – The ARN of the KnowledgeBase resource.

  • knowledge_base_id (str) – The KnowledgeBaseId of the KnowledgeBase 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.interfaces import aws_quicksight as interfaces_quicksight

knowledge_base_reference = interfaces_quicksight.KnowledgeBaseReference(
    aws_account_id="awsAccountId",
    knowledge_base_arn="knowledgeBaseArn",
    knowledge_base_id="knowledgeBaseId"
)

Attributes

aws_account_id

The AwsAccountId of the KnowledgeBase resource.

knowledge_base_arn

The ARN of the KnowledgeBase resource.

knowledge_base_id

The KnowledgeBaseId of the KnowledgeBase resource.