aws-sdk-route53 1.0.0.rc2 → 1.0.0.rc3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8e64890b78ec04a4c3d8cf2ec34f1d0064ee1c54
4
- data.tar.gz: ec92e15d7f8846e1dd8791a20dc603c6d3c94276
3
+ metadata.gz: 63d15810235fa4bd52aa5ef573670f2e0754310a
4
+ data.tar.gz: 978f05644f4d5c589dbf99d3a5a724d493518dc6
5
5
  SHA512:
6
- metadata.gz: 40ab23f2e2983b1224c935b9e1cd6f45d1f8bb484384b526208fa63d8763e0668dd81fde08c467ba477a35887a5dec006cd0c950299a1d4ba6fb0f4bb1bf395a
7
- data.tar.gz: 431e33e0ac4fdbbc5e109008826b6965cea6735d94f8d2a8cc1179e4102cef54934262d162a3710351dd811de8b15ba05ea5f5c9d1612d9d83fee641b3299976
6
+ metadata.gz: a7b9db00fcbb076d1e54132c4fab859b82e631f9d9eda34756a7fe7c8916270686ccced4051b75afc66f824e4346493a4a4d7d262f1bfa32c2fbd5e3fa97adbc
7
+ data.tar.gz: 7702a2005eb48a74ad1dca1ead8a85d194f563aae3c70800bf805784dbc75b3149d5e1303d4bec17e732123a3fb8d8bacbfeefb1edc7493a0d51abfce671dae5
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-route53/customizations'
43
43
  # @service
44
44
  module Aws::Route53
45
45
 
46
- GEM_VERSION = '1.0.0.rc1'
46
+ GEM_VERSION = '1.0.0.rc3'
47
47
 
48
48
  end
@@ -202,6 +202,8 @@ module Aws::Route53
202
202
  # resp.change_info.submitted_at #=> Time
203
203
  # resp.change_info.comment #=> String
204
204
  #
205
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/AssociateVPCWithHostedZone AWS API Documentation
206
+ #
205
207
  # @overload associate_vpc_with_hosted_zone(params = {})
206
208
  # @param [Hash] params ({})
207
209
  def associate_vpc_with_hosted_zone(params = {}, options = {})
@@ -215,6 +217,8 @@ module Aws::Route53
215
217
  # `/2013-04-01/hostedzone/Amazon Route 53 hosted Zone ID/rrset`
216
218
  # resource.
217
219
  #
220
+ # **Change Batches and Transactional Changes**
221
+ #
218
222
  # The request body must include a document with a
219
223
  # `ChangeResourceRecordSetsRequest` element. The request body contains a
220
224
  # list of change items, known as a change batch. Change batches are
@@ -237,7 +241,9 @@ module Aws::Route53
237
241
  # attempt to delete the same change batch more than once, Amazon Route
238
242
  # 53 returns an `InvalidChangeBatch` error.
239
243
  #
240
- # <note markdown="1"> To create resource record sets for complex routing configurations, use
244
+ # **Traffic Flow**
245
+ #
246
+ # To create resource record sets for complex routing configurations, use
241
247
  # either the traffic flow visual editor in the Amazon Route 53 console
242
248
  # or the API actions for traffic policies and traffic policy instances.
243
249
  # Save the configuration as a traffic policy, then associate the traffic
@@ -248,7 +254,7 @@ module Aws::Route53
248
254
  # [Using Traffic Flow to Route DNS Traffic][1] in the *Amazon Route 53
249
255
  # Developer Guide*.
250
256
  #
251
- # </note>
257
+ # **Create, Delete, and Upsert**
252
258
  #
253
259
  # Use `ChangeResourceRecordsSetsRequest` to perform the following
254
260
  # actions:
@@ -263,41 +269,21 @@ module Aws::Route53
263
269
  # creates it. If a resource set does exist, Amazon Route 53 updates it
264
270
  # with the values in the request.
265
271
  #
266
- # The values that you need to include in the request depend on the type
267
- # of resource record set that you're creating, deleting, or updating:
268
- #
269
- # **Basic resource record sets (excluding alias, failover, geolocation,
270
- # latency, and weighted resource record sets)**
271
- #
272
- # * `Name`
273
- #
274
- # * `Type`
275
- #
276
- # * `TTL`
277
- #
278
- # **Failover, geolocation, latency, or weighted resource record sets
279
- # (excluding alias resource record sets)**
280
- #
281
- # * `Name`
272
+ # **Syntaxes for Creating, Updating, and Deleting Resource Record Sets**
282
273
  #
283
- # * `Type`
274
+ # The syntax for a request depends on the type of resource record set
275
+ # that you want to create, delete, or update, such as weighted, alias,
276
+ # or failover. The XML elements in your request must appear in the order
277
+ # listed in the syntax.
284
278
  #
285
- # * `TTL`
279
+ # For an example for each type of resource record set, see "Examples."
286
280
  #
287
- # * `SetIdentifier`
281
+ # Don't refer to the syntax in the "Parameter Syntax" section, which
282
+ # includes all of the elements for every kind of resource record set
283
+ # that you can create, delete, or update by using
284
+ # `ChangeResourceRecordSets`.
288
285
  #
289
- # **Alias resource record sets (including failover alias, geolocation
290
- # alias, latency alias, and weighted alias resource record sets)**
291
- #
292
- # * `Name`
293
- #
294
- # * `Type`
295
- #
296
- # * `AliasTarget` (includes `DNSName`, `EvaluateTargetHealth`, and
297
- # `HostedZoneId`)
298
- #
299
- # * `SetIdentifier` (for failover, geolocation, latency, and weighted
300
- # resource record sets)
286
+ # **Change Propagation to Amazon Route 53 DNS Servers**
301
287
  #
302
288
  # When you submit a `ChangeResourceRecordSets` request, Amazon Route 53
303
289
  # propagates your changes to all of the Amazon Route 53 authoritative
@@ -305,7 +291,9 @@ module Aws::Route53
305
291
  # status of `PENDING`. When propagation is complete, `GetChange` returns
306
292
  # a status of `INSYNC`. Changes generally propagate to all Amazon Route
307
293
  # 53 name servers in a few minutes. In rare circumstances, propagation
308
- # can take up to 30 minutes. For more information, see GetChange
294
+ # can take up to 30 minutes. For more information, see GetChange.
295
+ #
296
+ # **Limits on ChangeResourceRecordSets Requests**
309
297
  #
310
298
  # For information about the limits on a `ChangeResourceRecordSets`
311
299
  # request, see [Limits][2] in the *Amazon Route 53 Developer Guide*.
@@ -374,6 +362,8 @@ module Aws::Route53
374
362
  # resp.change_info.submitted_at #=> Time
375
363
  # resp.change_info.comment #=> String
376
364
  #
365
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeResourceRecordSets AWS API Documentation
366
+ #
377
367
  # @overload change_resource_record_sets(params = {})
378
368
  # @param [Hash] params ({})
379
369
  def change_resource_record_sets(params = {}, options = {})
@@ -430,6 +420,8 @@ module Aws::Route53
430
420
  # remove_tag_keys: ["TagKey"],
431
421
  # })
432
422
  #
423
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeTagsForResource AWS API Documentation
424
+ #
433
425
  # @overload change_tags_for_resource(params = {})
434
426
  # @param [Hash] params ({})
435
427
  def change_tags_for_resource(params = {}, options = {})
@@ -447,7 +439,7 @@ module Aws::Route53
447
439
  # For information about adding health checks to resource record sets,
448
440
  # see ResourceRecordSet$HealthCheckId in ChangeResourceRecordSets.
449
441
  #
450
- # If you are registering EC2 instances with an Elastic Load Balancing
442
+ # If you're registering EC2 instances with an Elastic Load Balancing
451
443
  # (ELB) load balancer, do not create Amazon Route 53 health checks for
452
444
  # the EC2 instances. When you register an EC2 instance with a load
453
445
  # balancer, you configure settings for an ELB health check, which
@@ -555,6 +547,8 @@ module Aws::Route53
555
547
  # resp.health_check.cloud_watch_alarm_configuration.dimensions[0].value #=> String
556
548
  # resp.location #=> String
557
549
  #
550
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateHealthCheck AWS API Documentation
551
+ #
558
552
  # @overload create_health_check(params = {})
559
553
  # @param [Hash] params ({})
560
554
  def create_health_check(params = {}, options = {})
@@ -701,6 +695,8 @@ module Aws::Route53
701
695
  # resp.vpc.vpc_id #=> String
702
696
  # resp.location #=> String
703
697
  #
698
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateHostedZone AWS API Documentation
699
+ #
704
700
  # @overload create_hosted_zone(params = {})
705
701
  # @param [Hash] params ({})
706
702
  def create_hosted_zone(params = {}, options = {})
@@ -762,6 +758,8 @@ module Aws::Route53
762
758
  # resp.delegation_set.name_servers[0] #=> String
763
759
  # resp.location #=> String
764
760
  #
761
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateReusableDelegationSet AWS API Documentation
762
+ #
765
763
  # @overload create_reusable_delegation_set(params = {})
766
764
  # @param [Hash] params ({})
767
765
  def create_reusable_delegation_set(params = {}, options = {})
