AWS SDK Version 4 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.

Creates a new key-signing key (KSK) associated with a hosted zone. You can only have two KSKs per hosted zone.

Note:

This is an asynchronous operation using the standard naming convention for .NET 4.7.2 or higher.

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

Syntax

C#
public abstract Task<CreateKeySigningKeyResponse> CreateKeySigningKeyAsync(
         CreateKeySigningKeyRequest request,
         CancellationToken cancellationToken
)

Parameters

request
Type: Amazon.Route53.Model.CreateKeySigningKeyRequest

Container for the necessary parameters to execute the CreateKeySigningKey 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 CreateKeySigningKey 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.
InvalidArgumentException Parameter name is not valid.
InvalidInputException The input is not valid.
InvalidKeySigningKeyNameException The key-signing key (KSK) name that you specified isn't a valid name.
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.
InvalidSigningStatusException Your hosted zone status isn't valid for this operation. In the hosted zone, change the status to enable DNSSEC or disable DNSSEC.
KeySigningKeyAlreadyExistsException You've already created a key-signing key (KSK) with this name or with the same customer managed key ARN.
NoSuchHostedZoneException No hosted zone exists with the ID that you specified.
TooManyKeySigningKeysException You've reached the limit for the number of key-signing keys (KSKs). Remove at least one KSK, and then try again.

Version Information

.NET:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.7.2 and newer

See Also