interface KnowledgeBaseReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.KnowledgeBaseReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#KnowledgeBaseReference |
Java | software.amazon.awscdk.interfaces.quicksight.KnowledgeBaseReference |
Python | aws_cdk.interfaces.aws_quicksight.KnowledgeBaseReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » KnowledgeBaseReference |
A reference to a KnowledgeBase resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as interfaces_quicksight } from 'aws-cdk-lib/interfaces';
const knowledgeBaseReference: interfaces_quicksight.KnowledgeBaseReference = {
awsAccountId: 'awsAccountId',
knowledgeBaseArn: 'knowledgeBaseArn',
knowledgeBaseId: 'knowledgeBaseId',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AwsAccountId of the KnowledgeBase resource. |
| knowledge | string | The ARN of the KnowledgeBase resource. |
| knowledge | string | The KnowledgeBaseId of the KnowledgeBase resource. |
awsAccountId
Type:
string
The AwsAccountId of the KnowledgeBase resource.
knowledgeBaseArn
Type:
string
The ARN of the KnowledgeBase resource.
knowledgeBaseId
Type:
string
The KnowledgeBaseId of the KnowledgeBase resource.

.NET
Go
Java
Python
TypeScript