@@ -817,6 +815,8 @@ module Aws::Route53
817
815
  # resp.traffic_policy.comment #=> String
818
816
  # resp.location #=> String
819
817
  #
818
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateTrafficPolicy AWS API Documentation
819
+ #
820
820
  # @overload create_traffic_policy(params = {})
821
821
  # @param [Hash] params ({})
822
822
  def create_traffic_policy(params = {}, options = {})
@@ -888,6 +888,8 @@ module Aws::Route53
888
888
  # resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA"
889
889
  # resp.location #=> String
890
890
  #
891
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateTrafficPolicyInstance AWS API Documentation
892
+ #
891
893
  # @overload create_traffic_policy_instance(params = {})
892
894
  # @param [Hash] params ({})
893
895
  def create_traffic_policy_instance(params = {}, options = {})
@@ -946,6 +948,8 @@ module Aws::Route53
946
948
  # resp.traffic_policy.comment #=> String
947
949
  # resp.location #=> String
948
950
  #
951
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateTrafficPolicyVersion AWS API Documentation
952
+ #
949
953
  # @overload create_traffic_policy_version(params = {})
950
954
  # @param [Hash] params ({})
951
955
  def create_traffic_policy_version(params = {}, options = {})
@@ -1001,6 +1005,8 @@ module Aws::Route53
1001
1005
  # resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "sa-east-1", "ca-central-1", "cn-north-1"
1002
1006
  # resp.vpc.vpc_id #=> String
1003
1007
  #
1008
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateVPCAssociationAuthorization AWS API Documentation
1009
+ #
1004
1010
  # @overload create_vpc_association_authorization(params = {})
1005
1011
  # @param [Hash] params ({})
1006
1012
  def create_vpc_association_authorization(params = {}, options = {})
@@ -1035,6 +1041,8 @@ module Aws::Route53
1035
1041
  # health_check_id: "HealthCheckId", # required
1036
1042
  # })
1037
1043
  #
1044
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteHealthCheck AWS API Documentation
1045
+ #
1038
1046
  # @overload delete_health_check(params = {})
1039
1047
  # @param [Hash] params ({})
1040
1048
  def delete_health_check(params = {}, options = {})
@@ -1073,6 +1081,8 @@ module Aws::Route53
1073
1081
  # resp.change_info.submitted_at #=> Time
1074
1082
  # resp.change_info.comment #=> String
1075
1083
  #
1084
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteHostedZone AWS API Documentation
1085
+ #
1076
1086
  # @overload delete_hosted_zone(params = {})
1077
1087
  # @param [Hash] params ({})
1078
1088
  def delete_hosted_zone(params = {}, options = {})
@@ -1101,6 +1111,8 @@ module Aws::Route53
1101
1111
  # id: "ResourceId", # required
1102
1112
  # })
1103
1113
  #
1114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteReusableDelegationSet AWS API Documentation
1115
+ #
1104
1116
  # @overload delete_reusable_delegation_set(params = {})
1105
1117
  # @param [Hash] params ({})
1106
1118
  def delete_reusable_delegation_set(params = {}, options = {})
@@ -1128,6 +1140,8 @@ module Aws::Route53
1128
1140
  # version: 1, # required
1129
1141
  # })
1130
1142
  #
1143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteTrafficPolicy AWS API Documentation
1144
+ #
1131
1145
  # @overload delete_traffic_policy(params = {})
1132
1146
  # @param [Hash] params ({})
1133
1147
  def delete_traffic_policy(params = {}, options = {})
@@ -1161,6 +1175,8 @@ module Aws::Route53
1161
1175
  # id: "TrafficPolicyInstanceId", # required
1162
1176
  # })
1163
1177
  #
1178
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteTrafficPolicyInstance AWS API Documentation
1179
+ #
1164
1180
  # @overload delete_traffic_policy_instance(params = {})
1165
1181
  # @param [Hash] params ({})
1166
1182
  def delete_traffic_policy_instance(params = {}, options = {})
@@ -1207,6 +1223,8 @@ module Aws::Route53
1207
1223
  # },
1208
1224
  # })
1209
1225
  #
1226
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteVPCAssociationAuthorization AWS API Documentation
1227
+ #
1210
1228
  # @overload delete_vpc_association_authorization(params = {})
1211
1229
  # @param [Hash] params ({})
1212
1230
  def delete_vpc_association_authorization(params = {}, options = {})
@@ -1262,6 +1280,8 @@ module Aws::Route53
1262
1280
  # resp.change_info.submitted_at #=> Time
1263
1281
  # resp.change_info.comment #=> String
1264
1282
  #
1283
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DisassociateVPCFromHostedZone AWS API Documentation
1284
+ #
1265
1285
  # @overload disassociate_vpc_from_hosted_zone(params = {})
1266
1286
  # @param [Hash] params ({})
1267
1287
  def disassociate_vpc_from_hosted_zone(params = {}, options = {})
@@ -1301,6 +1321,8 @@ module Aws::Route53
1301
1321
  # resp.change_info.submitted_at #=> Time
1302
1322
  # resp.change_info.comment #=> String
1303
1323
  #
1324
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetChange AWS API Documentation
1325
+ #
1304
1326
  # @overload get_change(params = {})
1305
1327
  # @param [Hash] params ({})
1306
1328
  def get_change(params = {}, options = {})
@@ -1308,11 +1330,14 @@ module Aws::Route53
1308
1330
  req.send_request(options)
1309
1331
  end
1310
1332
 
1311
- # Retrieves a list of the IP ranges used by Amazon Route 53 health
1312
- # checkers to check the health of your resources. Send a `GET` request
1313
- # to the `/Amazon Route 53 API version/checkeripranges` resource. Use
1314
- # these IP addresses to configure router and firewall rules to allow
1315
- # health checkers to check the health of your resources.
1333
+ # `GetCheckerIpRanges` still works, but we recommend that you download
1334
+ # ip-ranges.json, which includes IP address ranges for all AWS services.
1335
+ # For more information, see [IP Address Ranges of Amazon Route 53
1336
+ # Servers][1] in the *Amazon Route 53 Developer Guide*.
1337
+ #
1338
+ #
1339
+ #
1340
+ # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/route-53-ip-addresses.html
1316
1341
  #
1317
1342
  # @return [Types::GetCheckerIpRangesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1318
1343
  #
@@ -1323,6 +1348,8 @@ module Aws::Route53
1323
1348
  # resp.checker_ip_ranges #=> Array
1324
1349
  # resp.checker_ip_ranges[0] #=> String
1325
1350
  #
1351
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetCheckerIpRanges AWS API Documentation
1352
+ #
1326
1353
  # @overload get_checker_ip_ranges(params = {})
1327
1354
  # @param [Hash] params ({})
1328
1355
  def get_checker_ip_ranges(params = {}, options = {})
@@ -1390,6 +1417,8 @@ module Aws::Route53
1390
1417
  # resp.geo_location_details.subdivision_code #=> String
1391
1418
  # resp.geo_location_details.subdivision_name #=> String
1392
1419
  #
1420
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetGeoLocation AWS API Documentation
1421
+ #
1393
1422
  # @overload get_geo_location(params = {})
1394
1423
  # @param [Hash] params ({})
1395
1424
  def get_geo_location(params = {}, options = {})
@@ -1458,6 +1487,8 @@ module Aws::Route53
1458
1487
  # resp.health_check.cloud_watch_alarm_configuration.dimensions[0].name #=> String
1459
1488
  # resp.health_check.cloud_watch_alarm_configuration.dimensions[0].value #=> String
1460
1489
  #
1490
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheck AWS API Documentation
1491
+ #
1461
1492
  # @overload get_health_check(params = {})
1462
1493
  # @param [Hash] params ({})
1463
1494
  def get_health_check(params = {}, options = {})
@@ -1476,6 +1507,8 @@ module Aws::Route53
1476
1507
  #
1477
1508
  # resp.health_check_count #=> Integer
1478
1509
  #
1510
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckCount AWS API Documentation
1511
+ #
1479
1512
  # @overload get_health_check_count(params = {})
1480
1513
  # @param [Hash] params ({})
1481
1514
  def get_health_check_count(params = {}, options = {})
@@ -1511,6 +1544,8 @@ module Aws::Route53
1511
1544
  # resp.health_check_observations[0].status_report.status #=> String
1512
1545
  # resp.health_check_observations[0].status_report.checked_time #=> Time
1513
1546
  #
1547
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckLastFailureReason AWS API Documentation
1548
+ #
1514
1549
  # @overload get_health_check_last_failure_reason(params = {})
1515
1550
  # @param [Hash] params ({})
1516
1551
  def get_health_check_last_failure_reason(params = {}, options = {})
@@ -1523,69 +1558,16 @@ module Aws::Route53
1523
1558
  # this call to get a health check's current status.
1524
1559
  #
1525
1560
  # @option params [required, String] :health_check_id
1526
- # If you want Amazon Route 53 to return this resource record set in
1527
- # response to a DNS query only when a health check is passing, include
1528
- # the `HealthCheckId` element and specify the ID of the applicable
1529
- # health check.
1530
- #
1531
- # Amazon Route 53 determines whether a resource record set is healthy by
1532
- # periodically sending a request to the endpoint that is specified in
1533
- # the health check. If that endpoint returns an HTTP status code of 2xx
1534
- # or 3xx, the endpoint is healthy. If the endpoint returns an HTTP
1535
- # status code of 400 or greater, or if the endpoint doesn't respond for
1536
- # a certain amount of time, Amazon Route 53 considers the endpoint
1537
- # unhealthy and also considers the resource record set unhealthy.
1538
- #
1539
- # The `HealthCheckId` element is only useful when Amazon Route 53 is
1540
- # choosing between two or more resource record sets to respond to a DNS
1541
- # query, and you want Amazon Route 53 to base the choice in part on the
1542
- # status of a health check. Configuring health checks only makes sense
1543
- # in the following configurations:
1544
- #
1545
- # * You're checking the health of the resource record sets in a
1546
- # weighted, latency, geolocation, or failover resource record set, and
1547
- # you specify health check IDs for all of the resource record sets. If
1548
- # the health check for one resource record set specifies an endpoint
1549
- # that is not healthy, Amazon Route 53 stops responding to queries
1550
- # using the value for that resource record set.
1551
- #
1552
- # * You set `EvaluateTargetHealth` to `true` for the resource record
1553
- # sets in an alias, weighted alias, latency alias, geolocation alias,
1554
- # or failover alias resource record set, and you specify health check
1555
- # IDs for all of the resource record sets that are referenced by the
1556
- # alias resource record sets. For more information about this
1557
- # configuration, see `EvaluateTargetHealth`.
1558
- #
1559
- # Amazon Route 53 doesn't check the health of the endpoint specified
1560
- # in the resource record set, for example, the endpoint specified by
1561
- # the IP address in the `Value` element. When you add a
1562
- # `HealthCheckId` element to a resource record set, Amazon Route 53
1563
- # checks the health of the endpoint that you specified in the health
1564
- # check.
1565
- #
1566
- # For geolocation resource record sets, if an endpoint is unhealthy,
1567
- # Amazon Route 53 looks for a resource record set for the larger,
1568
- # associated geographic region. For example, suppose you have resource
1569
- # record sets for a state in the United States, for the United States,
1570
- # for North America, and for all locations. If the endpoint for the
1571
- # state resource record set is unhealthy, Amazon Route 53 checks the
1572
- # resource record sets for the United States, for North America, and for
1573
- # all locations (a resource record set for which the value of
1574
- # CountryCode is `*`), in that order, until it finds a resource record
1575
- # set for which the endpoint is healthy.
1576
- #
1577
- # If your health checks specify the endpoint only by domain name, we
1578
- # recommend that you create a separate health check for each endpoint.
1579
- # For example, create a health check for each HTTP server that is
1580
- # serving content for www.example.com. For the value of
1581
- # `FullyQualifiedDomainName`, specify the domain name of the server
1582
- # (such as `us-east-1-www.example.com`), not the name of the resource
1583
- # record sets (example.com).
1584
- #
1585
- # In this configuration, if you create a health check for which the
1586
- # value of `FullyQualifiedDomainName` matches the name of the resource
1587
- # record sets and then associate the health check with those resource
1588
- # record sets, health check results will be unpredictable.
1561
+ # The ID for the health check for which you want the current status.
1562
+ # When you created the health check, `CreateHealthCheck` returned the ID
1563
+ # in the response, in the `HealthCheckId` element.
1564
+ #
1565
+ # <note markdown="1"> If you want to check the status of a calculated health check, you must
1566
+ # use the Amazon Route 53 console or the CloudWatch console. You can't
1567
+ # use `GetHealthCheckStatus` to get the status of a calculated health
1568
+ # check.
1569
+ #
1570
+ # </note>
1589
1571
  #
1590
1572
  # @return [Types::GetHealthCheckStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1591
1573
  #
@@ -1605,6 +1587,8 @@ module Aws::Route53
1605
1587
  # resp.health_check_observations[0].status_report.status #=> String
1606
1588
  # resp.health_check_observations[0].status_report.checked_time #=> Time
1607
1589
  #
1590
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckStatus AWS API Documentation
1591
+ #
1608
1592
  # @overload get_health_check_status(params = {})
1609
1593
  # @param [Hash] params ({})
1610
1594
  def get_health_check_status(params = {}, options = {})
@@ -1648,6 +1632,8 @@ module Aws::Route53
1648
1632
  # resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "sa-east-1", "ca-central-1", "cn-north-1"
1649
1633
  # resp.vp_cs[0].vpc_id #=> String
1650
1634
  #
1635
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZone AWS API Documentation
1636
+ #
1651
1637
  # @overload get_hosted_zone(params = {})
1652
1638
  # @param [Hash] params ({})
1653
1639
  def get_hosted_zone(params = {}, options = {})
@@ -1666,6 +1652,8 @@ module Aws::Route53
1666
1652
  #
1667
1653
  # resp.hosted_zone_count #=> Integer
1668
1654
  #
1655
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZoneCount AWS API Documentation
1656
+ #
1669
1657
  # @overload get_hosted_zone_count(params = {})
1670
1658
  # @param [Hash] params ({})
1671
1659
  def get_hosted_zone_count(params = {}, options = {})
@@ -1697,6 +1685,8 @@ module Aws::Route53
1697
1685
  # resp.delegation_set.name_servers #=> Array
1698
1686
  # resp.delegation_set.name_servers[0] #=> String
1699
1687
  #
1688
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetReusableDelegationSet AWS API Documentation
1689
+ #
1700
1690
  # @overload get_reusable_delegation_set(params = {})
1701
1691
  # @param [Hash] params ({})
1702
1692
  def get_reusable_delegation_set(params = {}, options = {})
@@ -1736,6 +1726,8 @@ module Aws::Route53
1736
1726
  # resp.traffic_policy.document #=> String
1737
1727
  # resp.traffic_policy.comment #=> String
1738
1728
  #
1729
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicy AWS API Documentation
1730
+ #
1739
1731
  # @overload get_traffic_policy(params = {})
1740
1732
  # @param [Hash] params ({})
1741
1733
  def get_traffic_policy(params = {}, options = {})
@@ -1787,6 +1779,8 @@ module Aws::Route53
1787
1779
  # resp.traffic_policy_instance.traffic_policy_version #=> Integer
1788
1780
  # resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA"
1789
1781
  #
1782
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyInstance AWS API Documentation
1783
+ #
1790
1784
  # @overload get_traffic_policy_instance(params = {})
1791
1785
  # @param [Hash] params ({})
1792
1786
  def get_traffic_policy_instance(params = {}, options = {})
@@ -1808,6 +1802,8 @@ module Aws::Route53
1808
1802
  #
1809
1803
  # resp.traffic_policy_instance_count #=> Integer
1810
1804
  #
1805
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyInstanceCount AWS API Documentation
1806
+ #
1811
1807
  # @overload get_traffic_policy_instance_count(params = {})
1812
1808
  # @param [Hash] params ({})
1813
1809
  def get_traffic_policy_instance_count(params = {}, options = {})
@@ -1903,6 +1899,8 @@ module Aws::Route53
1903
1899
  # resp.next_subdivision_code #=> String
1904
1900
  # resp.max_items #=> Integer
1905
1901
  #
1902
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListGeoLocations AWS API Documentation
1903
+ #
1906
1904
  # @overload list_geo_locations(params = {})
1907
1905
  # @param [Hash] params ({})
1908
1906
  def list_geo_locations(params = {}, options = {})
@@ -2007,6 +2005,8 @@ module Aws::Route53
2007
2005
  # resp.next_marker #=> String
2008
2006
  # resp.max_items #=> Integer
2009
2007
  #
2008
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHealthChecks AWS API Documentation
2009
+ #
2010
2010
  # @overload list_health_checks(params = {})
2011
2011
  # @param [Hash] params ({})
2012
2012
  def list_health_checks(params = {}, options = {})
@@ -2095,6 +2095,8 @@ module Aws::Route53
2095
2095
  # resp.next_marker #=> String
2096
2096
  # resp.max_items #=> Integer
2097
2097
  #
2098
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZones AWS API Documentation
2099
+ #
2098
2100
  # @overload list_hosted_zones(params = {})
2099
2101
  # @param [Hash] params ({})
2100
2102
  def list_hosted_zones(params = {}, options = {})
@@ -2229,6 +2231,8 @@ module Aws::Route53
2229
2231
  # resp.next_hosted_zone_id #=> String
2230
2232
  # resp.max_items #=> Integer
2231
2233
  #
2234
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesByName AWS API Documentation
2235
+ #
2232
2236
  # @overload list_hosted_zones_by_name(params = {})
2233
2237
  # @param [Hash] params ({})
2234
2238
  def list_hosted_zones_by_name(params = {}, options = {})
@@ -2378,6 +2382,8 @@ module Aws::Route53
2378
2382
  # resp.next_record_identifier #=> String
2379
2383
  # resp.max_items #=> Integer
2380
2384
  #
2385
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListResourceRecordSets AWS API Documentation
2386
+ #
2381
2387
  # @overload list_resource_record_sets(params = {})
2382
2388
  # @param [Hash] params ({})
2383
2389
  def list_resource_record_sets(params = {}, options = {})
@@ -2435,6 +2441,8 @@ module Aws::Route53
2435
2441
  # resp.next_marker #=> String
2436
2442
  # resp.max_items #=> Integer
2437
2443
  #
2444
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListReusableDelegationSets AWS API Documentation
2445
+ #
2438
2446
  # @overload list_reusable_delegation_sets(params = {})
2439
2447
  # @param [Hash] params ({})
2440
2448
  def list_reusable_delegation_sets(params = {}, options = {})
@@ -2481,6 +2489,8 @@ module Aws::Route53
2481
2489
  # resp.resource_tag_set.tags[0].key #=> String
2482
2490
  # resp.resource_tag_set.tags[0].value #=> String
2483
2491
  #
2492
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTagsForResource AWS API Documentation
2493
+ #
2484
2494
  # @overload list_tags_for_resource(params = {})
2485
2495
  # @param [Hash] params ({})
2486
2496
  def list_tags_for_resource(params = {}, options = {})
@@ -2529,6 +2539,8 @@ module Aws::Route53
2529
2539
  # resp.resource_tag_sets[0].tags[0].key #=> String
2530
2540
  # resp.resource_tag_sets[0].tags[0].value #=> String
2531
2541
  #
2542
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTagsForResources AWS API Documentation
2543
+ #
2532
2544
  # @overload list_tags_for_resources(params = {})
2533
2545
  # @param [Hash] params ({})
2534
2546
  def list_tags_for_resources(params = {}, options = {})
@@ -2620,6 +2632,8 @@ module Aws::Route53
2620
2632
  # resp.traffic_policy_id_marker #=> String
2621
2633
  # resp.max_items #=> Integer
2622
2634
  #
2635
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicies AWS API Documentation
2636
+ #
2623
2637
  # @overload list_traffic_policies(params = {})
2624
2638
  # @param [Hash] params ({})
2625
2639
  def list_traffic_policies(params = {}, options = {})
@@ -2758,6 +2772,8 @@ module Aws::Route53
2758
2772
  # resp.is_truncated #=> Boolean
2759
2773
  # resp.max_items #=> Integer
2760
2774
  #
2775
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyInstances AWS API Documentation
2776
+ #
2761
2777
  # @overload list_traffic_policy_instances(params = {})
2762
2778
  # @param [Hash] params ({})
2763
2779
  def list_traffic_policy_instances(params = {}, options = {})
@@ -2880,6 +2896,8 @@ module Aws::Route53
2880
2896
  # resp.is_truncated #=> Boolean
2881
2897
  # resp.max_items #=> Integer
2882
2898
  #
2899
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyInstancesByHostedZone AWS API Documentation
2900
+ #
2883
2901
  # @overload list_traffic_policy_instances_by_hosted_zone(params = {})
2884
2902
  # @param [Hash] params ({})
2885
2903
  def list_traffic_policy_instances_by_hosted_zone(params = {}, options = {})
@@ -3037,6 +3055,8 @@ module Aws::Route53
3037
3055
  # resp.is_truncated #=> Boolean
3038
3056
  # resp.max_items #=> Integer
3039
3057
  #
3058
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyInstancesByPolicy AWS API Documentation
3059
+ #
3040
3060
  # @overload list_traffic_policy_instances_by_policy(params = {})
3041
3061
  # @param [Hash] params ({})
3042
3062
  def list_traffic_policy_instances_by_policy(params = {}, options = {})
@@ -3137,6 +3157,8 @@ module Aws::Route53
3137
3157
  # resp.traffic_policy_version_marker #=> String
3138
3158
  # resp.max_items #=> Integer
3139
3159
  #
3160
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyVersions AWS API Documentation
3161
+ #
3140
3162
  # @overload list_traffic_policy_versions(params = {})
3141
3163
  # @param [Hash] params ({})
3142
3164
  def list_traffic_policy_versions(params = {}, options = {})
@@ -3206,6 +3228,8 @@ module Aws::Route53
3206
3228
  # resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "sa-east-1", "ca-central-1", "cn-north-1"
3207
3229
  # resp.vp_cs[0].vpc_id #=> String
3208
3230
  #
3231
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListVPCAssociationAuthorizations AWS API Documentation
3232
+ #
3209
3233
  # @overload list_vpc_association_authorizations(params = {})
3210
3234
  # @param [Hash] params ({})
3211
3235
  def list_vpc_association_authorizations(params = {}, options = {})
@@ -3277,6 +3301,8 @@ module Aws::Route53
3277
3301
  # resp.response_code #=> String
3278
3302
  # resp.protocol #=> String
3279
3303
  #
3304
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TestDNSAnswer AWS API Documentation
3305
+ #
3280
3306
  # @overload test_dns_answer(params = {})
3281
3307
  # @param [Hash] params ({})
3282
3308
  def test_dns_answer(params = {}, options = {})
@@ -3330,6 +3356,17 @@ module Aws::Route53
3330
3356
  # that is returned by DNS, Amazon Route 53 then checks the health of the
3331
3357
  # endpoint.
3332
3358
  #
3359
+ # Use one of the following formats for the value of `IPAddress`\:
3360
+ #
3361
+ # * **IPv4 address**\: four values between 0 and 255, separated by
3362
+ # periods (.), for example, `192.0.2.44`.
3363
+ #
3364
+ # * **IPv6 address**\: eight groups of four hexadecimal values,
3365
+ # separated by colons (:), for example,
3366
+ # `2001:0db8:85a3:0000:0000:abcd:0001:2345`. You can also shorten IPv6
3367
+ # addresses as described in RFC 5952, for example,
3368
+ # `2001:db8:85a3::abcd:1:2345`.
3369
+ #
3333
3370
  # If the endpoint is an EC2 instance, we recommend that you create an
3334
3371
  # Elastic IP address, associate it with your EC2 instance, and specify
3335
3372
  # the Elastic IP address for `IPAddress`. This ensures that the IP
@@ -3436,7 +3473,7 @@ module Aws::Route53
3436
3473
  # health check for each endpoint. For example, create a health check for
3437
3474
  # each HTTP server that is serving content for www.example.com. For the
3438
3475
  # value of `FullyQualifiedDomainName`, specify the domain name of the
3439
- # server (such as `us-east-1-www.example.com`), not the name of the
3476
+ # server (such as `us-east-2-www.example.com`), not the name of the
3440
3477
  # resource record sets (www.example.com).
3441
3478
  #
3442
3479
  # In this configuration, if the value of `FullyQualifiedDomainName`
@@ -3464,6 +3501,9 @@ module Aws::Route53
3464
3501
  # [How Amazon Route 53 Determines Whether an Endpoint Is Healthy][1] in
3465
3502
  # the *Amazon Route 53 Developer Guide*.
3466
3503
  #
3504
+ # If you don't specify a value for `FailureThreshold`, the default
3505
+ # value is three health checks.
3506
+ #
3467
3507
  #
3468
3508
  #
3469
3509
  # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
@@ -3608,6 +3648,8 @@ module Aws::Route53
3608
3648
  # resp.health_check.cloud_watch_alarm_configuration.dimensions[0].name #=> String
3609
3649
  # resp.health_check.cloud_watch_alarm_configuration.dimensions[0].value #=> String
3610
3650
  #
3651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHealthCheck AWS API Documentation
3652
+ #
3611
3653
  # @overload update_health_check(params = {})
3612
3654
  # @param [Hash] params ({})
3613
3655
  def update_health_check(params = {}, options = {})
@@ -3646,6 +3688,8 @@ module Aws::Route53
3646
3688
  # resp.hosted_zone.config.private_zone #=> Boolean
3647
3689
  # resp.hosted_zone.resource_record_set_count #=> Integer
3648
3690
  #
3691
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHostedZoneComment AWS API Documentation
3692
+ #
3649
3693
  # @overload update_hosted_zone_comment(params = {})
3650
3694
  # @param [Hash] params ({})
3651
3695
  def update_hosted_zone_comment(params = {}, options = {})
@@ -3692,6 +3736,8 @@ module Aws::Route53
3692
3736
  # resp.traffic_policy.document #=> String
3693
3737
  # resp.traffic_policy.comment #=> String
3694
3738
  #
3739
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateTrafficPolicyComment AWS API Documentation
3740
+ #
3695
3741
  # @overload update_traffic_policy_comment(params = {})
3696
3742
  # @param [Hash] params ({})
3697
3743
  def update_traffic_policy_comment(params = {}, options = {})
@@ -3766,6 +3812,8 @@ module Aws::Route53
3766
3812
  # resp.traffic_policy_instance.traffic_policy_version #=> Integer
3767
3813
  # resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA"
3768
3814
  #
3815
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateTrafficPolicyInstance AWS API Documentation
3816
+ #
3769
3817
  # @overload update_traffic_policy_instance(params = {})
3770
3818
  # @param [Hash] params ({})
3771
3819
  def update_traffic_policy_instance(params = {}, options = {})
@@ -3786,7 +3834,7 @@ module Aws::Route53
3786
3834
  params: params,
3787
3835
  config: config)
3788
3836
  context[:gem_name] = 'aws-sdk-route53'
3789
- context[:gem_version] = '1.0.0.rc1'
3837
+ context[:gem_version] = '1.0.0.rc3'
3790
3838
  Seahorse::Client::Request.new(handlers, context)
3791
3839
  end
3792
3840