Interface CfnSmsTemplateMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSmsTemplateMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:29.152Z")
@Stability(Stable)
public interface CfnSmsTemplateMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSmsTemplatePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.*;
Object tags;
CfnSmsTemplateMixinProps cfnSmsTemplateMixinProps = CfnSmsTemplateMixinProps.builder()
.body("body")
.defaultSubstitutions("defaultSubstitutions")
.tags(tags)
.templateDescription("templateDescription")
.templateName("templateName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSmsTemplateMixinPropsstatic final classAn implementation forCfnSmsTemplateMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetBody()The message body to use in text messages that are based on the message template.default StringA JSON object that specifies the default values to use for message variables in the message template.default ObjectgetTags()An array of key-value pairs to apply to this resource.default StringA custom description of the message template.default StringThe name of the message template to use for the message.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBody
The message body to use in text messages that are based on the message template.- See Also:
-
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.
- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
getTemplateDescription
A custom description of the message template.- See Also:
-
getTemplateName
The name of the message template to use for the message.If specified, this value must match the name of an existing message template.
- See Also:
-
builder
- Returns:
- a
CfnSmsTemplateMixinProps.BuilderofCfnSmsTemplateMixinProps
-