/*
* Copyright 2010-2014 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 email-2010-12-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.SimpleEmail.Model
{
///
/// Information about a receipt rule set.
///
///
///
/// A receipt rule set is a collection of rules that specify what Amazon SES should do
/// with mail it receives on behalf of your account's verified domains.
///
///
///
/// For information about setting up receipt rule sets, see the Amazon
/// SES Developer Guide.
///
///
public partial class ReceiptRuleSetMetadata
{
private DateTime? _createdTimestamp;
private string _name;
///
/// Gets and sets the property CreatedTimestamp.
///
/// The date and time the receipt rule set was created.
///
///
public DateTime CreatedTimestamp
{
get { return this._createdTimestamp.GetValueOrDefault(); }
set { this._createdTimestamp = value; }
}
// Check to see if CreatedTimestamp property is set
internal bool IsSetCreatedTimestamp()
{
return this._createdTimestamp.HasValue;
}
///
/// Gets and sets the property Name.
///
/// The name of the receipt rule set. The name must:
///
/// -
///
/// This value can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_),
/// or dashes (-).
///
///
-
///
/// Start and end with a letter or number.
///
///
-
///
/// Contain less than 64 characters.
///
///
///
public string Name
{
get { return this._name; }
set { this._name = value; }
}
// Check to see if Name property is set
internal bool IsSetName()
{
return this._name != null;
}
}
}