TemplateReference
- class aws_cdk.aws_quicksight.TemplateReference(*, aws_account_id, template_arn, template_id)
Bases:
object
A reference to a Template resource.
- Parameters:
aws_account_id (
str
) – The AwsAccountId of the Template resource.template_arn (
str
) – The ARN of the Template resource.template_id (
str
) – The TemplateId of the Template 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 template_reference = quicksight.TemplateReference( aws_account_id="awsAccountId", template_arn="templateArn", template_id="templateId" )
Attributes
- aws_account_id
The AwsAccountId of the Template resource.
- template_arn
The ARN of the Template resource.
- template_id
The TemplateId of the Template resource.