PushTemplateReference
- class aws_cdk.aws_pinpoint.PushTemplateReference(*, push_template_arn, push_template_id)
Bases:
object
A reference to a PushTemplate resource.
- Parameters:
push_template_arn (
str
) – The ARN of the PushTemplate resource.push_template_id (
str
) – The Id of the PushTemplate 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 push_template_reference = pinpoint.PushTemplateReference( push_template_arn="pushTemplateArn", push_template_id="pushTemplateId" )
Attributes
- push_template_arn
The ARN of the PushTemplate resource.
- push_template_id
The Id of the PushTemplate resource.