Learn R Programming

paws (version 0.1.12)

route53: Amazon Route 53

Description

Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service.

Usage

route53(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 <- route53(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string"
    ),
    endpoint = "string",
    region = "string"
  )
)

Operations

activate_key_signing_keyActivates a key signing key (KSK) so that it can be used for signing by DNSSEC
associate_vpc_with_hosted_zoneAssociates an Amazon VPC with a private hosted zone
change_resource_record_setsCreates, changes, or deletes a resource record set, which contains authoritative DNS information for a specified domain name or subdomain name
change_tags_for_resourceAdds, edits, or deletes tags for a health check or a hosted zone
create_health_checkCreates a new health check
create_hosted_zoneCreates a new public or private hosted zone
create_key_signing_keyCreates a new key signing key (KSK) associated with a hosted zone
create_query_logging_configCreates a configuration for DNS query logging
create_reusable_delegation_setCreates a delegation set (a group of four name servers) that can be reused by multiple hosted zones that were created by the same AWS account
create_traffic_policyCreates a traffic policy, which you use to create multiple DNS resource record sets for one domain name (such as example
create_traffic_policy_instanceCreates resource record sets in a specified hosted zone based on the settings in a specified traffic policy version
create_traffic_policy_versionCreates a new version of an existing traffic policy
create_vpc_association_authorizationAuthorizes the AWS account that created a specified VPC to submit an AssociateVPCWithHostedZone request to associate the VPC with a specified hosted zone that was created by a different account
deactivate_key_signing_keyDeactivates a key signing key (KSK) so that it will not be used for signing by DNSSEC
delete_health_checkDeletes a health check
delete_hosted_zoneDeletes a hosted zone
delete_key_signing_keyDeletes a key signing key (KSK)
delete_query_logging_configDeletes a configuration for DNS query logging
delete_reusable_delegation_setDeletes a reusable delegation set
delete_traffic_policyDeletes a traffic policy
delete_traffic_policy_instanceDeletes a traffic policy instance and all of the resource record sets that Amazon Route 53 created when you created the instance
delete_vpc_association_authorizationRemoves authorization to submit an AssociateVPCWithHostedZone request to associate a specified VPC with a hosted zone that was created by a different account
disable_hosted_zone_dnssecDisables DNSSEC signing in a specific hosted zone
disassociate_vpc_from_hosted_zoneDisassociates an Amazon Virtual Private Cloud (Amazon VPC) from an Amazon Route 53 private hosted zone
enable_hosted_zone_dnssecEnables DNSSEC signing in a specific hosted zone
get_account_limitGets the specified limit for the current account, for example, the maximum number of health checks that you can create using the account
get_changeReturns the current status of a change batch request
get_checker_ip_rangesGetCheckerIpRanges still works, but we recommend that you download ip-ranges
get_dnssecReturns information about DNSSEC for a specific hosted zone, including the key signing keys (KSKs) and zone signing keys (ZSKs) in the hosted zone
get_geo_locationGets information about whether a specified geographic location is supported for Amazon Route 53 geolocation resource record sets
get_health_checkGets information about a specified health check
get_health_check_countRetrieves the number of health checks that are associated with the current AWS account
get_health_check_last_failure_reasonGets the reason that a specified health check failed most recently
get_health_check_statusGets status of a specified health check
get_hosted_zoneGets information about a specified hosted zone including the four name servers assigned to the hosted zone
get_hosted_zone_countRetrieves the number of hosted zones that are associated with the current AWS account
get_hosted_zone_limitGets the specified limit for a specified hosted zone, for example, the maximum number of records that you can create in the hosted zone
get_query_logging_configGets information about a specified configuration for DNS query logging
get_reusable_delegation_setRetrieves information about a specified reusable delegation set, including the four name servers that are assigned to the delegation set
get_reusable_delegation_set_limitGets the maximum number of hosted zones that you can associate with the specified reusable delegation set
get_traffic_policyGets information about a specific traffic policy version
get_traffic_policy_instanceGets information about a specified traffic policy instance
get_traffic_policy_instance_countGets the number of traffic policy instances that are associated with the current AWS account
list_geo_locationsRetrieves a list of supported geographic locations
list_health_checksRetrieve a list of the health checks that are associated with the current AWS account
list_hosted_zonesRetrieves a list of the public and private hosted zones that are associated with the current AWS account
list_hosted_zones_by_nameRetrieves a list of your hosted zones in lexicographic order
list_hosted_zones_by_vpcLists all the private hosted zones that a specified VPC is associated with, regardless of which AWS account or AWS service owns the hosted zones
list_query_logging_configsLists the configurations for DNS query logging that are associated with the current AWS account or the configuration that is associated with a specified hosted zone
list_resource_record_setsLists the resource record sets in a specified hosted zone
list_reusable_delegation_setsRetrieves a list of the reusable delegation sets that are associated with the current AWS account
list_tags_for_resourceLists tags for one health check or hosted zone
list_tags_for_resourcesLists tags for up to 10 health checks or hosted zones
list_traffic_policiesGets information about the latest version for every traffic policy that is associated with the current AWS account
list_traffic_policy_instancesGets information about the traffic policy instances that you created by using the current AWS account
list_traffic_policy_instances_by_hosted_zoneGets information about the traffic policy instances that you created in a specified hosted zone
list_traffic_policy_instances_by_policyGets information about the traffic policy instances that you created by using a specify traffic policy version
list_traffic_policy_versionsGets information about all of the versions for a specified traffic policy
list_vpc_association_authorizationsGets a list of the VPCs that were created by other accounts and that can be associated with a specified hosted zone because you've submitted one or more CreateVPCAssociationAuthorization requests
test_dns_answerGets the value that Amazon Route 53 returns in response to a DNS request for a specified record name and type
update_health_checkUpdates an existing health check
update_hosted_zone_commentUpdates the comment for a specified hosted zone
update_traffic_policy_commentUpdates the comment for a specified traffic policy version
update_traffic_policy_instanceUpdates the resource record sets in a specified hosted zone that were created based on the settings in a specified traffic policy version

Examples

Run this code
if (FALSE) {
svc <- route53()
# The following example associates the VPC with ID vpc-1a2b3c4d with the
# hosted zone with ID Z3M3LMPEXAMPLE.
svc$associate_vpc_with_hosted_zone(
  Comment = "",
  HostedZoneId = "Z3M3LMPEXAMPLE",
  VPC = list(
    VPCId = "vpc-1a2b3c4d",
    VPCRegion = "us-east-2"
  )
)
}

Run the code above in your browser using DataLab