InAppTemplateReference

class aws_cdk.aws_pinpoint.InAppTemplateReference(*, in_app_template_arn, template_name)

Bases: object

A reference to a InAppTemplate resource.

Parameters:
  • in_app_template_arn (str) – The ARN of the InAppTemplate resource.

  • template_name (str) – The TemplateName of the InAppTemplate 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_pinpoint as pinpoint

in_app_template_reference = pinpoint.InAppTemplateReference(
    in_app_template_arn="inAppTemplateArn",
    template_name="templateName"
)

Attributes

in_app_template_arn

The ARN of the InAppTemplate resource.

template_name

The TemplateName of the InAppTemplate resource.