Learn R Programming

paws (version 0.1.12)

route53domains: Amazon Route 53 Domains

Description

Amazon Route 53 API actions let you register domain names and perform related operations.

Usage

route53domains(config = list())

Value

A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.

Arguments

config

Optional configuration of credentials, endpoint, and/or region.

Service syntax

svc <- route53domains(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string"
    ),
    endpoint = "string",
    region = "string"
  )
)

Operations

accept_domain_transfer_from_another_aws_accountAccepts the transfer of a domain from another AWS account to the current AWS account
cancel_domain_transfer_to_another_aws_accountCancels the transfer of a domain from the current AWS account to another AWS account
check_domain_availabilityThis operation checks the availability of one domain name
check_domain_transferabilityChecks whether a domain name can be transferred to Amazon Route 53
delete_tags_for_domainThis operation deletes the specified tags for a domain
disable_domain_auto_renewThis operation disables automatic renewal of domain registration for the specified domain
disable_domain_transfer_lockThis operation removes the transfer lock on the domain (specifically the clientTransferProhibited status) to allow domain transfers
enable_domain_auto_renewThis operation configures Amazon Route 53 to automatically renew the specified domain before the domain registration expires
enable_domain_transfer_lockThis operation sets the transfer lock on the domain (specifically the clientTransferProhibited status) to prevent domain transfers
get_contact_reachability_statusFor operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation returns information about whether the registrant contact has responded
get_domain_detailThis operation returns detailed information about a specified domain that is associated with the current AWS account
get_domain_suggestionsThe GetDomainSuggestions operation returns a list of suggested domain names
get_operation_detailThis operation returns the current status of an operation that is not completed
list_domainsThis operation returns all the domain names registered with Amazon Route 53 for the current AWS account
list_operationsReturns information about all of the operations that return an operation ID and that have ever been performed on domains that were registered by the current account
list_tags_for_domainThis operation returns all of the tags that are associated with the specified domain
register_domainThis operation registers a domain
reject_domain_transfer_from_another_aws_accountRejects the transfer of a domain from another AWS account to the current AWS account
renew_domainThis operation renews a domain for the specified number of years
resend_contact_reachability_emailFor operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation resends the confirmation email to the current email address for the registrant contact
retrieve_domain_auth_codeThis operation returns the AuthCode for the domain
transfer_domainTransfers a domain from another registrar to Amazon Route 53
transfer_domain_to_another_aws_accountTransfers a domain from the current AWS account to another AWS account
update_domain_contactThis operation updates the contact information for a particular domain
update_domain_contact_privacyThis operation updates the specified domain contact's privacy setting
update_domain_nameserversThis operation replaces the current set of name servers for the domain with the specified set of name servers
update_tags_for_domainThis operation adds or updates tags for a specified domain
view_billingReturns all the domain-related billing records for the current AWS account for a specified period

Examples

Run this code
if (FALSE) {
svc <- route53domains()
svc$accept_domain_transfer_from_another_aws_account(
  Foo = 123
)
}

Run the code above in your browser using DataLab