Skip to content

Associate Delegation Signer To Domain

route53domains_associate_delegation_signer_to_domain R Documentation

Creates a delegation signer (DS) record in the registry zone for this domain name

Description

Creates a delegation signer (DS) record in the registry zone for this domain name.

Note that creating DS record at the registry impacts DNSSEC validation of your DNS records. This action may render your domain name unavailable on the internet if the steps are completed in the wrong order, or with incorrect timing. For more information about DNSSEC signing, see Configuring DNSSEC signing in the RouteĀ 53 developer guide.

Usage

route53domains_associate_delegation_signer_to_domain(DomainName,
  SigningAttributes)

Arguments

DomainName

[required] The name of the domain.

SigningAttributes

[required] The information about a key, including the algorithm, public key-value, and flags.

Value

A list with the following syntax:

list(
  OperationId = "string"
)

Request syntax

svc$associate_delegation_signer_to_domain(
  DomainName = "string",
  SigningAttributes = list(
    Algorithm = 123,
    Flags = 123,
    PublicKey = "string"
  )
)