Class: Aws::Pinpoint::Types::CreateSmsTemplateRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pinpoint/types.rb

Overview

Note:

When making an API call, you may pass CreateSmsTemplateRequest data as a hash:

{
  sms_template_request: { # required
    body: "__string",
    default_substitutions: "__string",
    recommender_id: "__string",
    tags: {
      "__string" => "__string",
    },
    template_description: "__string",
  },
  template_name: "__string", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#sms_template_requestTypes::SMSTemplateRequest

Specifies the content and settings for a message template that can be used in text messages that are sent through the SMS channel.



4394
4395
4396
4397
4398
# File 'lib/aws-sdk-pinpoint/types.rb', line 4394

class CreateSmsTemplateRequest < Struct.new(
  :sms_template_request,
  :template_name)
  include Aws::Structure
end

#template_nameString

Returns:

  • (String)


4394
4395
4396
4397
4398
# File 'lib/aws-sdk-pinpoint/types.rb', line 4394

class CreateSmsTemplateRequest < Struct.new(
  :sms_template_request,
  :template_name)
  include Aws::Structure
end