aws-sdk-route53 1.62.0 → 1.65.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53/client.rb +317 -33
- data/lib/aws-sdk-route53/client_api.rb +241 -1
- data/lib/aws-sdk-route53/errors.rb +96 -0
- data/lib/aws-sdk-route53/types.rb +600 -35
- data/lib/aws-sdk-route53.rb +1 -1
- metadata +2 -2
@@ -100,7 +100,7 @@ module Aws::Route53
|
|
100
100
|
# data as a hash:
|
101
101
|
#
|
102
102
|
# {
|
103
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
103
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
104
104
|
# name: "AlarmName", # required
|
105
105
|
# }
|
106
106
|
#
|
@@ -155,13 +155,12 @@ module Aws::Route53
|
|
155
155
|
# When creating resource record sets for a private hosted zone, note the
|
156
156
|
# following:
|
157
157
|
#
|
158
|
-
# * Creating geolocation alias resource record sets or latency alias
|
159
|
-
# resource record sets in a private hosted zone is unsupported.
|
160
|
-
#
|
161
158
|
# * For information about creating failover resource record sets in a
|
162
159
|
# private hosted zone, see [Configuring Failover in a Private Hosted
|
163
160
|
# Zone][1].
|
164
161
|
#
|
162
|
+
# ^
|
163
|
+
#
|
165
164
|
#
|
166
165
|
#
|
167
166
|
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html
|
@@ -563,7 +562,7 @@ module Aws::Route53
|
|
563
562
|
# {
|
564
563
|
# hosted_zone_id: "ResourceId", # required
|
565
564
|
# vpc: { # required
|
566
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
565
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
567
566
|
# vpc_id: "VPCId",
|
568
567
|
# },
|
569
568
|
# comment: "AssociateVPCComment",
|
@@ -644,6 +643,10 @@ module Aws::Route53
|
|
644
643
|
# },
|
645
644
|
# health_check_id: "HealthCheckId",
|
646
645
|
# traffic_policy_instance_id: "TrafficPolicyInstanceId",
|
646
|
+
# cidr_routing_config: {
|
647
|
+
# collection_id: "UUID", # required
|
648
|
+
# location_name: "CidrLocationNameDefaultAllowed", # required
|
649
|
+
# },
|
647
650
|
# },
|
648
651
|
# }
|
649
652
|
#
|
@@ -722,6 +725,10 @@ module Aws::Route53
|
|
722
725
|
# },
|
723
726
|
# health_check_id: "HealthCheckId",
|
724
727
|
# traffic_policy_instance_id: "TrafficPolicyInstanceId",
|
728
|
+
# cidr_routing_config: {
|
729
|
+
# collection_id: "UUID", # required
|
730
|
+
# location_name: "CidrLocationNameDefaultAllowed", # required
|
731
|
+
# },
|
725
732
|
# },
|
726
733
|
# },
|
727
734
|
# ],
|
@@ -745,6 +752,74 @@ module Aws::Route53
|
|
745
752
|
include Aws::Structure
|
746
753
|
end
|
747
754
|
|
755
|
+
# @note When making an API call, you may pass ChangeCidrCollectionRequest
|
756
|
+
# data as a hash:
|
757
|
+
#
|
758
|
+
# {
|
759
|
+
# id: "UUID", # required
|
760
|
+
# collection_version: 1,
|
761
|
+
# changes: [ # required
|
762
|
+
# {
|
763
|
+
# location_name: "CidrLocationNameDefaultNotAllowed", # required
|
764
|
+
# action: "PUT", # required, accepts PUT, DELETE_IF_EXISTS
|
765
|
+
# cidr_list: ["Cidr"], # required
|
766
|
+
# },
|
767
|
+
# ],
|
768
|
+
# }
|
769
|
+
#
|
770
|
+
# @!attribute [rw] id
|
771
|
+
# The UUID of the CIDR collection to update.
|
772
|
+
# @return [String]
|
773
|
+
#
|
774
|
+
# @!attribute [rw] collection_version
|
775
|
+
# A sequential counter that Amazon Route 53 sets to 1 when you create
|
776
|
+
# a collection and increments it by 1 each time you update the
|
777
|
+
# collection.
|
778
|
+
#
|
779
|
+
# We recommend that you use `ListCidrCollection` to get the current
|
780
|
+
# value of `CollectionVersion` for the collection that you want to
|
781
|
+
# update, and then include that value with the change request. This
|
782
|
+
# prevents Route 53 from overwriting an intervening update:
|
783
|
+
#
|
784
|
+
# * If the value in the request matches the value of
|
785
|
+
# `CollectionVersion` in the collection, Route 53 updates the
|
786
|
+
# collection.
|
787
|
+
#
|
788
|
+
# * If the value of `CollectionVersion` in the collection is greater
|
789
|
+
# than the value in the request, the collection was changed after
|
790
|
+
# you got the version number. Route 53 does not update the
|
791
|
+
# collection, and it returns a `CidrCollectionVersionMismatch`
|
792
|
+
# error.
|
793
|
+
# @return [Integer]
|
794
|
+
#
|
795
|
+
# @!attribute [rw] changes
|
796
|
+
# Information about changes to a CIDR collection.
|
797
|
+
# @return [Array<Types::CidrCollectionChange>]
|
798
|
+
#
|
799
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeCidrCollectionRequest AWS API Documentation
|
800
|
+
#
|
801
|
+
class ChangeCidrCollectionRequest < Struct.new(
|
802
|
+
:id,
|
803
|
+
:collection_version,
|
804
|
+
:changes)
|
805
|
+
SENSITIVE = []
|
806
|
+
include Aws::Structure
|
807
|
+
end
|
808
|
+
|
809
|
+
# @!attribute [rw] id
|
810
|
+
# The ID that is returned by `ChangeCidrCollection`. You can use it as
|
811
|
+
# input to `GetChange` to see if a CIDR collection change has
|
812
|
+
# propagated or not.
|
813
|
+
# @return [String]
|
814
|
+
#
|
815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeCidrCollectionResponse AWS API Documentation
|
816
|
+
#
|
817
|
+
class ChangeCidrCollectionResponse < Struct.new(
|
818
|
+
:id)
|
819
|
+
SENSITIVE = []
|
820
|
+
include Aws::Structure
|
821
|
+
end
|
822
|
+
|
748
823
|
# A complex type that describes change information about changes made to
|
749
824
|
# your hosted zone.
|
750
825
|
#
|
@@ -827,6 +902,10 @@ module Aws::Route53
|
|
827
902
|
# },
|
828
903
|
# health_check_id: "HealthCheckId",
|
829
904
|
# traffic_policy_instance_id: "TrafficPolicyInstanceId",
|
905
|
+
# cidr_routing_config: {
|
906
|
+
# collection_id: "UUID", # required
|
907
|
+
# location_name: "CidrLocationNameDefaultAllowed", # required
|
908
|
+
# },
|
830
909
|
# },
|
831
910
|
# },
|
832
911
|
# ],
|
@@ -936,6 +1015,176 @@ module Aws::Route53
|
|
936
1015
|
#
|
937
1016
|
class ChangeTagsForResourceResponse < Aws::EmptyStructure; end
|
938
1017
|
|
1018
|
+
# This CIDR block is already in use.
|
1019
|
+
#
|
1020
|
+
# @!attribute [rw] message
|
1021
|
+
# @return [String]
|
1022
|
+
#
|
1023
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrBlockInUseException AWS API Documentation
|
1024
|
+
#
|
1025
|
+
class CidrBlockInUseException < Struct.new(
|
1026
|
+
:message)
|
1027
|
+
SENSITIVE = []
|
1028
|
+
include Aws::Structure
|
1029
|
+
end
|
1030
|
+
|
1031
|
+
# A complex type that lists the CIDR blocks.
|
1032
|
+
#
|
1033
|
+
# @!attribute [rw] cidr_block
|
1034
|
+
# Value for the CIDR block.
|
1035
|
+
# @return [String]
|
1036
|
+
#
|
1037
|
+
# @!attribute [rw] location_name
|
1038
|
+
# The location name of the CIDR block.
|
1039
|
+
# @return [String]
|
1040
|
+
#
|
1041
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrBlockSummary AWS API Documentation
|
1042
|
+
#
|
1043
|
+
class CidrBlockSummary < Struct.new(
|
1044
|
+
:cidr_block,
|
1045
|
+
:location_name)
|
1046
|
+
SENSITIVE = []
|
1047
|
+
include Aws::Structure
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
# A complex type that identifies a CIDR collection.
|
1051
|
+
#
|
1052
|
+
# @!attribute [rw] arn
|
1053
|
+
# The ARN of the collection. Can be used to reference the collection
|
1054
|
+
# in IAM policy or in another Amazon Web Services account.
|
1055
|
+
# @return [String]
|
1056
|
+
#
|
1057
|
+
# @!attribute [rw] id
|
1058
|
+
# The unique ID of the CIDR collection.
|
1059
|
+
# @return [String]
|
1060
|
+
#
|
1061
|
+
# @!attribute [rw] name
|
1062
|
+
# The name of a CIDR collection.
|
1063
|
+
# @return [String]
|
1064
|
+
#
|
1065
|
+
# @!attribute [rw] version
|
1066
|
+
# A sequential counter that Route 53 sets to 1 when you create a CIDR
|
1067
|
+
# collection and increments by 1 each time you update settings for the
|
1068
|
+
# CIDR collection.
|
1069
|
+
# @return [Integer]
|
1070
|
+
#
|
1071
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrCollection AWS API Documentation
|
1072
|
+
#
|
1073
|
+
class CidrCollection < Struct.new(
|
1074
|
+
:arn,
|
1075
|
+
:id,
|
1076
|
+
:name,
|
1077
|
+
:version)
|
1078
|
+
SENSITIVE = []
|
1079
|
+
include Aws::Structure
|
1080
|
+
end
|
1081
|
+
|
1082
|
+
# A CIDR collection with this name and a different caller reference
|
1083
|
+
# already exists in this account.
|
1084
|
+
#
|
1085
|
+
# @!attribute [rw] message
|
1086
|
+
# @return [String]
|
1087
|
+
#
|
1088
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrCollectionAlreadyExistsException AWS API Documentation
|
1089
|
+
#
|
1090
|
+
class CidrCollectionAlreadyExistsException < Struct.new(
|
1091
|
+
:message)
|
1092
|
+
SENSITIVE = []
|
1093
|
+
include Aws::Structure
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
# A complex type that contains information about the CIDR collection
|
1097
|
+
# change.
|
1098
|
+
#
|
1099
|
+
# @note When making an API call, you may pass CidrCollectionChange
|
1100
|
+
# data as a hash:
|
1101
|
+
#
|
1102
|
+
# {
|
1103
|
+
# location_name: "CidrLocationNameDefaultNotAllowed", # required
|
1104
|
+
# action: "PUT", # required, accepts PUT, DELETE_IF_EXISTS
|
1105
|
+
# cidr_list: ["Cidr"], # required
|
1106
|
+
# }
|
1107
|
+
#
|
1108
|
+
# @!attribute [rw] location_name
|
1109
|
+
# Name of the location that is associated with the CIDR collection.
|
1110
|
+
# @return [String]
|
1111
|
+
#
|
1112
|
+
# @!attribute [rw] action
|
1113
|
+
# CIDR collection change action.
|
1114
|
+
# @return [String]
|
1115
|
+
#
|
1116
|
+
# @!attribute [rw] cidr_list
|
1117
|
+
# List of CIDR blocks.
|
1118
|
+
# @return [Array<String>]
|
1119
|
+
#
|
1120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrCollectionChange AWS API Documentation
|
1121
|
+
#
|
1122
|
+
class CidrCollectionChange < Struct.new(
|
1123
|
+
:location_name,
|
1124
|
+
:action,
|
1125
|
+
:cidr_list)
|
1126
|
+
SENSITIVE = []
|
1127
|
+
include Aws::Structure
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
# This CIDR collection is in use, and isn't empty.
|
1131
|
+
#
|
1132
|
+
# @!attribute [rw] message
|
1133
|
+
# @return [String]
|
1134
|
+
#
|
1135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrCollectionInUseException AWS API Documentation
|
1136
|
+
#
|
1137
|
+
class CidrCollectionInUseException < Struct.new(
|
1138
|
+
:message)
|
1139
|
+
SENSITIVE = []
|
1140
|
+
include Aws::Structure
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
# The CIDR collection version you provided, doesn't match the one in
|
1144
|
+
# the `ListCidrCollections` operation.
|
1145
|
+
#
|
1146
|
+
# @!attribute [rw] message
|
1147
|
+
# @return [String]
|
1148
|
+
#
|
1149
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrCollectionVersionMismatchException AWS API Documentation
|
1150
|
+
#
|
1151
|
+
class CidrCollectionVersionMismatchException < Struct.new(
|
1152
|
+
:message)
|
1153
|
+
SENSITIVE = []
|
1154
|
+
include Aws::Structure
|
1155
|
+
end
|
1156
|
+
|
1157
|
+
# The object that is specified in resource record set object when you
|
1158
|
+
# are linking a resource record set to a CIDR location.
|
1159
|
+
#
|
1160
|
+
# A `LocationName` with an asterisk “*” can be used to create a default
|
1161
|
+
# CIDR record. `CollectionId` is still required for default record.
|
1162
|
+
#
|
1163
|
+
# @note When making an API call, you may pass CidrRoutingConfig
|
1164
|
+
# data as a hash:
|
1165
|
+
#
|
1166
|
+
# {
|
1167
|
+
# collection_id: "UUID", # required
|
1168
|
+
# location_name: "CidrLocationNameDefaultAllowed", # required
|
1169
|
+
# }
|
1170
|
+
#
|
1171
|
+
# @!attribute [rw] collection_id
|
1172
|
+
# The CIDR collection ID.
|
1173
|
+
# @return [String]
|
1174
|
+
#
|
1175
|
+
# @!attribute [rw] location_name
|
1176
|
+
# The CIDR collection location name.
|
1177
|
+
# @return [String]
|
1178
|
+
#
|
1179
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrRoutingConfig AWS API Documentation
|
1180
|
+
#
|
1181
|
+
class CidrRoutingConfig < Struct.new(
|
1182
|
+
:collection_id,
|
1183
|
+
:location_name)
|
1184
|
+
SENSITIVE = []
|
1185
|
+
include Aws::Structure
|
1186
|
+
end
|
1187
|
+
|
939
1188
|
# A complex type that contains information about the CloudWatch alarm
|
940
1189
|
# that Amazon Route 53 is monitoring for this health check.
|
941
1190
|
#
|
@@ -1005,6 +1254,42 @@ module Aws::Route53
|
|
1005
1254
|
include Aws::Structure
|
1006
1255
|
end
|
1007
1256
|
|
1257
|
+
# A complex type that is an entry in an [CidrCollection][1] array.
|
1258
|
+
#
|
1259
|
+
#
|
1260
|
+
#
|
1261
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CidrCollection.html
|
1262
|
+
#
|
1263
|
+
# @!attribute [rw] arn
|
1264
|
+
# The ARN of the collection summary. Can be used to reference the
|
1265
|
+
# collection in IAM policy or cross-account.
|
1266
|
+
# @return [String]
|
1267
|
+
#
|
1268
|
+
# @!attribute [rw] id
|
1269
|
+
# Unique ID for the CIDR collection.
|
1270
|
+
# @return [String]
|
1271
|
+
#
|
1272
|
+
# @!attribute [rw] name
|
1273
|
+
# The name of a CIDR collection.
|
1274
|
+
# @return [String]
|
1275
|
+
#
|
1276
|
+
# @!attribute [rw] version
|
1277
|
+
# A sequential counter that Route 53 sets to 1 when you create a CIDR
|
1278
|
+
# collection and increments by 1 each time you update settings for the
|
1279
|
+
# CIDR collection.
|
1280
|
+
# @return [Integer]
|
1281
|
+
#
|
1282
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CollectionSummary AWS API Documentation
|
1283
|
+
#
|
1284
|
+
class CollectionSummary < Struct.new(
|
1285
|
+
:arn,
|
1286
|
+
:id,
|
1287
|
+
:name,
|
1288
|
+
:version)
|
1289
|
+
SENSITIVE = []
|
1290
|
+
include Aws::Structure
|
1291
|
+
end
|
1292
|
+
|
1008
1293
|
# Another user submitted a request to create, update, or delete the
|
1009
1294
|
# object at the same time that you did. Retry the request.
|
1010
1295
|
#
|
@@ -1070,6 +1355,51 @@ module Aws::Route53
|
|
1070
1355
|
include Aws::Structure
|
1071
1356
|
end
|
1072
1357
|
|
1358
|
+
# @note When making an API call, you may pass CreateCidrCollectionRequest
|
1359
|
+
# data as a hash:
|
1360
|
+
#
|
1361
|
+
# {
|
1362
|
+
# name: "CollectionName", # required
|
1363
|
+
# caller_reference: "CidrNonce", # required
|
1364
|
+
# }
|
1365
|
+
#
|
1366
|
+
# @!attribute [rw] name
|
1367
|
+
# A unique identifier for the account that can be used to reference
|
1368
|
+
# the collection from other API calls.
|
1369
|
+
# @return [String]
|
1370
|
+
#
|
1371
|
+
# @!attribute [rw] caller_reference
|
1372
|
+
# A client-specific token that allows requests to be securely retried
|
1373
|
+
# so that the intended outcome will only occur once, retries receive a
|
1374
|
+
# similar response, and there are no additional edge cases to handle.
|
1375
|
+
# @return [String]
|
1376
|
+
#
|
1377
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateCidrCollectionRequest AWS API Documentation
|
1378
|
+
#
|
1379
|
+
class CreateCidrCollectionRequest < Struct.new(
|
1380
|
+
:name,
|
1381
|
+
:caller_reference)
|
1382
|
+
SENSITIVE = []
|
1383
|
+
include Aws::Structure
|
1384
|
+
end
|
1385
|
+
|
1386
|
+
# @!attribute [rw] collection
|
1387
|
+
# A complex type that contains information about the CIDR collection.
|
1388
|
+
# @return [Types::CidrCollection]
|
1389
|
+
#
|
1390
|
+
# @!attribute [rw] location
|
1391
|
+
# A unique URL that represents the location for the CIDR collection.
|
1392
|
+
# @return [String]
|
1393
|
+
#
|
1394
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateCidrCollectionResponse AWS API Documentation
|
1395
|
+
#
|
1396
|
+
class CreateCidrCollectionResponse < Struct.new(
|
1397
|
+
:collection,
|
1398
|
+
:location)
|
1399
|
+
SENSITIVE = []
|
1400
|
+
include Aws::Structure
|
1401
|
+
end
|
1402
|
+
|
1073
1403
|
# A complex type that contains the health check request information.
|
1074
1404
|
#
|
1075
1405
|
# @note When making an API call, you may pass CreateHealthCheckRequest
|
@@ -1094,7 +1424,7 @@ module Aws::Route53
|
|
1094
1424
|
# enable_sni: false,
|
1095
1425
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
1096
1426
|
# alarm_identifier: {
|
1097
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
1427
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
1098
1428
|
# name: "AlarmName", # required
|
1099
1429
|
# },
|
1100
1430
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -1169,7 +1499,7 @@ module Aws::Route53
|
|
1169
1499
|
# {
|
1170
1500
|
# name: "DNSName", # required
|
1171
1501
|
# vpc: {
|
1172
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
1502
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
1173
1503
|
# vpc_id: "VPCId",
|
1174
1504
|
# },
|
1175
1505
|
# caller_reference: "Nonce", # required
|
@@ -1183,13 +1513,13 @@ module Aws::Route53
|
|
1183
1513
|
# @!attribute [rw] name
|
1184
1514
|
# The name of the domain. Specify a fully qualified domain name, for
|
1185
1515
|
# example, *www.example.com*. The trailing dot is optional; Amazon
|
1186
|
-
# Route
|
1187
|
-
# that Route
|
1516
|
+
# Route 53 assumes that the domain name is fully qualified. This means
|
1517
|
+
# that Route 53 treats *www.example.com* (without a trailing dot) and
|
1188
1518
|
# *www.example.com.* (with a trailing dot) as identical.
|
1189
1519
|
#
|
1190
1520
|
# If you're creating a public hosted zone, this is the name you have
|
1191
1521
|
# registered with your DNS registrar. If your domain name is
|
1192
|
-
# registered with a registrar other than Route
|
1522
|
+
# registered with a registrar other than Route 53, change the name
|
1193
1523
|
# servers for your domain to the set of `NameServers` that
|
1194
1524
|
# `CreateHostedZone` returns in `DelegationSet`.
|
1195
1525
|
# @return [String]
|
@@ -1233,7 +1563,7 @@ module Aws::Route53
|
|
1233
1563
|
#
|
1234
1564
|
# @!attribute [rw] delegation_set_id
|
1235
1565
|
# If you want to associate a reusable delegation set with this hosted
|
1236
|
-
# zone, the ID that Amazon Route
|
1566
|
+
# zone, the ID that Amazon Route 53 assigned to the reusable
|
1237
1567
|
# delegation set when you created it. For more information about
|
1238
1568
|
# reusable delegation sets, see [CreateReusableDelegationSet][1].
|
1239
1569
|
#
|
@@ -1723,7 +2053,7 @@ module Aws::Route53
|
|
1723
2053
|
# {
|
1724
2054
|
# hosted_zone_id: "ResourceId", # required
|
1725
2055
|
# vpc: { # required
|
1726
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2056
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
1727
2057
|
# vpc_id: "VPCId",
|
1728
2058
|
# },
|
1729
2059
|
# }
|
@@ -1968,6 +2298,29 @@ module Aws::Route53
|
|
1968
2298
|
include Aws::Structure
|
1969
2299
|
end
|
1970
2300
|
|
2301
|
+
# @note When making an API call, you may pass DeleteCidrCollectionRequest
|
2302
|
+
# data as a hash:
|
2303
|
+
#
|
2304
|
+
# {
|
2305
|
+
# id: "UUID", # required
|
2306
|
+
# }
|
2307
|
+
#
|
2308
|
+
# @!attribute [rw] id
|
2309
|
+
# The UUID of the collection to delete.
|
2310
|
+
# @return [String]
|
2311
|
+
#
|
2312
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteCidrCollectionRequest AWS API Documentation
|
2313
|
+
#
|
2314
|
+
class DeleteCidrCollectionRequest < Struct.new(
|
2315
|
+
:id)
|
2316
|
+
SENSITIVE = []
|
2317
|
+
include Aws::Structure
|
2318
|
+
end
|
2319
|
+
|
2320
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteCidrCollectionResponse AWS API Documentation
|
2321
|
+
#
|
2322
|
+
class DeleteCidrCollectionResponse < Aws::EmptyStructure; end
|
2323
|
+
|
1971
2324
|
# This action deletes a health check.
|
1972
2325
|
#
|
1973
2326
|
# @note When making an API call, you may pass DeleteHealthCheckRequest
|
@@ -2195,7 +2548,7 @@ module Aws::Route53
|
|
2195
2548
|
# {
|
2196
2549
|
# hosted_zone_id: "ResourceId", # required
|
2197
2550
|
# vpc: { # required
|
2198
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2551
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2199
2552
|
# vpc_id: "VPCId",
|
2200
2553
|
# },
|
2201
2554
|
# }
|
@@ -2292,7 +2645,7 @@ module Aws::Route53
|
|
2292
2645
|
# {
|
2293
2646
|
# hosted_zone_id: "ResourceId", # required
|
2294
2647
|
# vpc: { # required
|
2295
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2648
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2296
2649
|
# vpc_id: "VPCId",
|
2297
2650
|
# },
|
2298
2651
|
# comment: "DisassociateVPCComment",
|
@@ -2563,7 +2916,7 @@ module Aws::Route53
|
|
2563
2916
|
# data as a hash:
|
2564
2917
|
#
|
2565
2918
|
# {
|
2566
|
-
# id: "
|
2919
|
+
# id: "ChangeId", # required
|
2567
2920
|
# }
|
2568
2921
|
#
|
2569
2922
|
# @!attribute [rw] id
|
@@ -3356,7 +3709,7 @@ module Aws::Route53
|
|
3356
3709
|
# enable_sni: false,
|
3357
3710
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
3358
3711
|
# alarm_identifier: {
|
3359
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
3712
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
3360
3713
|
# name: "AlarmName", # required
|
3361
3714
|
# },
|
3362
3715
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -4539,21 +4892,14 @@ module Aws::Route53
|
|
4539
4892
|
include Aws::Structure
|
4540
4893
|
end
|
4541
4894
|
|
4542
|
-
# This operation can't be completed
|
4543
|
-
#
|
4544
|
-
#
|
4545
|
-
#
|
4546
|
-
# on the number of reusable delegation sets, see [GetAccountLimit][1].
|
4547
|
-
# To get the current limit on the number of Amazon VPCs that you can
|
4548
|
-
# associate with a private hosted zone, see [GetHostedZoneLimit][2]. To
|
4549
|
-
# request a higher limit, [create a case][3] with the Amazon Web
|
4550
|
-
# Services Support Center.
|
4895
|
+
# This operation can't be completed because the current account has
|
4896
|
+
# reached the limit on the resource you are trying to create. To request
|
4897
|
+
# a higher limit, [create a case][1] with the Amazon Web Services
|
4898
|
+
# Support Center.
|
4551
4899
|
#
|
4552
4900
|
#
|
4553
4901
|
#
|
4554
|
-
# [1]:
|
4555
|
-
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetHostedZoneLimit.html
|
4556
|
-
# [3]: http://aws.amazon.com/route53-request
|
4902
|
+
# [1]: http://aws.amazon.com/route53-request
|
4557
4903
|
#
|
4558
4904
|
# @!attribute [rw] message
|
4559
4905
|
# @return [String]
|
@@ -4593,6 +4939,173 @@ module Aws::Route53
|
|
4593
4939
|
include Aws::Structure
|
4594
4940
|
end
|
4595
4941
|
|
4942
|
+
# @note When making an API call, you may pass ListCidrBlocksRequest
|
4943
|
+
# data as a hash:
|
4944
|
+
#
|
4945
|
+
# {
|
4946
|
+
# collection_id: "UUID", # required
|
4947
|
+
# location_name: "CidrLocationNameDefaultNotAllowed",
|
4948
|
+
# next_token: "PaginationToken",
|
4949
|
+
# max_results: "MaxResults",
|
4950
|
+
# }
|
4951
|
+
#
|
4952
|
+
# @!attribute [rw] collection_id
|
4953
|
+
# The UUID of the CIDR collection.
|
4954
|
+
# @return [String]
|
4955
|
+
#
|
4956
|
+
# @!attribute [rw] location_name
|
4957
|
+
# The name of the CIDR collection location.
|
4958
|
+
# @return [String]
|
4959
|
+
#
|
4960
|
+
# @!attribute [rw] next_token
|
4961
|
+
# An opaque pagination token to indicate where the service is to begin
|
4962
|
+
# enumerating results.
|
4963
|
+
# @return [String]
|
4964
|
+
#
|
4965
|
+
# @!attribute [rw] max_results
|
4966
|
+
# Maximum number of results you want returned.
|
4967
|
+
# @return [String]
|
4968
|
+
#
|
4969
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListCidrBlocksRequest AWS API Documentation
|
4970
|
+
#
|
4971
|
+
class ListCidrBlocksRequest < Struct.new(
|
4972
|
+
:collection_id,
|
4973
|
+
:location_name,
|
4974
|
+
:next_token,
|
4975
|
+
:max_results)
|
4976
|
+
SENSITIVE = []
|
4977
|
+
include Aws::Structure
|
4978
|
+
end
|
4979
|
+
|
4980
|
+
# @!attribute [rw] next_token
|
4981
|
+
# An opaque pagination token to indicate where the service is to begin
|
4982
|
+
# enumerating results.
|
4983
|
+
#
|
4984
|
+
# If no value is provided, the listing of results starts from the
|
4985
|
+
# beginning.
|
4986
|
+
# @return [String]
|
4987
|
+
#
|
4988
|
+
# @!attribute [rw] cidr_blocks
|
4989
|
+
# A complex type that contains information about the CIDR blocks.
|
4990
|
+
# @return [Array<Types::CidrBlockSummary>]
|
4991
|
+
#
|
4992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListCidrBlocksResponse AWS API Documentation
|
4993
|
+
#
|
4994
|
+
class ListCidrBlocksResponse < Struct.new(
|
4995
|
+
:next_token,
|
4996
|
+
:cidr_blocks)
|
4997
|
+
SENSITIVE = []
|
4998
|
+
include Aws::Structure
|
4999
|
+
end
|
5000
|
+
|
5001
|
+
# @note When making an API call, you may pass ListCidrCollectionsRequest
|
5002
|
+
# data as a hash:
|
5003
|
+
#
|
5004
|
+
# {
|
5005
|
+
# next_token: "PaginationToken",
|
5006
|
+
# max_results: "MaxResults",
|
5007
|
+
# }
|
5008
|
+
#
|
5009
|
+
# @!attribute [rw] next_token
|
5010
|
+
# An opaque pagination token to indicate where the service is to begin
|
5011
|
+
# enumerating results.
|
5012
|
+
#
|
5013
|
+
# If no value is provided, the listing of results starts from the
|
5014
|
+
# beginning.
|
5015
|
+
# @return [String]
|
5016
|
+
#
|
5017
|
+
# @!attribute [rw] max_results
|
5018
|
+
# The maximum number of CIDR collections to return in the response.
|
5019
|
+
# @return [String]
|
5020
|
+
#
|
5021
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListCidrCollectionsRequest AWS API Documentation
|
5022
|
+
#
|
5023
|
+
class ListCidrCollectionsRequest < Struct.new(
|
5024
|
+
:next_token,
|
5025
|
+
:max_results)
|
5026
|
+
SENSITIVE = []
|
5027
|
+
include Aws::Structure
|
5028
|
+
end
|
5029
|
+
|
5030
|
+
# @!attribute [rw] next_token
|
5031
|
+
# An opaque pagination token to indicate where the service is to begin
|
5032
|
+
# enumerating results.
|
5033
|
+
#
|
5034
|
+
# If no value is provided, the listing of results starts from the
|
5035
|
+
# beginning.
|
5036
|
+
# @return [String]
|
5037
|
+
#
|
5038
|
+
# @!attribute [rw] cidr_collections
|
5039
|
+
# A complex type with information about the CIDR collection.
|
5040
|
+
# @return [Array<Types::CollectionSummary>]
|
5041
|
+
#
|
5042
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListCidrCollectionsResponse AWS API Documentation
|
5043
|
+
#
|
5044
|
+
class ListCidrCollectionsResponse < Struct.new(
|
5045
|
+
:next_token,
|
5046
|
+
:cidr_collections)
|
5047
|
+
SENSITIVE = []
|
5048
|
+
include Aws::Structure
|
5049
|
+
end
|
5050
|
+
|
5051
|
+
# @note When making an API call, you may pass ListCidrLocationsRequest
|
5052
|
+
# data as a hash:
|
5053
|
+
#
|
5054
|
+
# {
|
5055
|
+
# collection_id: "UUID", # required
|
5056
|
+
# next_token: "PaginationToken",
|
5057
|
+
# max_results: "MaxResults",
|
5058
|
+
# }
|
5059
|
+
#
|
5060
|
+
# @!attribute [rw] collection_id
|
5061
|
+
# The CIDR collection ID.
|
5062
|
+
# @return [String]
|
5063
|
+
#
|
5064
|
+
# @!attribute [rw] next_token
|
5065
|
+
# An opaque pagination token to indicate where the service is to begin
|
5066
|
+
# enumerating results.
|
5067
|
+
#
|
5068
|
+
# If no value is provided, the listing of results starts from the
|
5069
|
+
# beginning.
|
5070
|
+
# @return [String]
|
5071
|
+
#
|
5072
|
+
# @!attribute [rw] max_results
|
5073
|
+
# The maximum number of CIDR collection locations to return in the
|
5074
|
+
# response.
|
5075
|
+
# @return [String]
|
5076
|
+
#
|
5077
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListCidrLocationsRequest AWS API Documentation
|
5078
|
+
#
|
5079
|
+
class ListCidrLocationsRequest < Struct.new(
|
5080
|
+
:collection_id,
|
5081
|
+
:next_token,
|
5082
|
+
:max_results)
|
5083
|
+
SENSITIVE = []
|
5084
|
+
include Aws::Structure
|
5085
|
+
end
|
5086
|
+
|
5087
|
+
# @!attribute [rw] next_token
|
5088
|
+
# An opaque pagination token to indicate where the service is to begin
|
5089
|
+
# enumerating results.
|
5090
|
+
#
|
5091
|
+
# If no value is provided, the listing of results starts from the
|
5092
|
+
# beginning.
|
5093
|
+
# @return [String]
|
5094
|
+
#
|
5095
|
+
# @!attribute [rw] cidr_locations
|
5096
|
+
# A complex type that contains information about the list of CIDR
|
5097
|
+
# locations.
|
5098
|
+
# @return [Array<Types::LocationSummary>]
|
5099
|
+
#
|
5100
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListCidrLocationsResponse AWS API Documentation
|
5101
|
+
#
|
5102
|
+
class ListCidrLocationsResponse < Struct.new(
|
5103
|
+
:next_token,
|
5104
|
+
:cidr_locations)
|
5105
|
+
SENSITIVE = []
|
5106
|
+
include Aws::Structure
|
5107
|
+
end
|
5108
|
+
|
4596
5109
|
# A request to get a list of geographic locations that Amazon Route 53
|
4597
5110
|
# supports for geolocation resource record sets.
|
4598
5111
|
#
|
@@ -4927,7 +5440,7 @@ module Aws::Route53
|
|
4927
5440
|
#
|
4928
5441
|
# {
|
4929
5442
|
# vpc_id: "VPCId", # required
|
4930
|
-
# vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
5443
|
+
# vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
4931
5444
|
# max_items: 1,
|
4932
5445
|
# next_token: "PaginationToken",
|
4933
5446
|
# }
|
@@ -6147,6 +6660,20 @@ module Aws::Route53
|
|
6147
6660
|
include Aws::Structure
|
6148
6661
|
end
|
6149
6662
|
|
6663
|
+
# A complex type that contains information about the CIDR location.
|
6664
|
+
#
|
6665
|
+
# @!attribute [rw] location_name
|
6666
|
+
# A string that specifies a location name.
|
6667
|
+
# @return [String]
|
6668
|
+
#
|
6669
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/LocationSummary AWS API Documentation
|
6670
|
+
#
|
6671
|
+
class LocationSummary < Struct.new(
|
6672
|
+
:location_name)
|
6673
|
+
SENSITIVE = []
|
6674
|
+
include Aws::Structure
|
6675
|
+
end
|
6676
|
+
|
6150
6677
|
# A change with the specified change ID does not exist.
|
6151
6678
|
#
|
6152
6679
|
# @!attribute [rw] message
|
@@ -6160,6 +6687,33 @@ module Aws::Route53
|
|
6160
6687
|
include Aws::Structure
|
6161
6688
|
end
|
6162
6689
|
|
6690
|
+
# The CIDR collection you specified, doesn't exist.
|
6691
|
+
#
|
6692
|
+
# @!attribute [rw] message
|
6693
|
+
# @return [String]
|
6694
|
+
#
|
6695
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchCidrCollectionException AWS API Documentation
|
6696
|
+
#
|
6697
|
+
class NoSuchCidrCollectionException < Struct.new(
|
6698
|
+
:message)
|
6699
|
+
SENSITIVE = []
|
6700
|
+
include Aws::Structure
|
6701
|
+
end
|
6702
|
+
|
6703
|
+
# The CIDR collection location doesn't match any locations in your
|
6704
|
+
# account.
|
6705
|
+
#
|
6706
|
+
# @!attribute [rw] message
|
6707
|
+
# @return [String]
|
6708
|
+
#
|
6709
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchCidrLocationException AWS API Documentation
|
6710
|
+
#
|
6711
|
+
class NoSuchCidrLocationException < Struct.new(
|
6712
|
+
:message)
|
6713
|
+
SENSITIVE = []
|
6714
|
+
include Aws::Structure
|
6715
|
+
end
|
6716
|
+
|
6163
6717
|
# There is no CloudWatch Logs log group with the specified ARN.
|
6164
6718
|
#
|
6165
6719
|
# @!attribute [rw] message
|
@@ -6442,6 +6996,10 @@ module Aws::Route53
|
|
6442
6996
|
# },
|
6443
6997
|
# health_check_id: "HealthCheckId",
|
6444
6998
|
# traffic_policy_instance_id: "TrafficPolicyInstanceId",
|
6999
|
+
# cidr_routing_config: {
|
7000
|
+
# collection_id: "UUID", # required
|
7001
|
+
# location_name: "CidrLocationNameDefaultAllowed", # required
|
7002
|
+
# },
|
6445
7003
|
# }
|
6446
7004
|
#
|
6447
7005
|
# @!attribute [rw] name
|
@@ -6830,9 +7388,6 @@ module Aws::Route53
|
|
6830
7388
|
# * You can't create an alias resource record set in a private hosted
|
6831
7389
|
# zone to route traffic to a CloudFront distribution.
|
6832
7390
|
#
|
6833
|
-
# * Creating geolocation alias resource record sets or latency alias
|
6834
|
-
# resource record sets in a private hosted zone is unsupported.
|
6835
|
-
#
|
6836
7391
|
# * For information about creating failover resource record sets in a
|
6837
7392
|
# private hosted zone, see [Configuring Failover in a Private Hosted
|
6838
7393
|
# Zone][1] in the *Amazon Route 53 Developer Guide*.
|
@@ -6987,6 +7542,15 @@ module Aws::Route53
|
|
6987
7542
|
# use.
|
6988
7543
|
# @return [String]
|
6989
7544
|
#
|
7545
|
+
# @!attribute [rw] cidr_routing_config
|
7546
|
+
# The object that is specified in resource record set object when you
|
7547
|
+
# are linking a resource record set to a CIDR location.
|
7548
|
+
#
|
7549
|
+
# A `LocationName` with an asterisk “*” can be used to create a
|
7550
|
+
# default CIDR record. `CollectionId` is still required for default
|
7551
|
+
# record.
|
7552
|
+
# @return [Types::CidrRoutingConfig]
|
7553
|
+
#
|
6990
7554
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ResourceRecordSet AWS API Documentation
|
6991
7555
|
#
|
6992
7556
|
class ResourceRecordSet < Struct.new(
|
@@ -7002,7 +7566,8 @@ module Aws::Route53
|
|
7002
7566
|
:resource_records,
|
7003
7567
|
:alias_target,
|
7004
7568
|
:health_check_id,
|
7005
|
-
:traffic_policy_instance_id
|
7569
|
+
:traffic_policy_instance_id,
|
7570
|
+
:cidr_routing_config)
|
7006
7571
|
SENSITIVE = []
|
7007
7572
|
include Aws::Structure
|
7008
7573
|
end
|
@@ -7694,7 +8259,7 @@ module Aws::Route53
|
|
7694
8259
|
# enable_sni: false,
|
7695
8260
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
7696
8261
|
# alarm_identifier: {
|
7697
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
8262
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
7698
8263
|
# name: "AlarmName", # required
|
7699
8264
|
# },
|
7700
8265
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -8257,7 +8822,7 @@ module Aws::Route53
|
|
8257
8822
|
# data as a hash:
|
8258
8823
|
#
|
8259
8824
|
# {
|
8260
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
8825
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
8261
8826
|
# vpc_id: "VPCId",
|
8262
8827
|
# }
|
8263
8828
|
#
|