Show / Hide Table of Contents

Class PushTemplateReference

A reference to a PushTemplate resource.

Inheritance
object
PushTemplateReference
Implements
IPushTemplateReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

PushTemplateId

The Id of the PushTemplate resource.

public string PushTemplateId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IPushTemplateReference
Back to top Generated by DocFX