NAME
WebService::Amazon::Route53::API::20130401
VERSION
version 0.101
METHODS
new
Creates a new instance of WebService::Amazon::Route53::API::20130401.
This method should not be used directly -- instead, call WebService::Amazon::Route53->new and pass the desired API version as the version
argument.
list_hosted_zones
Gets a list of hosted zones.
$response = $r53->list_hosted_zones(max_items => 15);
Parameters:
marker
Indicates where to begin the result set. This is the ID of the last hosted zone which will not be included in the results.
max_items
The maximum number of hosted zones to retrieve.
Returns: A reference to a hash containing zone data, and a next marker if more zones are available. Example:
$response = {
'hosted_zones' => [
{
'id' => '/hostedzone/123ZONEID',
'name' => 'example.com.',
'caller_reference' => 'ExampleZone',
'config' => {
'comment' => 'This is my first hosted zone'
},
'resource_record_set_count' => '10'
},
{
'id' => '/hostedzone/456ZONEID',
'name' => 'example2.com.',
'caller_reference' => 'ExampleZone2',
'config' => {
'comment' => 'This is my second hosted zone'
},
'resource_record_set_count' => '7'
}
],
'next_marker' => '456ZONEID'
];
get_hosted_zone
Gets hosted zone data.
$response = get_hosted_zone(zone_id => '123ZONEID');
Parameters:
zone_id
(Required) Hosted zone ID.
Returns: A reference to a hash containing zone data and name servers information. Example:
$response = {
'hosted_zone' => {
'id' => '/hostedzone/123ZONEID'
'name' => 'example.com.',
'caller_reference' => 'ExampleZone',
'config' => {
'comment' => 'This is my first hosted zone'
},
'resource_record_set_count' => '10'
},
'delegation_set' => {
'name_servers' => [
'ns-001.awsdns-01.net',
'ns-002.awsdns-02.net',
'ns-003.awsdns-03.net',
'ns-004.awsdns-04.net'
]
}
};
find_hosted_zone
Finds the first hosted zone with the given name.
$response = $r53->find_hosted_zone(name => 'example.com.');
Parameters:
name
(Required) Hosted zone name.
Returns: A reference to a hash containing zone data and name servers information (see "get_hosted_zone"), or a false value if there is no hosted zone with the given name.
create_hosted_zone
Creates a new hosted zone.
$response = $r53->create_hosted_zone(name => 'example.com.',
caller_reference => 'example.com_01');
Parameters:
name
(Required) New hosted zone name.
caller_reference
(Required) A unique string that identifies the request.
Returns: A reference to a hash containing new zone data, change description, and name servers information. Example:
$response = {
'hosted_zone' => {
'id' => '/hostedzone/123ZONEID'
'name' => 'example.com.',
'caller_reference' => 'example.com_01',
'config' => {},
'resource_record_set_count' => '2'
},
'change_info' => {
'id' => '/change/123CHANGEID'
'submitted_at' => '2011-08-30T23:54:53.221Z',
'status' => 'PENDING'
},
'delegation_set' => {
'name_servers' => [
'ns-001.awsdns-01.net',
'ns-002.awsdns-02.net',
'ns-003.awsdns-03.net',
'ns-004.awsdns-04.net'
]
},
};
delete_hosted_zone
Deletes a hosted zone.
$change_info = $r53->delete_hosted_zone(zone_id => '123ZONEID');
Parameters:
zone_id
(Required) Hosted zone ID.
Returns: A reference to a hash containing change information. Example:
$change_info = {
'id' => '/change/123CHANGEID'
'submitted_at' => '2011-08-31T00:04:37.456Z',
'status' => 'PENDING'
};
list_resource_record_sets
Lists resource record sets for a hosted zone.
$response = $r53->list_resource_record_sets(zone_id => '123ZONEID');
Parameters:
zone_id
(Required) Hosted zone ID.
name
The first domain name (in lexicographic order) to retrieve.
type
DNS record type of the next resource record set to retrieve.
identifier
Set identifier for the next source record set to retrieve. This is needed when the previous set of results has been truncated for a given DNS name and type.
max_items
The maximum number of records to be retrieved. The default is 100, and it's the maximum allowed value.
Returns: A hash reference containing record set data, and optionally (if more records are available) the name, type, and set identifier of the next record to retrieve. Example:
$response = {
resource_record_sets => [
{
name => 'example.com.',
type => 'MX'
ttl => 86400,
resource_records => [
'10 mail.example.com'
]
},
{
name => 'example.com.',
type => 'NS',
ttl => 172800,
resource_records => [
'ns-001.awsdns-01.net.',
'ns-002.awsdns-02.net.',
'ns-003.awsdns-03.net.',
'ns-004.awsdns-04.net.'
]
}
],
next_record_name => 'example.com.',
next_record_type => 'A',
next_record_identifier => '1'
};
change_resource_record_sets
Makes changes to DNS record sets.
$change_info = $r53->change_resource_record_sets(zone_id => '123ZONEID',
changes => [
# Delete the current A record
{
action => 'delete',
name => 'www.example.com.',
type => 'A',
ttl => 86400,
value => '12.34.56.78'
},
# Create a new A record with a different value
{
action => 'create',
name => 'www.example.com.',
type => 'A',
ttl => 86400,
value => '34.56.78.90'
},
# Create two new MX records
{
action => 'create',
name => 'example.com.',
type => 'MX',
ttl => 86400,
records => [
'10 mail.example.com',
'20 mail2.example.com'
]
}
]);
If there is just one change to be made, you can use the simplified call syntax, and pass the change parameters directly, instead of using the changes
parameter:
$change_info = $r53->change_resource_record_sets(zone_id => '123ZONEID',
action => 'delete',
name => 'www.example.com.',
type => 'A',
ttl => 86400,
value => '12.34.56.78');
Parameters:
zone_id
(Required) Hosted zone ID.
changes
(Required) A reference to an array of hashes, describing the changes to be made. If there is just one change, the array may be omitted and change parameters may be passed directly.
Change parameters:
action
(Required) The action to perform (
"create"
,"delete"
, or"upsert"
).name
(Required) The name of the domain to perform the action on.
type
(Required) The DNS record type.
ttl
The DNS record time to live (TTL), in seconds.
records
A reference to an array of strings that represent the current or new record values. If there is just one value, you can use the
value
parameter instead.value
Current or new DNS record value. For multiple record values, use the
records
parameter.health_check_id
ID of a Route53 health check.
set_identifier
Unique description for this resource record set.
weight
Weight of this resource record set (in the range 0 - 255).
alias_target
Information about the CloudFront distribution, Elastic Load Balancing load balancer, Amazon S3 bucket, or resource record set to which queries are being redirected. A hash reference with the following fields:
hosted_zone_id
Hosted zone ID for the CloudFront distribution, Amazon S3 bucket, Elastic Load Balancing load balancer, or Amazon Route 53 hosted zone.
dns_name
DNS domain name for the CloudFront distribution, Amazon S3 bucket, Elastic Load Balancing load balancer, or another resource record set in this hosted zone.
evaluate_target_health
Inherit the health of the referenced resource record sets (
0
or1
).
region
Amazon EC2 region name.
failover
Make this a primary or secondary failover resource record set (
"primary"
or"secondary"
).
Returns: A reference to a hash containing change information. Example:
$change_info = {
'id' => '/change/123CHANGEID'
'submitted_at' => '2011-08-31T00:04:37.456Z',
'status' => 'PENDING'
};
get_change
Gets current status of a change batch request.
$change_info = $r53->get_change(change_id => '123FOO456');
Parameters:
change_id
(Required) The ID of the change batch request.
Returns: A reference to a hash containing change information. Example:
$change_info = {
'id' => '/change/123FOO456'
'submitted_at' => '2011-08-31T00:04:37.456Z',
'status' => 'PENDING'
};
create_health_check
Creates a new health check.
$response = $r53->create_health_check(
caller_reference => 'check_01',
type => 'http',
fully_qualified_domain_name => 'example.com',
request_interval => 10
);
Parameters:
caller_reference
(Required) A unique string that identifies the request.
type
(Required) The type of health check to be created (
"http"
,"https"
,"http_str_match"
,"https_str_match"
, or"tcp"
).ip_address
The IPv4 address of the endpoint on which to perform health checks.
port
The port on the endpoint on which to perform health checks. Required when the type is
tcp
, optional for other types (if omitted, the default value of80
is used).resource_path
The path to request when performing health checks (applies to all types except
tcp
).fully_qualified_domain_name
Fully qualified domain name to be used in checks (applies to all types except
tcp
).search_string
The string to search for in the response body from the specified resource (applies to
http_str_match
andhttps_str_match
).request_interval
The number of seconds between the time when a response is received and the time when the next health check request is sent (
10
or30
, default:30
).failure_threshold
The number of consecutive health checks that an endpoint must pass or fail to change the current status of the endpoint from unhealthy to healthy or vice versa (a value between
1
and10
, default:3
).
Returns: A reference to a hash containing health check information. Example:
$response = {
'health_check' => {
'id' => '01ab23cd-45ef-67ab-89cd-01ab23cd45ef',
'caller_reference' => 'check_01',
'health_check_config' => {
'type' => 'http',
'fully_qualified_domain_name' => 'example.com',
'request_interval' => '10',
'failure_threshold' => '3',
'port' => '80'
}
}
};
get_health_check
Gets information about a specific health check.
$response = $r53->get_health_check(
health_check_id => '01ab23cd-45ef-67ab-89cd-01ab23cd45ef');
Parameters:
health_check_id
(Required) The ID of the health check to be deleted.
Returns: A reference to a hash containing health check information. Example:
$response = {
'health_check' => {
'id' => '01ab23cd-45ef-67ab-89cd-01ab23cd45ef',
'caller_reference' => 'check_01',
'health_check_config' => {
'type' => 'http',
'fully_qualified_domain_name' => 'example.com',
'request_interval' => '10',
'failure_threshold' => '3',
'port' => '80'
}
}
};
list_health_checks
Gets a list of health checks.
$response = $r53->list_health_checks(max_items => 10);
Parameters:
marker
Indicates where to begin the results set. This is the ID of the first health check to include in the results.
max_items
The maximum number of health checks to retrieve.
Returns: A reference to a hash containing health check data, and a next marker if more health checks are available. Example:
$response = {
'health_checks' => [
{
'id' => '01ab23cd-45ef-67ab-89cd-01ab23cd45ef',
'caller_reference' => 'check_01',
'health_check_config' => {
'type' => 'http',
'fully_qualified_domain_name' => 'example.com',
'request_interval' => '10',
'failure_threshold' => '3',
'port' => '80'
},
{
'id' => 'ab23cd01-ef45-ab67-cd89-ab23cd45ef01',
'caller_reference' => 'check_02',
'health_check_config' => {
'type' => 'https',
'fully_qualified_domain_name' => 'example.com',
'request_interval' => '30',
'failure_threshold' => '3',
'port' => '443'
},
],
'next_marker' => '23cd01ab-45ef-67ab-89cd-23cd45ef01ab'
};
delete_health_check
Deletes a health check.
$result = $r53->delete_health_check(
health_check_id => '01ab23cd-45ef-67ab-89cd-01ab23cd45ef');
Parameters:
health_check_id
(Required) The ID of the health check to be deleted.
Returns: 1
if the health check was successfully deleted, a false value otherwise.
error
Returns the last error.
$error = $r53->error;
Returns: A reference to a hash containing the type, code, and message of the last error. Example:
$error = {
'type' => 'Sender',
'message' => 'FATAL problem: UnsupportedCharacter encountered at ',
'code' => 'InvalidDomainName'
};
AUTHOR
Michal Wojciechowski <odyniec@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Michal Wojciechowski.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.