AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Gets information about a specified hosted zone including the four name servers assigned to the hosted zone.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to GetHostedZoneAsync.

Namespace: Amazon.Route53
Assembly: AWSSDK.Route53.dll
Version: 3.x.y.z

Syntax

C#
public abstract GetHostedZoneResponse GetHostedZone(
         GetHostedZoneRequest request
)

Parameters

request
Type: Amazon.Route53.Model.GetHostedZoneRequest

Container for the necessary parameters to execute the GetHostedZone service method.

Return Value


The response from the GetHostedZone service method, as returned by Route53.

Exceptions

ExceptionCondition
InvalidInputException The input is not valid.
NoSuchHostedZoneException No hosted zone exists with the ID that you specified.

Examples

The following example gets information about the Z3M3LMPEXAMPLE hosted zone.

To get information about a hosted zone


var client = new AmazonRoute53Client();
var response = client.GetHostedZone(new GetHostedZoneRequest 
{
    Id = "Z3M3LMPEXAMPLE"
});

DelegationSet delegationSet = response.DelegationSet;
HostedZone hostedZone = response.HostedZone;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also