SmsTemplateReference
- class aws_cdk.aws_pinpoint.SmsTemplateReference(*, sms_template_arn, sms_template_id)
Bases:
object
A reference to a SmsTemplate resource.
- Parameters:
sms_template_arn (
str
) – The ARN of the SmsTemplate resource.sms_template_id (
str
) – The Id of the SmsTemplate 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 sms_template_reference = pinpoint.SmsTemplateReference( sms_template_arn="smsTemplateArn", sms_template_id="smsTemplateId" )
Attributes
- sms_template_arn
The ARN of the SmsTemplate resource.
- sms_template_id
The Id of the SmsTemplate resource.