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.

Disables DNSSEC signing in a specific hosted zone. This action does not deactivate any key-signing keys (KSKs) that are active in the hosted zone.

Note:

This is an asynchronous operation using the standard naming convention for .NET 4.5 or higher. For .NET 3.5 the operation is implemented as a pair of methods using the standard naming convention of BeginDisableHostedZoneDNSSEC and EndDisableHostedZoneDNSSEC.

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

Syntax

C#
public abstract Task<DisableHostedZoneDNSSECResponse> DisableHostedZoneDNSSECAsync(
         DisableHostedZoneDNSSECRequest request,
         CancellationToken cancellationToken
)

Parameters

request
Type: Amazon.Route53.Model.DisableHostedZoneDNSSECRequest

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

cancellationToken
Type: System.Threading.CancellationToken

A cancellation token that can be used by other objects or threads to receive notice of cancellation.

Return Value


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

Exceptions

ExceptionCondition
ConcurrentModificationException Another user submitted a request to create, update, or delete the object at the same time that you did. Retry the request.
DNSSECNotFoundException The hosted zone doesn't have any DNSSEC resources.
InvalidArgumentException Parameter name is not valid.
InvalidInputException The input is not valid.
InvalidKeySigningKeyStatusException The key-signing key (KSK) status isn't valid or another KSK has the status INTERNAL_FAILURE.
InvalidKMSArnException The KeyManagementServiceArn that you specified isn't valid to use with DNSSEC signing.
KeySigningKeyInParentDSRecordException The key-signing key (KSK) is specified in a parent DS record.
NoSuchHostedZoneException No hosted zone exists with the ID that you specified.

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5

See Also