/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the pinpoint-2016-12-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Pinpoint.Model
{
///
/// Container for the parameters to the CreateSmsTemplate operation.
/// Creates a message template for messages that are sent through the SMS channel.
///
public partial class CreateSmsTemplateRequest : AmazonPinpointRequest
{
private SMSTemplateRequest _smsTemplateRequest;
private string _templateName;
///
/// Gets and sets the property SMSTemplateRequest.
///
[AWSProperty(Required=true)]
public SMSTemplateRequest SMSTemplateRequest
{
get { return this._smsTemplateRequest; }
set { this._smsTemplateRequest = value; }
}
// Check to see if SMSTemplateRequest property is set
internal bool IsSetSMSTemplateRequest()
{
return this._smsTemplateRequest != null;
}
///
/// Gets and sets the property TemplateName.
///
/// The name of the message template. A template name must start with an alphanumeric
/// character and can contain a maximum of 128 characters. The characters can be alphanumeric
/// characters, underscores (_), or hyphens (-). Template names are case sensitive.
///
///
[AWSProperty(Required=true)]
public string TemplateName
{
get { return this._templateName; }
set { this._templateName = value; }
}
// Check to see if TemplateName property is set
internal bool IsSetTemplateName()
{
return this._templateName != null;
}
}
}