TopicReference

class aws_cdk.aws_quicksight.TopicReference(*, aws_account_id, topic_arn, topic_id)

Bases: object

A reference to a Topic resource.

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

  • topic_arn (str) – The ARN of the Topic resource.

  • topic_id (str) – The TopicId of the Topic 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 import aws_quicksight as quicksight

topic_reference = quicksight.TopicReference(
    aws_account_id="awsAccountId",
    topic_arn="topicArn",
    topic_id="topicId"
)

Attributes

aws_account_id

The AwsAccountId of the Topic resource.

topic_arn

The ARN of the Topic resource.

topic_id

The TopicId of the Topic resource.