/*
* 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 route53-2013-04-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.Route53.Model
{
///
/// Container for the parameters to the DeleteHostedZone operation.
/// Deletes a hosted zone.
///
///
///
/// If the hosted zone was created by another service, such as Cloud Map, see Deleting
/// Public Hosted Zones That Were Created by Another Service in the Amazon Route 53
/// Developer Guide for information about how to delete it. (The process is the same
/// for public and private hosted zones that were created by another service.)
///
///
///
/// If you want to keep your domain registration but you want to stop routing internet
/// traffic to your website or web application, we recommend that you delete resource
/// record sets in the hosted zone instead of deleting the hosted zone.
///
///
///
/// If you delete a hosted zone, you can't undelete it. You must create a new hosted zone
/// and update the name servers for your domain registration, which can require up to
/// 48 hours to take effect. (If you delegated responsibility for a subdomain to a hosted
/// zone and you delete the child hosted zone, you must update the name servers in the
/// parent hosted zone.) In addition, if you delete a hosted zone, someone could hijack
/// the domain and route traffic to their own resources using your domain name.
///
///
///
/// If you want to avoid the monthly charge for the hosted zone, you can transfer DNS
/// service for the domain to a free DNS service. When you transfer DNS service, you have
/// to update the name servers for the domain registration. If the domain is registered
/// with Route 53, see UpdateDomainNameservers
/// for information about how to replace Route 53 name servers with name servers for the
/// new DNS service. If the domain is registered with another registrar, use the method
/// provided by the registrar to update name servers for the domain registration. For
/// more information, perform an internet search on "free DNS service."
///
///
///
/// You can delete a hosted zone only if it contains only the default SOA record and NS
/// resource record sets. If the hosted zone contains other resource record sets, you
/// must delete them before you can delete the hosted zone. If you try to delete a hosted
/// zone that contains other resource record sets, the request fails, and Route 53 returns
/// a HostedZoneNotEmpty
error. For information about deleting records from
/// your hosted zone, see ChangeResourceRecordSets.
///
///
///
/// To verify that the hosted zone has been deleted, do one of the following:
///
/// -
///
/// Use the
GetHostedZone
action to request information about the hosted
/// zone.
///
/// -
///
/// Use the
ListHostedZones
action to get a list of the hosted zones associated
/// with the current Amazon Web Services account.
///
///
///
public partial class DeleteHostedZoneRequest : AmazonRoute53Request
{
private string _id;
///
/// Empty constructor used to set properties independently even when a simple constructor is available
///
public DeleteHostedZoneRequest() { }
///
/// Instantiates DeleteHostedZoneRequest with the parameterized properties
///
/// The ID of the hosted zone you want to delete.
public DeleteHostedZoneRequest(string id)
{
_id = id;
}
///
/// Gets and sets the property Id.
///
/// The ID of the hosted zone you want to delete.
///
///
[AWSProperty(Required=true, Max=32)]
public string Id
{
get { return this._id; }
set { this._id = value; }
}
// Check to see if Id property is set
internal bool IsSetId()
{
return this._id != null;
}
}
}