interface TopicReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.TopicReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#TopicReference |
Java | software.amazon.awscdk.interfaces.quicksight.TopicReference |
Python | aws_cdk.interfaces.aws_quicksight.TopicReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » TopicReference |
A reference to a Topic 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_aws_quicksight } from 'aws-cdk-lib/interfaces';
const topicReference: interfaces_aws_quicksight.TopicReference = {
awsAccountId: 'awsAccountId',
topicArn: 'topicArn',
topicId: 'topicId',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AwsAccountId of the Topic resource. |
| topic | string | The ARN of the Topic resource. |
| topic | string | The TopicId of the Topic resource. |
awsAccountId
Type:
string
The AwsAccountId of the Topic resource.
topicArn
Type:
string
The ARN of the Topic resource.
topicId
Type:
string
The TopicId of the Topic resource.

.NET
Go
Java
Python
TypeScript