Class CfnPushTemplate
- All Implemented Interfaces:
IConstruct,IDependable,IInspectable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct
AWS::Pinpoint::PushTemplate.
Creates a message template that you can use in messages that are sent through a push notification channel. A message template is a set of content and settings that you can define, save, and reuse in messages for any of your Amazon Pinpoint applications.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.pinpoint.*;
Object tags;
CfnPushTemplate cfnPushTemplate = CfnPushTemplate.Builder.create(this, "MyCfnPushTemplate")
.templateName("templateName")
// the properties below are optional
.adm(AndroidPushNotificationTemplateProperty.builder()
.action("action")
.body("body")
.imageIconUrl("imageIconUrl")
.imageUrl("imageUrl")
.smallImageIconUrl("smallImageIconUrl")
.sound("sound")
.title("title")
.url("url")
.build())
.apns(APNSPushNotificationTemplateProperty.builder()
.action("action")
.body("body")
.mediaUrl("mediaUrl")
.sound("sound")
.title("title")
.url("url")
.build())
.baidu(AndroidPushNotificationTemplateProperty.builder()
.action("action")
.body("body")
.imageIconUrl("imageIconUrl")
.imageUrl("imageUrl")
.smallImageIconUrl("smallImageIconUrl")
.sound("sound")
.title("title")
.url("url")
.build())
.default(DefaultPushNotificationTemplateProperty.builder()
.action("action")
.body("body")
.sound("sound")
.title("title")
.url("url")
.build())
.defaultSubstitutions("defaultSubstitutions")
.gcm(AndroidPushNotificationTemplateProperty.builder()
.action("action")
.body("body")
.imageIconUrl("imageIconUrl")
.imageUrl("imageUrl")
.smallImageIconUrl("smallImageIconUrl")
.sound("sound")
.title("title")
.url("url")
.build())
.tags(tags)
.templateDescription("templateDescription")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceSpecifies channel-specific content and settings for a message template that can be used in push notifications that are sent through the ADM (Amazon Device Messaging), Baidu (Baidu Cloud Push), or GCM (Firebase Cloud Messaging, formerly Google Cloud Messaging) channel.static interfaceSpecifies channel-specific content and settings for a message template that can be used in push notifications that are sent through the APNs (Apple Push Notification service) channel.static final classA fluent builder forCfnPushTemplate.static interfaceSpecifies the default settings and content for a message template that can be used in messages that are sent through a push notification channel.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionCfnPushTemplate(Construct scope, String id, CfnPushTemplateProps props) Create a newAWS::Pinpoint::PushTemplate.protectedCfnPushTemplate(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnPushTemplate(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptiongetAdm()The message template to use for the ADM (Amazon Device Messaging) channel.getApns()The message template to use for the APNs (Apple Push Notification service) channel.The Amazon Resource Name (ARN) of the message template.getBaidu()The message template to use for the Baidu (Baidu Cloud Push) channel.A JSON object that specifies the default values to use for message variables in the message template.The default message template to use for push notification channels.getGcm()The message template to use for the GCM channel, which is used to send notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service.getTags()An array of key-value pairs to apply to this resource.A custom description of the message template.The name of the message template.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetAdm(IResolvable value) The message template to use for the ADM (Amazon Device Messaging) channel.voidThe message template to use for the ADM (Amazon Device Messaging) channel.voidsetApns(IResolvable value) The message template to use for the APNs (Apple Push Notification service) channel.voidThe message template to use for the APNs (Apple Push Notification service) channel.voidsetBaidu(IResolvable value) The message template to use for the Baidu (Baidu Cloud Push) channel.voidThe message template to use for the Baidu (Baidu Cloud Push) channel.voidsetDefaultSubstitutions(String value) A JSON object that specifies the default values to use for message variables in the message template.voidsetDefaultValue(IResolvable value) The default message template to use for push notification channels.voidThe default message template to use for push notification channels.voidsetGcm(IResolvable value) The message template to use for the GCM channel, which is used to send notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service.voidThe message template to use for the GCM channel, which is used to send notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service.voidsetTemplateDescription(String value) A custom description of the message template.voidsetTemplateName(String value) The name of the message template.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.core.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnPushTemplate
protected CfnPushTemplate(software.amazon.jsii.JsiiObjectRef objRef) -
CfnPushTemplate
protected CfnPushTemplate(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnPushTemplate
@Stability(Stable) public CfnPushTemplate(@NotNull Construct scope, @NotNull String id, @NotNull CfnPushTemplateProps props) Create a newAWS::Pinpoint::PushTemplate.- Parameters:
scope-- scope in which this resource is defined.
id-- scoped id of the resource.
props-- resource properties.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrArn
The Amazon Resource Name (ARN) of the message template. -
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
-
getTemplateName
The name of the message template. -
setTemplateName
The name of the message template. -
getAdm
The message template to use for the ADM (Amazon Device Messaging) channel.This message template overrides the default template for push notification channels (
Default). -
setAdm
The message template to use for the ADM (Amazon Device Messaging) channel.This message template overrides the default template for push notification channels (
Default). -
setAdm
@Stability(Stable) public void setAdm(@Nullable CfnPushTemplate.AndroidPushNotificationTemplateProperty value) The message template to use for the ADM (Amazon Device Messaging) channel.This message template overrides the default template for push notification channels (
Default). -
getApns
The message template to use for the APNs (Apple Push Notification service) channel.This message template overrides the default template for push notification channels (
Default). -
setApns
The message template to use for the APNs (Apple Push Notification service) channel.This message template overrides the default template for push notification channels (
Default). -
setApns
@Stability(Stable) public void setApns(@Nullable CfnPushTemplate.APNSPushNotificationTemplateProperty value) The message template to use for the APNs (Apple Push Notification service) channel.This message template overrides the default template for push notification channels (
Default). -
getBaidu
The message template to use for the Baidu (Baidu Cloud Push) channel.This message template overrides the default template for push notification channels (
Default). -
setBaidu
The message template to use for the Baidu (Baidu Cloud Push) channel.This message template overrides the default template for push notification channels (
Default). -
setBaidu
@Stability(Stable) public void setBaidu(@Nullable CfnPushTemplate.AndroidPushNotificationTemplateProperty value) The message template to use for the Baidu (Baidu Cloud Push) channel.This message template overrides the default template for push notification channels (
Default). -
getDefaultValue
The default message template to use for push notification channels. -
setDefaultValue
The default message template to use for push notification channels. -
setDefaultValue
@Stability(Stable) public void setDefaultValue(@Nullable CfnPushTemplate.DefaultPushNotificationTemplateProperty value) The default message template to use for push notification channels. -
getDefaultSubstitutions
A JSON object that specifies the default values to use for message variables in the message template.This object is a set of key-value pairs. Each key defines a message variable in the template. The corresponding value defines the default value for that variable. When you create a message that's based on the template, you can override these defaults with message-specific and address-specific variables and values.
-
setDefaultSubstitutions
A JSON object that specifies the default values to use for message variables in the message template.This object is a set of key-value pairs. Each key defines a message variable in the template. The corresponding value defines the default value for that variable. When you create a message that's based on the template, you can override these defaults with message-specific and address-specific variables and values.
-
getGcm
The message template to use for the GCM channel, which is used to send notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service.This message template overrides the default template for push notification channels (
Default). -
setGcm
The message template to use for the GCM channel, which is used to send notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service.This message template overrides the default template for push notification channels (
Default). -
setGcm
@Stability(Stable) public void setGcm(@Nullable CfnPushTemplate.AndroidPushNotificationTemplateProperty value) The message template to use for the GCM channel, which is used to send notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service.This message template overrides the default template for push notification channels (
Default). -
getTemplateDescription
A custom description of the message template. -
setTemplateDescription
A custom description of the message template.
-