Class PushTemplateReference
A reference to a PushTemplate resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class PushTemplateReference : IPushTemplateReference
Syntax (vb)
Public Class PushTemplateReference Implements IPushTemplateReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Pinpoint;
var pushTemplateReference = new PushTemplateReference {
PushTemplateArn = "pushTemplateArn",
PushTemplateId = "pushTemplateId"
};
Synopsis
Constructors
PushTemplateReference() | A reference to a PushTemplate resource. |
Properties
PushTemplateArn | The ARN of the PushTemplate resource. |
PushTemplateId | The Id of the PushTemplate resource. |
Constructors
PushTemplateReference()
A reference to a PushTemplate resource.
public PushTemplateReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Pinpoint;
var pushTemplateReference = new PushTemplateReference {
PushTemplateArn = "pushTemplateArn",
PushTemplateId = "pushTemplateId"
};
Properties
PushTemplateArn
The ARN of the PushTemplate resource.
public string PushTemplateArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
PushTemplateId
The Id of the PushTemplate resource.
public string PushTemplateId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated