interface CfnKnowledgeBaseProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnKnowledgeBaseProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnKnowledgeBaseProps |
Java | software.amazon.awscdk.services.quicksight.CfnKnowledgeBaseProps |
Python | aws_cdk.aws_quicksight.CfnKnowledgeBaseProps |
TypeScript | aws-cdk-lib » aws_quicksight » CfnKnowledgeBaseProps |
Properties for defining a CfnKnowledgeBase.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
declare const template: any;
const cfnKnowledgeBaseProps: quicksight.CfnKnowledgeBaseProps = {
awsAccountId: 'awsAccountId',
dataSourceArn: 'dataSourceArn',
knowledgeBaseConfiguration: {
templateConfiguration: {
template: template,
},
},
knowledgeBaseId: 'knowledgeBaseId',
name: 'name',
// the properties below are optional
accessControlConfiguration: {
isAclEnabled: false,
},
description: 'description',
isEmailNotificationOptedForIngestionFailures: false,
mediaExtractionConfiguration: {
audioExtractionConfiguration: {
audioExtractionStatus: 'audioExtractionStatus',
},
imageExtractionConfiguration: {
imageExtractionStatus: 'imageExtractionStatus',
},
videoExtractionConfiguration: {
videoExtractionStatus: 'videoExtractionStatus',
// the properties below are optional
videoExtractionType: 'videoExtractionType',
},
},
permissions: [{
actions: ['actions'],
principal: 'principal',
// the properties below are optional
resource: 'resource',
}],
primaryOwnerArn: 'primaryOwnerArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | |
| data | string | |
| knowledge | IResolvable | Knowledge | |
| knowledge | string | |
| name | string | |
| access | IResolvable | Access | |
| description? | string | |
| is | boolean | IResolvable | |
| media | IResolvable | Media | |
| permissions? | IResolvable | (IResolvable | Resource)[] | |
| primary | string | |
| tags? | Cfn[] |
awsAccountId
Type:
string
dataSourceArn
Type:
string
knowledgeBaseConfiguration
Type:
IResolvable | Knowledge
knowledgeBaseId
Type:
string
name
Type:
string
accessControlConfiguration?
Type:
IResolvable | Access
(optional)
description?
Type:
string
(optional)
isEmailNotificationOptedForIngestionFailures?
Type:
boolean | IResolvable
(optional)
mediaExtractionConfiguration?
Type:
IResolvable | Media
(optional)
permissions?
Type:
IResolvable | (IResolvable | Resource)[]
(optional)
primaryOwnerArn?
Type:
string
(optional)
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript