AnalysisTemplateReference

class aws_cdk.aws_cleanrooms.AnalysisTemplateReference(*, analysis_template_arn, analysis_template_identifier, membership_identifier)

Bases: object

A reference to a AnalysisTemplate resource.

Parameters:
  • analysis_template_arn (str) – The ARN of the AnalysisTemplate resource.

  • analysis_template_identifier (str) – The AnalysisTemplateIdentifier of the AnalysisTemplate resource.

  • membership_identifier (str) – The MembershipIdentifier of the AnalysisTemplate 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_cleanrooms as cleanrooms

analysis_template_reference = cleanrooms.AnalysisTemplateReference(
    analysis_template_arn="analysisTemplateArn",
    analysis_template_identifier="analysisTemplateIdentifier",
    membership_identifier="membershipIdentifier"
)

Attributes

analysis_template_arn

The ARN of the AnalysisTemplate resource.

analysis_template_identifier

The AnalysisTemplateIdentifier of the AnalysisTemplate resource.

membership_identifier

The MembershipIdentifier of the AnalysisTemplate resource.