PushTemplateReference
- class aws_cdk.interfaces.aws_pinpoint.PushTemplateReference(*, push_template_arn, push_template_id)
Bases:
objectA 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.interfaces import aws_pinpoint as interfaces_aws_pinpoint push_template_reference = interfaces_aws_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.