interface CfnTopicV2Props
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTopicV2Props |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTopicV2Props |
Java | software.amazon.awscdk.services.quicksight.CfnTopicV2Props |
Python | aws_cdk.aws_quicksight.CfnTopicV2Props |
TypeScript | aws-cdk-lib » aws_quicksight » CfnTopicV2Props |
Properties for defining a CfnTopicV2.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-topicv2.html
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';
const cfnTopicV2Props: quicksight.CfnTopicV2Props = {
awsAccountId: 'awsAccountId',
customInstructions: {
customInstructionsString: 'customInstructionsString',
},
dataSetRelations: [{
left: {
columnNames: ['columnNames'],
dataSetArn: 'dataSetArn',
},
right: {
columnNames: ['columnNames'],
dataSetArn: 'dataSetArn',
},
}],
dataSets: [{
dataSetArn: 'dataSetArn',
// the properties below are optional
dataSetName: 'dataSetName',
}],
description: 'description',
folderArns: ['folderArns'],
name: 'name',
permissions: [{
actions: ['actions'],
principal: 'principal',
}],
tags: [{
key: 'key',
value: 'value',
}],
topicId: 'topicId',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | |
| custom | IResolvable | Custom | |
| data | IResolvable | (IResolvable | Data)[] | |
| data | IResolvable | (IResolvable | Data)[] | |
| description? | string | |
| folder | string[] | |
| name? | string | |
| permissions? | IResolvable | (IResolvable | Resource)[] | |
| tags? | Cfn[] | |
| topic | string |
awsAccountId?
Type:
string
(optional)
customInstructions?
Type:
IResolvable | Custom
(optional)
dataSetRelations?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
dataSets?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
description?
Type:
string
(optional)
folderArns?
Type:
string[]
(optional)
name?
Type:
string
(optional)
permissions?
Type:
IResolvable | (IResolvable | Resource)[]
(optional)
tags?
Type:
Cfn[]
(optional)
topicId?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript