aws-sdk-route53 1.24.0 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-route53.rb +1 -1
- data/lib/aws-sdk-route53/client.rb +1 -1
- data/lib/aws-sdk-route53/client_api.rb +154 -0
- data/lib/aws-sdk-route53/errors.rb +821 -0
- data/lib/aws-sdk-route53/types.rb +834 -0
- metadata +4 -4
@@ -944,6 +944,69 @@ module Aws::Route53
|
|
944
944
|
include Aws::Structure
|
945
945
|
end
|
946
946
|
|
947
|
+
# Another user submitted a request to create, update, or delete the
|
948
|
+
# object at the same time that you did. Retry the request.
|
949
|
+
#
|
950
|
+
# @!attribute [rw] message
|
951
|
+
# Descriptive message for the error response.
|
952
|
+
# @return [String]
|
953
|
+
#
|
954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ConcurrentModification AWS API Documentation
|
955
|
+
#
|
956
|
+
class ConcurrentModification < Struct.new(
|
957
|
+
:message)
|
958
|
+
include Aws::Structure
|
959
|
+
end
|
960
|
+
|
961
|
+
# The cause of this error depends on whether you're trying to create a
|
962
|
+
# public or a private hosted zone:
|
963
|
+
#
|
964
|
+
# * **Public hosted zone:** Two hosted zones that have the same name or
|
965
|
+
# that have a parent/child relationship (example.com and
|
966
|
+
# test.example.com) can't have any common name servers. You tried to
|
967
|
+
# create a hosted zone that has the same name as an existing hosted
|
968
|
+
# zone or that's the parent or child of an existing hosted zone, and
|
969
|
+
# you specified a delegation set that shares one or more name servers
|
970
|
+
# with the existing hosted zone. For more information, see
|
971
|
+
# [CreateReusableDelegationSet][1].
|
972
|
+
#
|
973
|
+
# * **Private hosted zone:** You specified an Amazon VPC that you're
|
974
|
+
# already using for another hosted zone, and the domain that you
|
975
|
+
# specified for one of the hosted zones is a subdomain of the domain
|
976
|
+
# that you specified for the other hosted zone. For example, you
|
977
|
+
# can't use the same Amazon VPC for the hosted zones for example.com
|
978
|
+
# and test.example.com.
|
979
|
+
#
|
980
|
+
#
|
981
|
+
#
|
982
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateReusableDelegationSet.html
|
983
|
+
#
|
984
|
+
# @!attribute [rw] message
|
985
|
+
# @return [String]
|
986
|
+
#
|
987
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ConflictingDomainExists AWS API Documentation
|
988
|
+
#
|
989
|
+
class ConflictingDomainExists < Struct.new(
|
990
|
+
:message)
|
991
|
+
include Aws::Structure
|
992
|
+
end
|
993
|
+
|
994
|
+
# You tried to update a traffic policy instance by using a traffic
|
995
|
+
# policy version that has a different DNS type than the current type for
|
996
|
+
# the instance. You specified the type in the JSON document in the
|
997
|
+
# `CreateTrafficPolicy` or `CreateTrafficPolicyVersion`request.
|
998
|
+
#
|
999
|
+
# @!attribute [rw] message
|
1000
|
+
# Descriptive message for the error response.
|
1001
|
+
# @return [String]
|
1002
|
+
#
|
1003
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ConflictingTypes AWS API Documentation
|
1004
|
+
#
|
1005
|
+
class ConflictingTypes < Struct.new(
|
1006
|
+
:message)
|
1007
|
+
include Aws::Structure
|
1008
|
+
end
|
1009
|
+
|
947
1010
|
# A complex type that contains the health check request information.
|
948
1011
|
#
|
949
1012
|
# @note When making an API call, you may pass CreateHealthCheckRequest
|
@@ -1535,6 +1598,77 @@ module Aws::Route53
|
|
1535
1598
|
include Aws::Structure
|
1536
1599
|
end
|
1537
1600
|
|
1601
|
+
# A delegation set with the same owner and caller reference combination
|
1602
|
+
# has already been created.
|
1603
|
+
#
|
1604
|
+
# @!attribute [rw] message
|
1605
|
+
# Descriptive message for the error response.
|
1606
|
+
# @return [String]
|
1607
|
+
#
|
1608
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DelegationSetAlreadyCreated AWS API Documentation
|
1609
|
+
#
|
1610
|
+
class DelegationSetAlreadyCreated < Struct.new(
|
1611
|
+
:message)
|
1612
|
+
include Aws::Structure
|
1613
|
+
end
|
1614
|
+
|
1615
|
+
# The specified delegation set has already been marked as reusable.
|
1616
|
+
#
|
1617
|
+
# @!attribute [rw] message
|
1618
|
+
# Descriptive message for the error response.
|
1619
|
+
# @return [String]
|
1620
|
+
#
|
1621
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DelegationSetAlreadyReusable AWS API Documentation
|
1622
|
+
#
|
1623
|
+
class DelegationSetAlreadyReusable < Struct.new(
|
1624
|
+
:message)
|
1625
|
+
include Aws::Structure
|
1626
|
+
end
|
1627
|
+
|
1628
|
+
# The specified delegation contains associated hosted zones which must
|
1629
|
+
# be deleted before the reusable delegation set can be deleted.
|
1630
|
+
#
|
1631
|
+
# @!attribute [rw] message
|
1632
|
+
# Descriptive message for the error response.
|
1633
|
+
# @return [String]
|
1634
|
+
#
|
1635
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DelegationSetInUse AWS API Documentation
|
1636
|
+
#
|
1637
|
+
class DelegationSetInUse < Struct.new(
|
1638
|
+
:message)
|
1639
|
+
include Aws::Structure
|
1640
|
+
end
|
1641
|
+
|
1642
|
+
# You can create a hosted zone that has the same name as an existing
|
1643
|
+
# hosted zone (example.com is common), but there is a limit to the
|
1644
|
+
# number of hosted zones that have the same name. If you get this error,
|
1645
|
+
# Amazon Route 53 has reached that limit. If you own the domain name and
|
1646
|
+
# Route 53 generates this error, contact Customer Support.
|
1647
|
+
#
|
1648
|
+
# @!attribute [rw] message
|
1649
|
+
# Descriptive message for the error response.
|
1650
|
+
# @return [String]
|
1651
|
+
#
|
1652
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DelegationSetNotAvailable AWS API Documentation
|
1653
|
+
#
|
1654
|
+
class DelegationSetNotAvailable < Struct.new(
|
1655
|
+
:message)
|
1656
|
+
include Aws::Structure
|
1657
|
+
end
|
1658
|
+
|
1659
|
+
# A reusable delegation set with the specified ID does not exist.
|
1660
|
+
#
|
1661
|
+
# @!attribute [rw] message
|
1662
|
+
# Descriptive message for the error response.
|
1663
|
+
# @return [String]
|
1664
|
+
#
|
1665
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DelegationSetNotReusable AWS API Documentation
|
1666
|
+
#
|
1667
|
+
class DelegationSetNotReusable < Struct.new(
|
1668
|
+
:message)
|
1669
|
+
include Aws::Structure
|
1670
|
+
end
|
1671
|
+
|
1538
1672
|
# This action deletes a health check.
|
1539
1673
|
#
|
1540
1674
|
# @note When making an API call, you may pass DeleteHealthCheckRequest
|
@@ -2649,6 +2783,29 @@ module Aws::Route53
|
|
2649
2783
|
include Aws::Structure
|
2650
2784
|
end
|
2651
2785
|
|
2786
|
+
# The health check you're attempting to create already exists. Amazon
|
2787
|
+
# Route 53 returns this error when you submit a request that has the
|
2788
|
+
# following values:
|
2789
|
+
#
|
2790
|
+
# * The same value for `CallerReference` as an existing health check,
|
2791
|
+
# and one or more values that differ from the existing health check
|
2792
|
+
# that has the same caller reference.
|
2793
|
+
#
|
2794
|
+
# * The same value for `CallerReference` as a health check that you
|
2795
|
+
# created and later deleted, regardless of the other settings in the
|
2796
|
+
# request.
|
2797
|
+
#
|
2798
|
+
# @!attribute [rw] message
|
2799
|
+
# Descriptive message for the error response.
|
2800
|
+
# @return [String]
|
2801
|
+
#
|
2802
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HealthCheckAlreadyExists AWS API Documentation
|
2803
|
+
#
|
2804
|
+
class HealthCheckAlreadyExists < Struct.new(
|
2805
|
+
:message)
|
2806
|
+
include Aws::Structure
|
2807
|
+
end
|
2808
|
+
|
2652
2809
|
# A complex type that contains information about the health check.
|
2653
2810
|
#
|
2654
2811
|
# @note When making an API call, you may pass HealthCheckConfig
|
@@ -3057,6 +3214,19 @@ module Aws::Route53
|
|
3057
3214
|
include Aws::Structure
|
3058
3215
|
end
|
3059
3216
|
|
3217
|
+
# This error code is not in use.
|
3218
|
+
#
|
3219
|
+
# @!attribute [rw] message
|
3220
|
+
# Descriptive message for the error response.
|
3221
|
+
# @return [String]
|
3222
|
+
#
|
3223
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HealthCheckInUse AWS API Documentation
|
3224
|
+
#
|
3225
|
+
class HealthCheckInUse < Struct.new(
|
3226
|
+
:message)
|
3227
|
+
include Aws::Structure
|
3228
|
+
end
|
3229
|
+
|
3060
3230
|
# A complex type that contains the last failure reason as reported by
|
3061
3231
|
# one Amazon Route 53 health checker.
|
3062
3232
|
#
|
@@ -3085,6 +3255,19 @@ module Aws::Route53
|
|
3085
3255
|
include Aws::Structure
|
3086
3256
|
end
|
3087
3257
|
|
3258
|
+
# The value of `HealthCheckVersion` in the request doesn't match the
|
3259
|
+
# value of `HealthCheckVersion` in the health check.
|
3260
|
+
#
|
3261
|
+
# @!attribute [rw] message
|
3262
|
+
# @return [String]
|
3263
|
+
#
|
3264
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HealthCheckVersionMismatch AWS API Documentation
|
3265
|
+
#
|
3266
|
+
class HealthCheckVersionMismatch < Struct.new(
|
3267
|
+
:message)
|
3268
|
+
include Aws::Structure
|
3269
|
+
end
|
3270
|
+
|
3088
3271
|
# A complex type that contains general information about the hosted
|
3089
3272
|
# zone.
|
3090
3273
|
#
|
@@ -3140,6 +3323,21 @@ module Aws::Route53
|
|
3140
3323
|
include Aws::Structure
|
3141
3324
|
end
|
3142
3325
|
|
3326
|
+
# The hosted zone you're trying to create already exists. Amazon Route
|
3327
|
+
# 53 returns this error when a hosted zone has already been created with
|
3328
|
+
# the specified `CallerReference`.
|
3329
|
+
#
|
3330
|
+
# @!attribute [rw] message
|
3331
|
+
# Descriptive message for the error response.
|
3332
|
+
# @return [String]
|
3333
|
+
#
|
3334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneAlreadyExists AWS API Documentation
|
3335
|
+
#
|
3336
|
+
class HostedZoneAlreadyExists < Struct.new(
|
3337
|
+
:message)
|
3338
|
+
include Aws::Structure
|
3339
|
+
end
|
3340
|
+
|
3143
3341
|
# A complex type that contains an optional comment about your hosted
|
3144
3342
|
# zone. If you don't want to specify a comment, omit both the
|
3145
3343
|
# `HostedZoneConfig` and `Comment` elements.
|
@@ -3194,6 +3392,224 @@ module Aws::Route53
|
|
3194
3392
|
include Aws::Structure
|
3195
3393
|
end
|
3196
3394
|
|
3395
|
+
# The hosted zone contains resource records that are not SOA or NS
|
3396
|
+
# records.
|
3397
|
+
#
|
3398
|
+
# @!attribute [rw] message
|
3399
|
+
# Descriptive message for the error response.
|
3400
|
+
# @return [String]
|
3401
|
+
#
|
3402
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneNotEmpty AWS API Documentation
|
3403
|
+
#
|
3404
|
+
class HostedZoneNotEmpty < Struct.new(
|
3405
|
+
:message)
|
3406
|
+
include Aws::Structure
|
3407
|
+
end
|
3408
|
+
|
3409
|
+
# The specified HostedZone can't be found.
|
3410
|
+
#
|
3411
|
+
# @!attribute [rw] message
|
3412
|
+
# Descriptive message for the error response.
|
3413
|
+
# @return [String]
|
3414
|
+
#
|
3415
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneNotFound AWS API Documentation
|
3416
|
+
#
|
3417
|
+
class HostedZoneNotFound < Struct.new(
|
3418
|
+
:message)
|
3419
|
+
include Aws::Structure
|
3420
|
+
end
|
3421
|
+
|
3422
|
+
# The specified hosted zone is a public hosted zone, not a private
|
3423
|
+
# hosted zone.
|
3424
|
+
#
|
3425
|
+
# @!attribute [rw] message
|
3426
|
+
# Descriptive message for the error response.
|
3427
|
+
# @return [String]
|
3428
|
+
#
|
3429
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneNotPrivate AWS API Documentation
|
3430
|
+
#
|
3431
|
+
class HostedZoneNotPrivate < Struct.new(
|
3432
|
+
:message)
|
3433
|
+
include Aws::Structure
|
3434
|
+
end
|
3435
|
+
|
3436
|
+
# The resource you're trying to access is unsupported on this Amazon
|
3437
|
+
# Route 53 endpoint.
|
3438
|
+
#
|
3439
|
+
# @!attribute [rw] message
|
3440
|
+
# @return [String]
|
3441
|
+
#
|
3442
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/IncompatibleVersion AWS API Documentation
|
3443
|
+
#
|
3444
|
+
class IncompatibleVersion < Struct.new(
|
3445
|
+
:message)
|
3446
|
+
include Aws::Structure
|
3447
|
+
end
|
3448
|
+
|
3449
|
+
# Amazon Route 53 doesn't have the permissions required to create log
|
3450
|
+
# streams and send query logs to log streams. Possible causes include
|
3451
|
+
# the following:
|
3452
|
+
#
|
3453
|
+
# * There is no resource policy that specifies the log group ARN in the
|
3454
|
+
# value for `Resource`.
|
3455
|
+
#
|
3456
|
+
# * The resource policy that includes the log group ARN in the value for
|
3457
|
+
# `Resource` doesn't have the necessary permissions.
|
3458
|
+
#
|
3459
|
+
# * The resource policy hasn't finished propagating yet.
|
3460
|
+
#
|
3461
|
+
# @!attribute [rw] message
|
3462
|
+
# @return [String]
|
3463
|
+
#
|
3464
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InsufficientCloudWatchLogsResourcePolicy AWS API Documentation
|
3465
|
+
#
|
3466
|
+
class InsufficientCloudWatchLogsResourcePolicy < Struct.new(
|
3467
|
+
:message)
|
3468
|
+
include Aws::Structure
|
3469
|
+
end
|
3470
|
+
|
3471
|
+
# Parameter name is invalid.
|
3472
|
+
#
|
3473
|
+
# @!attribute [rw] message
|
3474
|
+
# Descriptive message for the error response.
|
3475
|
+
# @return [String]
|
3476
|
+
#
|
3477
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidArgument AWS API Documentation
|
3478
|
+
#
|
3479
|
+
class InvalidArgument < Struct.new(
|
3480
|
+
:message)
|
3481
|
+
include Aws::Structure
|
3482
|
+
end
|
3483
|
+
|
3484
|
+
# This exception contains a list of messages that might contain one or
|
3485
|
+
# more error messages. Each error message indicates one error in the
|
3486
|
+
# change batch.
|
3487
|
+
#
|
3488
|
+
# @!attribute [rw] messages
|
3489
|
+
# Descriptive message for the error response.
|
3490
|
+
# @return [Array<String>]
|
3491
|
+
#
|
3492
|
+
# @!attribute [rw] message
|
3493
|
+
# @return [String]
|
3494
|
+
#
|
3495
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidChangeBatch AWS API Documentation
|
3496
|
+
#
|
3497
|
+
class InvalidChangeBatch < Struct.new(
|
3498
|
+
:messages,
|
3499
|
+
:message)
|
3500
|
+
include Aws::Structure
|
3501
|
+
end
|
3502
|
+
|
3503
|
+
# The specified domain name is not valid.
|
3504
|
+
#
|
3505
|
+
# @!attribute [rw] message
|
3506
|
+
# Descriptive message for the error response.
|
3507
|
+
# @return [String]
|
3508
|
+
#
|
3509
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidDomainName AWS API Documentation
|
3510
|
+
#
|
3511
|
+
class InvalidDomainName < Struct.new(
|
3512
|
+
:message)
|
3513
|
+
include Aws::Structure
|
3514
|
+
end
|
3515
|
+
|
3516
|
+
# The input is not valid.
|
3517
|
+
#
|
3518
|
+
# @!attribute [rw] message
|
3519
|
+
# Descriptive message for the error response.
|
3520
|
+
# @return [String]
|
3521
|
+
#
|
3522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidInput AWS API Documentation
|
3523
|
+
#
|
3524
|
+
class InvalidInput < Struct.new(
|
3525
|
+
:message)
|
3526
|
+
include Aws::Structure
|
3527
|
+
end
|
3528
|
+
|
3529
|
+
# The value that you specified to get the second or subsequent page of
|
3530
|
+
# results is invalid.
|
3531
|
+
#
|
3532
|
+
# @!attribute [rw] message
|
3533
|
+
# @return [String]
|
3534
|
+
#
|
3535
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidPaginationToken AWS API Documentation
|
3536
|
+
#
|
3537
|
+
class InvalidPaginationToken < Struct.new(
|
3538
|
+
:message)
|
3539
|
+
include Aws::Structure
|
3540
|
+
end
|
3541
|
+
|
3542
|
+
# The format of the traffic policy document that you specified in the
|
3543
|
+
# `Document` element is invalid.
|
3544
|
+
#
|
3545
|
+
# @!attribute [rw] message
|
3546
|
+
# Descriptive message for the error response.
|
3547
|
+
# @return [String]
|
3548
|
+
#
|
3549
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidTrafficPolicyDocument AWS API Documentation
|
3550
|
+
#
|
3551
|
+
class InvalidTrafficPolicyDocument < Struct.new(
|
3552
|
+
:message)
|
3553
|
+
include Aws::Structure
|
3554
|
+
end
|
3555
|
+
|
3556
|
+
# The VPC ID that you specified either isn't a valid ID or the current
|
3557
|
+
# account is not authorized to access this VPC.
|
3558
|
+
#
|
3559
|
+
# @!attribute [rw] message
|
3560
|
+
# Descriptive message for the error response.
|
3561
|
+
# @return [String]
|
3562
|
+
#
|
3563
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidVPCId AWS API Documentation
|
3564
|
+
#
|
3565
|
+
class InvalidVPCId < Struct.new(
|
3566
|
+
:message)
|
3567
|
+
include Aws::Structure
|
3568
|
+
end
|
3569
|
+
|
3570
|
+
# The VPC that you're trying to disassociate from the private hosted
|
3571
|
+
# zone is the last VPC that is associated with the hosted zone. Amazon
|
3572
|
+
# Route 53 doesn't support disassociating the last VPC from a hosted
|
3573
|
+
# zone.
|
3574
|
+
#
|
3575
|
+
# @!attribute [rw] message
|
3576
|
+
# Descriptive message for the error response.
|
3577
|
+
# @return [String]
|
3578
|
+
#
|
3579
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/LastVPCAssociation AWS API Documentation
|
3580
|
+
#
|
3581
|
+
class LastVPCAssociation < Struct.new(
|
3582
|
+
:message)
|
3583
|
+
include Aws::Structure
|
3584
|
+
end
|
3585
|
+
|
3586
|
+
# This operation can't be completed either because the current account
|
3587
|
+
# has reached the limit on reusable delegation sets that it can create
|
3588
|
+
# or because you've reached the limit on the number of Amazon VPCs that
|
3589
|
+
# you can associate with a private hosted zone. To get the current limit
|
3590
|
+
# on the number of reusable delegation sets, see [GetAccountLimit][1].
|
3591
|
+
# To get the current limit on the number of Amazon VPCs that you can
|
3592
|
+
# associate with a private hosted zone, see [GetHostedZoneLimit][2]. To
|
3593
|
+
# request a higher limit, [create a case][3] with the AWS Support
|
3594
|
+
# Center.
|
3595
|
+
#
|
3596
|
+
#
|
3597
|
+
#
|
3598
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html
|
3599
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetHostedZoneLimit.html
|
3600
|
+
# [3]: http://aws.amazon.com/route53-request
|
3601
|
+
#
|
3602
|
+
# @!attribute [rw] message
|
3603
|
+
# Descriptive message for the error response.
|
3604
|
+
# @return [String]
|
3605
|
+
#
|
3606
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/LimitsExceeded AWS API Documentation
|
3607
|
+
#
|
3608
|
+
class LimitsExceeded < Struct.new(
|
3609
|
+
:message)
|
3610
|
+
include Aws::Structure
|
3611
|
+
end
|
3612
|
+
|
3197
3613
|
# If a health check or hosted zone was created by another service,
|
3198
3614
|
# `LinkedService` is a complex type that describes the service that
|
3199
3615
|
# created the resource. When a resource is created by another service,
|
@@ -4663,6 +5079,165 @@ module Aws::Route53
|
|
4663
5079
|
include Aws::Structure
|
4664
5080
|
end
|
4665
5081
|
|
5082
|
+
# A change with the specified change ID does not exist.
|
5083
|
+
#
|
5084
|
+
# @!attribute [rw] message
|
5085
|
+
# @return [String]
|
5086
|
+
#
|
5087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchChange AWS API Documentation
|
5088
|
+
#
|
5089
|
+
class NoSuchChange < Struct.new(
|
5090
|
+
:message)
|
5091
|
+
include Aws::Structure
|
5092
|
+
end
|
5093
|
+
|
5094
|
+
# There is no CloudWatch Logs log group with the specified ARN.
|
5095
|
+
#
|
5096
|
+
# @!attribute [rw] message
|
5097
|
+
# @return [String]
|
5098
|
+
#
|
5099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchCloudWatchLogsLogGroup AWS API Documentation
|
5100
|
+
#
|
5101
|
+
class NoSuchCloudWatchLogsLogGroup < Struct.new(
|
5102
|
+
:message)
|
5103
|
+
include Aws::Structure
|
5104
|
+
end
|
5105
|
+
|
5106
|
+
# A reusable delegation set with the specified ID does not exist.
|
5107
|
+
#
|
5108
|
+
# @!attribute [rw] message
|
5109
|
+
# Descriptive message for the error response.
|
5110
|
+
# @return [String]
|
5111
|
+
#
|
5112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchDelegationSet AWS API Documentation
|
5113
|
+
#
|
5114
|
+
class NoSuchDelegationSet < Struct.new(
|
5115
|
+
:message)
|
5116
|
+
include Aws::Structure
|
5117
|
+
end
|
5118
|
+
|
5119
|
+
# Amazon Route 53 doesn't support the specified geographic location.
|
5120
|
+
#
|
5121
|
+
# @!attribute [rw] message
|
5122
|
+
# Descriptive message for the error response.
|
5123
|
+
# @return [String]
|
5124
|
+
#
|
5125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchGeoLocation AWS API Documentation
|
5126
|
+
#
|
5127
|
+
class NoSuchGeoLocation < Struct.new(
|
5128
|
+
:message)
|
5129
|
+
include Aws::Structure
|
5130
|
+
end
|
5131
|
+
|
5132
|
+
# No health check exists with the specified ID.
|
5133
|
+
#
|
5134
|
+
# @!attribute [rw] message
|
5135
|
+
# Descriptive message for the error response.
|
5136
|
+
# @return [String]
|
5137
|
+
#
|
5138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchHealthCheck AWS API Documentation
|
5139
|
+
#
|
5140
|
+
class NoSuchHealthCheck < Struct.new(
|
5141
|
+
:message)
|
5142
|
+
include Aws::Structure
|
5143
|
+
end
|
5144
|
+
|
5145
|
+
# No hosted zone exists with the ID that you specified.
|
5146
|
+
#
|
5147
|
+
# @!attribute [rw] message
|
5148
|
+
# Descriptive message for the error response.
|
5149
|
+
# @return [String]
|
5150
|
+
#
|
5151
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchHostedZone AWS API Documentation
|
5152
|
+
#
|
5153
|
+
class NoSuchHostedZone < Struct.new(
|
5154
|
+
:message)
|
5155
|
+
include Aws::Structure
|
5156
|
+
end
|
5157
|
+
|
5158
|
+
# There is no DNS query logging configuration with the specified ID.
|
5159
|
+
#
|
5160
|
+
# @!attribute [rw] message
|
5161
|
+
# @return [String]
|
5162
|
+
#
|
5163
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchQueryLoggingConfig AWS API Documentation
|
5164
|
+
#
|
5165
|
+
class NoSuchQueryLoggingConfig < Struct.new(
|
5166
|
+
:message)
|
5167
|
+
include Aws::Structure
|
5168
|
+
end
|
5169
|
+
|
5170
|
+
# No traffic policy exists with the specified ID.
|
5171
|
+
#
|
5172
|
+
# @!attribute [rw] message
|
5173
|
+
# Descriptive message for the error response.
|
5174
|
+
# @return [String]
|
5175
|
+
#
|
5176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchTrafficPolicy AWS API Documentation
|
5177
|
+
#
|
5178
|
+
class NoSuchTrafficPolicy < Struct.new(
|
5179
|
+
:message)
|
5180
|
+
include Aws::Structure
|
5181
|
+
end
|
5182
|
+
|
5183
|
+
# No traffic policy instance exists with the specified ID.
|
5184
|
+
#
|
5185
|
+
# @!attribute [rw] message
|
5186
|
+
# Descriptive message for the error response.
|
5187
|
+
# @return [String]
|
5188
|
+
#
|
5189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchTrafficPolicyInstance AWS API Documentation
|
5190
|
+
#
|
5191
|
+
class NoSuchTrafficPolicyInstance < Struct.new(
|
5192
|
+
:message)
|
5193
|
+
include Aws::Structure
|
5194
|
+
end
|
5195
|
+
|
5196
|
+
# Associating the specified VPC with the specified hosted zone has not
|
5197
|
+
# been authorized.
|
5198
|
+
#
|
5199
|
+
# @!attribute [rw] message
|
5200
|
+
# Descriptive message for the error response.
|
5201
|
+
# @return [String]
|
5202
|
+
#
|
5203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NotAuthorizedException AWS API Documentation
|
5204
|
+
#
|
5205
|
+
class NotAuthorizedException < Struct.new(
|
5206
|
+
:message)
|
5207
|
+
include Aws::Structure
|
5208
|
+
end
|
5209
|
+
|
5210
|
+
# If Amazon Route 53 can't process a request before the next request
|
5211
|
+
# arrives, it will reject subsequent requests for the same hosted zone
|
5212
|
+
# and return an `HTTP 400 error` (`Bad request`). If Route 53 returns
|
5213
|
+
# this error repeatedly for the same request, we recommend that you
|
5214
|
+
# wait, in intervals of increasing duration, before you try the request
|
5215
|
+
# again.
|
5216
|
+
#
|
5217
|
+
# @!attribute [rw] message
|
5218
|
+
# @return [String]
|
5219
|
+
#
|
5220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/PriorRequestNotComplete AWS API Documentation
|
5221
|
+
#
|
5222
|
+
class PriorRequestNotComplete < Struct.new(
|
5223
|
+
:message)
|
5224
|
+
include Aws::Structure
|
5225
|
+
end
|
5226
|
+
|
5227
|
+
# You're trying to associate a VPC with a public hosted zone. Amazon
|
5228
|
+
# Route 53 doesn't support associating a VPC with a public hosted zone.
|
5229
|
+
#
|
5230
|
+
# @!attribute [rw] message
|
5231
|
+
# Descriptive message for the error response.
|
5232
|
+
# @return [String]
|
5233
|
+
#
|
5234
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/PublicZoneVPCAssociation AWS API Documentation
|
5235
|
+
#
|
5236
|
+
class PublicZoneVPCAssociation < Struct.new(
|
5237
|
+
:message)
|
5238
|
+
include Aws::Structure
|
5239
|
+
end
|
5240
|
+
|
4666
5241
|
# A complex type that contains information about a configuration for DNS
|
4667
5242
|
# query logging.
|
4668
5243
|
#
|
@@ -4689,6 +5264,19 @@ module Aws::Route53
|
|
4689
5264
|
include Aws::Structure
|
4690
5265
|
end
|
4691
5266
|
|
5267
|
+
# You can create only one query logging configuration for a hosted zone,
|
5268
|
+
# and a query logging configuration already exists for this hosted zone.
|
5269
|
+
#
|
5270
|
+
# @!attribute [rw] message
|
5271
|
+
# @return [String]
|
5272
|
+
#
|
5273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/QueryLoggingConfigAlreadyExists AWS API Documentation
|
5274
|
+
#
|
5275
|
+
class QueryLoggingConfigAlreadyExists < Struct.new(
|
5276
|
+
:message)
|
5277
|
+
include Aws::Structure
|
5278
|
+
end
|
5279
|
+
|
4692
5280
|
# Information specific to the resource record.
|
4693
5281
|
#
|
4694
5282
|
# <note markdown="1"> If you're creating an alias resource record set, omit
|
@@ -5574,6 +6162,185 @@ module Aws::Route53
|
|
5574
6162
|
include Aws::Structure
|
5575
6163
|
end
|
5576
6164
|
|
6165
|
+
# The limit on the number of requests per second was exceeded.
|
6166
|
+
#
|
6167
|
+
# @!attribute [rw] message
|
6168
|
+
# @return [String]
|
6169
|
+
#
|
6170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ThrottlingException AWS API Documentation
|
6171
|
+
#
|
6172
|
+
class ThrottlingException < Struct.new(
|
6173
|
+
:message)
|
6174
|
+
include Aws::Structure
|
6175
|
+
end
|
6176
|
+
|
6177
|
+
# This health check can't be created because the current account has
|
6178
|
+
# reached the limit on the number of active health checks.
|
6179
|
+
#
|
6180
|
+
# For information about default limits, see [Limits][1] in the *Amazon
|
6181
|
+
# Route 53 Developer Guide*.
|
6182
|
+
#
|
6183
|
+
# For information about how to get the current limit for an account, see
|
6184
|
+
# [GetAccountLimit][2]. To request a higher limit, [create a case][3]
|
6185
|
+
# with the AWS Support Center.
|
6186
|
+
#
|
6187
|
+
# You have reached the maximum number of active health checks for an AWS
|
6188
|
+
# account. To request a higher limit, [create a case][3] with the AWS
|
6189
|
+
# Support Center.
|
6190
|
+
#
|
6191
|
+
#
|
6192
|
+
#
|
6193
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
|
6194
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html
|
6195
|
+
# [3]: http://aws.amazon.com/route53-request
|
6196
|
+
#
|
6197
|
+
# @!attribute [rw] message
|
6198
|
+
# @return [String]
|
6199
|
+
#
|
6200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TooManyHealthChecks AWS API Documentation
|
6201
|
+
#
|
6202
|
+
class TooManyHealthChecks < Struct.new(
|
6203
|
+
:message)
|
6204
|
+
include Aws::Structure
|
6205
|
+
end
|
6206
|
+
|
6207
|
+
# This operation can't be completed either because the current account
|
6208
|
+
# has reached the limit on the number of hosted zones or because you've
|
6209
|
+
# reached the limit on the number of hosted zones that can be associated
|
6210
|
+
# with a reusable delegation set.
|
6211
|
+
#
|
6212
|
+
# For information about default limits, see [Limits][1] in the *Amazon
|
6213
|
+
# Route 53 Developer Guide*.
|
6214
|
+
#
|
6215
|
+
# To get the current limit on hosted zones that can be created by an
|
6216
|
+
# account, see [GetAccountLimit][2].
|
6217
|
+
#
|
6218
|
+
# To get the current limit on hosted zones that can be associated with a
|
6219
|
+
# reusable delegation set, see [GetReusableDelegationSetLimit][3].
|
6220
|
+
#
|
6221
|
+
# To request a higher limit, [create a case][4] with the AWS Support
|
6222
|
+
# Center.
|
6223
|
+
#
|
6224
|
+
#
|
6225
|
+
#
|
6226
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
|
6227
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html
|
6228
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetReusableDelegationSetLimit.html
|
6229
|
+
# [4]: http://aws.amazon.com/route53-request
|
6230
|
+
#
|
6231
|
+
# @!attribute [rw] message
|
6232
|
+
# Descriptive message for the error response.
|
6233
|
+
# @return [String]
|
6234
|
+
#
|
6235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TooManyHostedZones AWS API Documentation
|
6236
|
+
#
|
6237
|
+
class TooManyHostedZones < Struct.new(
|
6238
|
+
:message)
|
6239
|
+
include Aws::Structure
|
6240
|
+
end
|
6241
|
+
|
6242
|
+
# This traffic policy can't be created because the current account has
|
6243
|
+
# reached the limit on the number of traffic policies.
|
6244
|
+
#
|
6245
|
+
# For information about default limits, see [Limits][1] in the *Amazon
|
6246
|
+
# Route 53 Developer Guide*.
|
6247
|
+
#
|
6248
|
+
# To get the current limit for an account, see [GetAccountLimit][2].
|
6249
|
+
#
|
6250
|
+
# To request a higher limit, [create a case][3] with the AWS Support
|
6251
|
+
# Center.
|
6252
|
+
#
|
6253
|
+
#
|
6254
|
+
#
|
6255
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
|
6256
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html
|
6257
|
+
# [3]: http://aws.amazon.com/route53-request
|
6258
|
+
#
|
6259
|
+
# @!attribute [rw] message
|
6260
|
+
# Descriptive message for the error response.
|
6261
|
+
# @return [String]
|
6262
|
+
#
|
6263
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TooManyTrafficPolicies AWS API Documentation
|
6264
|
+
#
|
6265
|
+
class TooManyTrafficPolicies < Struct.new(
|
6266
|
+
:message)
|
6267
|
+
include Aws::Structure
|
6268
|
+
end
|
6269
|
+
|
6270
|
+
# This traffic policy instance can't be created because the current
|
6271
|
+
# account has reached the limit on the number of traffic policy
|
6272
|
+
# instances.
|
6273
|
+
#
|
6274
|
+
# For information about default limits, see [Limits][1] in the *Amazon
|
6275
|
+
# Route 53 Developer Guide*.
|
6276
|
+
#
|
6277
|
+
# For information about how to get the current limit for an account, see
|
6278
|
+
# [GetAccountLimit][2].
|
6279
|
+
#
|
6280
|
+
# To request a higher limit, [create a case][3] with the AWS Support
|
6281
|
+
# Center.
|
6282
|
+
#
|
6283
|
+
#
|
6284
|
+
#
|
6285
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
|
6286
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html
|
6287
|
+
# [3]: http://aws.amazon.com/route53-request
|
6288
|
+
#
|
6289
|
+
# @!attribute [rw] message
|
6290
|
+
# Descriptive message for the error response.
|
6291
|
+
# @return [String]
|
6292
|
+
#
|
6293
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TooManyTrafficPolicyInstances AWS API Documentation
|
6294
|
+
#
|
6295
|
+
class TooManyTrafficPolicyInstances < Struct.new(
|
6296
|
+
:message)
|
6297
|
+
include Aws::Structure
|
6298
|
+
end
|
6299
|
+
|
6300
|
+
# This traffic policy version can't be created because you've reached
|
6301
|
+
# the limit of 1000 on the number of versions that you can create for
|
6302
|
+
# the current traffic policy.
|
6303
|
+
#
|
6304
|
+
# To create more traffic policy versions, you can use
|
6305
|
+
# [GetTrafficPolicy][1] to get the traffic policy document for a
|
6306
|
+
# specified traffic policy version, and then use
|
6307
|
+
# [CreateTrafficPolicy][2] to create a new traffic policy using the
|
6308
|
+
# traffic policy document.
|
6309
|
+
#
|
6310
|
+
#
|
6311
|
+
#
|
6312
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetTrafficPolicy.html
|
6313
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateTrafficPolicy.html
|
6314
|
+
#
|
6315
|
+
# @!attribute [rw] message
|
6316
|
+
# Descriptive message for the error response.
|
6317
|
+
# @return [String]
|
6318
|
+
#
|
6319
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TooManyTrafficPolicyVersionsForCurrentPolicy AWS API Documentation
|
6320
|
+
#
|
6321
|
+
class TooManyTrafficPolicyVersionsForCurrentPolicy < Struct.new(
|
6322
|
+
:message)
|
6323
|
+
include Aws::Structure
|
6324
|
+
end
|
6325
|
+
|
6326
|
+
# You've created the maximum number of authorizations that can be
|
6327
|
+
# created for the specified hosted zone. To authorize another VPC to be
|
6328
|
+
# associated with the hosted zone, submit a
|
6329
|
+
# `DeleteVPCAssociationAuthorization` request to remove an existing
|
6330
|
+
# authorization. To get a list of existing authorizations, submit a
|
6331
|
+
# `ListVPCAssociationAuthorizations` request.
|
6332
|
+
#
|
6333
|
+
# @!attribute [rw] message
|
6334
|
+
# Descriptive message for the error response.
|
6335
|
+
# @return [String]
|
6336
|
+
#
|
6337
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TooManyVPCAssociationAuthorizations AWS API Documentation
|
6338
|
+
#
|
6339
|
+
class TooManyVPCAssociationAuthorizations < Struct.new(
|
6340
|
+
:message)
|
6341
|
+
include Aws::Structure
|
6342
|
+
end
|
6343
|
+
|
5577
6344
|
# A complex type that contains settings for a traffic policy.
|
5578
6345
|
#
|
5579
6346
|
# @!attribute [rw] id
|
@@ -5624,6 +6391,33 @@ module Aws::Route53
|
|
5624
6391
|
include Aws::Structure
|
5625
6392
|
end
|
5626
6393
|
|
6394
|
+
# A traffic policy that has the same value for `Name` already exists.
|
6395
|
+
#
|
6396
|
+
# @!attribute [rw] message
|
6397
|
+
# Descriptive message for the error response.
|
6398
|
+
# @return [String]
|
6399
|
+
#
|
6400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TrafficPolicyAlreadyExists AWS API Documentation
|
6401
|
+
#
|
6402
|
+
class TrafficPolicyAlreadyExists < Struct.new(
|
6403
|
+
:message)
|
6404
|
+
include Aws::Structure
|
6405
|
+
end
|
6406
|
+
|
6407
|
+
# One or more traffic policy instances were created by using the
|
6408
|
+
# specified traffic policy.
|
6409
|
+
#
|
6410
|
+
# @!attribute [rw] message
|
6411
|
+
# Descriptive message for the error response.
|
6412
|
+
# @return [String]
|
6413
|
+
#
|
6414
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TrafficPolicyInUse AWS API Documentation
|
6415
|
+
#
|
6416
|
+
class TrafficPolicyInUse < Struct.new(
|
6417
|
+
:message)
|
6418
|
+
include Aws::Structure
|
6419
|
+
end
|
6420
|
+
|
5627
6421
|
# A complex type that contains settings for the new traffic policy
|
5628
6422
|
# instance.
|
5629
6423
|
#
|
@@ -5704,6 +6498,19 @@ module Aws::Route53
|
|
5704
6498
|
include Aws::Structure
|
5705
6499
|
end
|
5706
6500
|
|
6501
|
+
# There is already a traffic policy instance with the specified ID.
|
6502
|
+
#
|
6503
|
+
# @!attribute [rw] message
|
6504
|
+
# Descriptive message for the error response.
|
6505
|
+
# @return [String]
|
6506
|
+
#
|
6507
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TrafficPolicyInstanceAlreadyExists AWS API Documentation
|
6508
|
+
#
|
6509
|
+
class TrafficPolicyInstanceAlreadyExists < Struct.new(
|
6510
|
+
:message)
|
6511
|
+
include Aws::Structure
|
6512
|
+
end
|
6513
|
+
|
5707
6514
|
# A complex type that contains information about the latest version of
|
5708
6515
|
# one traffic policy that is associated with the current AWS account.
|
5709
6516
|
#
|
@@ -6328,5 +7135,32 @@ module Aws::Route53
|
|
6328
7135
|
include Aws::Structure
|
6329
7136
|
end
|
6330
7137
|
|
7138
|
+
# The VPC that you specified is not authorized to be associated with the
|
7139
|
+
# hosted zone.
|
7140
|
+
#
|
7141
|
+
# @!attribute [rw] message
|
7142
|
+
# Descriptive message for the error response.
|
7143
|
+
# @return [String]
|
7144
|
+
#
|
7145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/VPCAssociationAuthorizationNotFound AWS API Documentation
|
7146
|
+
#
|
7147
|
+
class VPCAssociationAuthorizationNotFound < Struct.new(
|
7148
|
+
:message)
|
7149
|
+
include Aws::Structure
|
7150
|
+
end
|
7151
|
+
|
7152
|
+
# The specified VPC and hosted zone are not currently associated.
|
7153
|
+
#
|
7154
|
+
# @!attribute [rw] message
|
7155
|
+
# Descriptive message for the error response.
|
7156
|
+
# @return [String]
|
7157
|
+
#
|
7158
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/VPCAssociationNotFound AWS API Documentation
|
7159
|
+
#
|
7160
|
+
class VPCAssociationNotFound < Struct.new(
|
7161
|
+
:message)
|
7162
|
+
include Aws::Structure
|
7163
|
+
end
|
7164
|
+
|
6331
7165
|
end
|
6332
7166
|
end
|