aws-sdk-route53 1.62.0 → 1.63.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53/client.rb +301 -17
- 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 +587 -18
- data/lib/aws-sdk-route53.rb +1 -1
- metadata +2 -2
@@ -644,6 +644,10 @@ module Aws::Route53
|
|
644
644
|
# },
|
645
645
|
# health_check_id: "HealthCheckId",
|
646
646
|
# traffic_policy_instance_id: "TrafficPolicyInstanceId",
|
647
|
+
# cidr_routing_config: {
|
648
|
+
# collection_id: "UUID", # required
|
649
|
+
# location_name: "CidrLocationNameDefaultAllowed", # required
|
650
|
+
# },
|
647
651
|
# },
|
648
652
|
# }
|
649
653
|
#
|
@@ -722,6 +726,10 @@ module Aws::Route53
|
|
722
726
|
# },
|
723
727
|
# health_check_id: "HealthCheckId",
|
724
728
|
# traffic_policy_instance_id: "TrafficPolicyInstanceId",
|
729
|
+
# cidr_routing_config: {
|
730
|
+
# collection_id: "UUID", # required
|
731
|
+
# location_name: "CidrLocationNameDefaultAllowed", # required
|
732
|
+
# },
|
725
733
|
# },
|
726
734
|
# },
|
727
735
|
# ],
|
@@ -745,6 +753,74 @@ module Aws::Route53
|
|
745
753
|
include Aws::Structure
|
746
754
|
end
|
747
755
|
|
756
|
+
# @note When making an API call, you may pass ChangeCidrCollectionRequest
|
757
|
+
# data as a hash:
|
758
|
+
#
|
759
|
+
# {
|
760
|
+
# id: "UUID", # required
|
761
|
+
# collection_version: 1,
|
762
|
+
# changes: [ # required
|
763
|
+
# {
|
764
|
+
# location_name: "CidrLocationNameDefaultNotAllowed", # required
|
765
|
+
# action: "PUT", # required, accepts PUT, DELETE_IF_EXISTS
|
766
|
+
# cidr_list: ["Cidr"], # required
|
767
|
+
# },
|
768
|
+
# ],
|
769
|
+
# }
|
770
|
+
#
|
771
|
+
# @!attribute [rw] id
|
772
|
+
# The UUID of the CIDR collection to update.
|
773
|
+
# @return [String]
|
774
|
+
#
|
775
|
+
# @!attribute [rw] collection_version
|
776
|
+
# A sequential counter that Amazon Route 53 sets to 1 when you create
|
777
|
+
# a collection and increments it by 1 each time you update the
|
778
|
+
# collection.
|
779
|
+
#
|
780
|
+
# We recommend that you use `ListCidrCollection` to get the current
|
781
|
+
# value of `CollectionVersion` for the collection that you want to
|
782
|
+
# update, and then include that value with the change request. This
|
783
|
+
# prevents Route 53 from overwriting an intervening update:
|
784
|
+
#
|
785
|
+
# * If the value in the request matches the value of
|
786
|
+
# `CollectionVersion` in the collection, Route 53 updates the
|
787
|
+
# collection.
|
788
|
+
#
|
789
|
+
# * If the value of `CollectionVersion` in the collection is greater
|
790
|
+
# than the value in the request, the collection was changed after
|
791
|
+
# you got the version number. Route 53 does not update the
|
792
|
+
# collection, and it returns a `CidrCollectionVersionMismatch`
|
793
|
+
# error.
|
794
|
+
# @return [Integer]
|
795
|
+
#
|
796
|
+
# @!attribute [rw] changes
|
797
|
+
# Information about changes to a CIDR collection.
|
798
|
+
# @return [Array<Types::CidrCollectionChange>]
|
799
|
+
#
|
800
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeCidrCollectionRequest AWS API Documentation
|
801
|
+
#
|
802
|
+
class ChangeCidrCollectionRequest < Struct.new(
|
803
|
+
:id,
|
804
|
+
:collection_version,
|
805
|
+
:changes)
|
806
|
+
SENSITIVE = []
|
807
|
+
include Aws::Structure
|
808
|
+
end
|
809
|
+
|
810
|
+
# @!attribute [rw] id
|
811
|
+
# The ID that is returned by `ChangeCidrCollection`. You can use it as
|
812
|
+
# input to `GetChange` to see if a CIDR collection change has
|
813
|
+
# propagated or not.
|
814
|
+
# @return [String]
|
815
|
+
#
|
816
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeCidrCollectionResponse AWS API Documentation
|
817
|
+
#
|
818
|
+
class ChangeCidrCollectionResponse < Struct.new(
|
819
|
+
:id)
|
820
|
+
SENSITIVE = []
|
821
|
+
include Aws::Structure
|
822
|
+
end
|
823
|
+
|
748
824
|
# A complex type that describes change information about changes made to
|
749
825
|
# your hosted zone.
|
750
826
|
#
|
@@ -827,6 +903,10 @@ module Aws::Route53
|
|
827
903
|
# },
|
828
904
|
# health_check_id: "HealthCheckId",
|
829
905
|
# traffic_policy_instance_id: "TrafficPolicyInstanceId",
|
906
|
+
# cidr_routing_config: {
|
907
|
+
# collection_id: "UUID", # required
|
908
|
+
# location_name: "CidrLocationNameDefaultAllowed", # required
|
909
|
+
# },
|
830
910
|
# },
|
831
911
|
# },
|
832
912
|
# ],
|
@@ -936,6 +1016,176 @@ module Aws::Route53
|
|
936
1016
|
#
|
937
1017
|
class ChangeTagsForResourceResponse < Aws::EmptyStructure; end
|
938
1018
|
|
1019
|
+
# This CIDR block is already in use.
|
1020
|
+
#
|
1021
|
+
# @!attribute [rw] message
|
1022
|
+
# @return [String]
|
1023
|
+
#
|
1024
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrBlockInUseException AWS API Documentation
|
1025
|
+
#
|
1026
|
+
class CidrBlockInUseException < Struct.new(
|
1027
|
+
:message)
|
1028
|
+
SENSITIVE = []
|
1029
|
+
include Aws::Structure
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
# A complex type that lists the CIDR blocks.
|
1033
|
+
#
|
1034
|
+
# @!attribute [rw] cidr_block
|
1035
|
+
# Value for the CIDR block.
|
1036
|
+
# @return [String]
|
1037
|
+
#
|
1038
|
+
# @!attribute [rw] location_name
|
1039
|
+
# The location name of the CIDR block.
|
1040
|
+
# @return [String]
|
1041
|
+
#
|
1042
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrBlockSummary AWS API Documentation
|
1043
|
+
#
|
1044
|
+
class CidrBlockSummary < Struct.new(
|
1045
|
+
:cidr_block,
|
1046
|
+
:location_name)
|
1047
|
+
SENSITIVE = []
|
1048
|
+
include Aws::Structure
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
# A complex type that identifies a CIDR collection.
|
1052
|
+
#
|
1053
|
+
# @!attribute [rw] arn
|
1054
|
+
# The ARN of the collection. Can be used to reference the collection
|
1055
|
+
# in IAM policy or in another Amazon Web Services account.
|
1056
|
+
# @return [String]
|
1057
|
+
#
|
1058
|
+
# @!attribute [rw] id
|
1059
|
+
# The unique ID of the CIDR collection.
|
1060
|
+
# @return [String]
|
1061
|
+
#
|
1062
|
+
# @!attribute [rw] name
|
1063
|
+
# The name of a CIDR collection.
|
1064
|
+
# @return [String]
|
1065
|
+
#
|
1066
|
+
# @!attribute [rw] version
|
1067
|
+
# A sequential counter that Route 53 sets to 1 when you create a CIDR
|
1068
|
+
# collection and increments by 1 each time you update settings for the
|
1069
|
+
# CIDR collection.
|
1070
|
+
# @return [Integer]
|
1071
|
+
#
|
1072
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrCollection AWS API Documentation
|
1073
|
+
#
|
1074
|
+
class CidrCollection < Struct.new(
|
1075
|
+
:arn,
|
1076
|
+
:id,
|
1077
|
+
:name,
|
1078
|
+
:version)
|
1079
|
+
SENSITIVE = []
|
1080
|
+
include Aws::Structure
|
1081
|
+
end
|
1082
|
+
|
1083
|
+
# A CIDR collection with this name and a different caller reference
|
1084
|
+
# already exists in this account.
|
1085
|
+
#
|
1086
|
+
# @!attribute [rw] message
|
1087
|
+
# @return [String]
|
1088
|
+
#
|
1089
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrCollectionAlreadyExistsException AWS API Documentation
|
1090
|
+
#
|
1091
|
+
class CidrCollectionAlreadyExistsException < Struct.new(
|
1092
|
+
:message)
|
1093
|
+
SENSITIVE = []
|
1094
|
+
include Aws::Structure
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
# A complex type that contains information about the CIDR collection
|
1098
|
+
# change.
|
1099
|
+
#
|
1100
|
+
# @note When making an API call, you may pass CidrCollectionChange
|
1101
|
+
# data as a hash:
|
1102
|
+
#
|
1103
|
+
# {
|
1104
|
+
# location_name: "CidrLocationNameDefaultNotAllowed", # required
|
1105
|
+
# action: "PUT", # required, accepts PUT, DELETE_IF_EXISTS
|
1106
|
+
# cidr_list: ["Cidr"], # required
|
1107
|
+
# }
|
1108
|
+
#
|
1109
|
+
# @!attribute [rw] location_name
|
1110
|
+
# Name of the location that is associated with the CIDR collection.
|
1111
|
+
# @return [String]
|
1112
|
+
#
|
1113
|
+
# @!attribute [rw] action
|
1114
|
+
# CIDR collection change action.
|
1115
|
+
# @return [String]
|
1116
|
+
#
|
1117
|
+
# @!attribute [rw] cidr_list
|
1118
|
+
# List of CIDR blocks.
|
1119
|
+
# @return [Array<String>]
|
1120
|
+
#
|
1121
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrCollectionChange AWS API Documentation
|
1122
|
+
#
|
1123
|
+
class CidrCollectionChange < Struct.new(
|
1124
|
+
:location_name,
|
1125
|
+
:action,
|
1126
|
+
:cidr_list)
|
1127
|
+
SENSITIVE = []
|
1128
|
+
include Aws::Structure
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
# This CIDR collection is in use, and isn't empty.
|
1132
|
+
#
|
1133
|
+
# @!attribute [rw] message
|
1134
|
+
# @return [String]
|
1135
|
+
#
|
1136
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrCollectionInUseException AWS API Documentation
|
1137
|
+
#
|
1138
|
+
class CidrCollectionInUseException < Struct.new(
|
1139
|
+
:message)
|
1140
|
+
SENSITIVE = []
|
1141
|
+
include Aws::Structure
|
1142
|
+
end
|
1143
|
+
|
1144
|
+
# The CIDR collection version you provided, doesn't match the one in
|
1145
|
+
# the `ListCidrCollections` operation.
|
1146
|
+
#
|
1147
|
+
# @!attribute [rw] message
|
1148
|
+
# @return [String]
|
1149
|
+
#
|
1150
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrCollectionVersionMismatchException AWS API Documentation
|
1151
|
+
#
|
1152
|
+
class CidrCollectionVersionMismatchException < Struct.new(
|
1153
|
+
:message)
|
1154
|
+
SENSITIVE = []
|
1155
|
+
include Aws::Structure
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
# The object that is specified in resource record set object when you
|
1159
|
+
# are linking a resource record set to a CIDR location.
|
1160
|
+
#
|
1161
|
+
# A `LocationName` with an asterisk “*” can be used to create a default
|
1162
|
+
# CIDR record. `CollectionId` is still required for default record.
|
1163
|
+
#
|
1164
|
+
# @note When making an API call, you may pass CidrRoutingConfig
|
1165
|
+
# data as a hash:
|
1166
|
+
#
|
1167
|
+
# {
|
1168
|
+
# collection_id: "UUID", # required
|
1169
|
+
# location_name: "CidrLocationNameDefaultAllowed", # required
|
1170
|
+
# }
|
1171
|
+
#
|
1172
|
+
# @!attribute [rw] collection_id
|
1173
|
+
# The CIDR collection ID.
|
1174
|
+
# @return [String]
|
1175
|
+
#
|
1176
|
+
# @!attribute [rw] location_name
|
1177
|
+
# The CIDR collection location name.
|
1178
|
+
# @return [String]
|
1179
|
+
#
|
1180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CidrRoutingConfig AWS API Documentation
|
1181
|
+
#
|
1182
|
+
class CidrRoutingConfig < Struct.new(
|
1183
|
+
:collection_id,
|
1184
|
+
:location_name)
|
1185
|
+
SENSITIVE = []
|
1186
|
+
include Aws::Structure
|
1187
|
+
end
|
1188
|
+
|
939
1189
|
# A complex type that contains information about the CloudWatch alarm
|
940
1190
|
# that Amazon Route 53 is monitoring for this health check.
|
941
1191
|
#
|
@@ -1005,6 +1255,42 @@ module Aws::Route53
|
|
1005
1255
|
include Aws::Structure
|
1006
1256
|
end
|
1007
1257
|
|
1258
|
+
# A complex type that is an entry in an [CidrCollection][1] array.
|
1259
|
+
#
|
1260
|
+
#
|
1261
|
+
#
|
1262
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CidrCollection.html
|
1263
|
+
#
|
1264
|
+
# @!attribute [rw] arn
|
1265
|
+
# The ARN of the collection summary. Can be used to reference the
|
1266
|
+
# collection in IAM policy or cross-account.
|
1267
|
+
# @return [String]
|
1268
|
+
#
|
1269
|
+
# @!attribute [rw] id
|
1270
|
+
# Unique ID for the CIDR collection.
|
1271
|
+
# @return [String]
|
1272
|
+
#
|
1273
|
+
# @!attribute [rw] name
|
1274
|
+
# The name of a CIDR collection.
|
1275
|
+
# @return [String]
|
1276
|
+
#
|
1277
|
+
# @!attribute [rw] version
|
1278
|
+
# A sequential counter that Route 53 sets to 1 when you create a CIDR
|
1279
|
+
# collection and increments by 1 each time you update settings for the
|
1280
|
+
# CIDR collection.
|
1281
|
+
# @return [Integer]
|
1282
|
+
#
|
1283
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CollectionSummary AWS API Documentation
|
1284
|
+
#
|
1285
|
+
class CollectionSummary < Struct.new(
|
1286
|
+
:arn,
|
1287
|
+
:id,
|
1288
|
+
:name,
|
1289
|
+
:version)
|
1290
|
+
SENSITIVE = []
|
1291
|
+
include Aws::Structure
|
1292
|
+
end
|
1293
|
+
|
1008
1294
|
# Another user submitted a request to create, update, or delete the
|
1009
1295
|
# object at the same time that you did. Retry the request.
|
1010
1296
|
#
|
@@ -1070,6 +1356,51 @@ module Aws::Route53
|
|
1070
1356
|
include Aws::Structure
|
1071
1357
|
end
|
1072
1358
|
|
1359
|
+
# @note When making an API call, you may pass CreateCidrCollectionRequest
|
1360
|
+
# data as a hash:
|
1361
|
+
#
|
1362
|
+
# {
|
1363
|
+
# name: "CollectionName", # required
|
1364
|
+
# caller_reference: "CidrNonce", # required
|
1365
|
+
# }
|
1366
|
+
#
|
1367
|
+
# @!attribute [rw] name
|
1368
|
+
# A unique identifier for the account that can be used to reference
|
1369
|
+
# the collection from other API calls.
|
1370
|
+
# @return [String]
|
1371
|
+
#
|
1372
|
+
# @!attribute [rw] caller_reference
|
1373
|
+
# A client-specific token that allows requests to be securely retried
|
1374
|
+
# so that the intended outcome will only occur once, retries receive a
|
1375
|
+
# similar response, and there are no additional edge cases to handle.
|
1376
|
+
# @return [String]
|
1377
|
+
#
|
1378
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateCidrCollectionRequest AWS API Documentation
|
1379
|
+
#
|
1380
|
+
class CreateCidrCollectionRequest < Struct.new(
|
1381
|
+
:name,
|
1382
|
+
:caller_reference)
|
1383
|
+
SENSITIVE = []
|
1384
|
+
include Aws::Structure
|
1385
|
+
end
|
1386
|
+
|
1387
|
+
# @!attribute [rw] collection
|
1388
|
+
# A complex type that contains information about the CIDR collection.
|
1389
|
+
# @return [Types::CidrCollection]
|
1390
|
+
#
|
1391
|
+
# @!attribute [rw] location
|
1392
|
+
# A unique URL that represents the location for the CIDR collection.
|
1393
|
+
# @return [String]
|
1394
|
+
#
|
1395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateCidrCollectionResponse AWS API Documentation
|
1396
|
+
#
|
1397
|
+
class CreateCidrCollectionResponse < Struct.new(
|
1398
|
+
:collection,
|
1399
|
+
:location)
|
1400
|
+
SENSITIVE = []
|
1401
|
+
include Aws::Structure
|
1402
|
+
end
|
1403
|
+
|
1073
1404
|
# A complex type that contains the health check request information.
|
1074
1405
|
#
|
1075
1406
|
# @note When making an API call, you may pass CreateHealthCheckRequest
|
@@ -1183,13 +1514,13 @@ module Aws::Route53
|
|
1183
1514
|
# @!attribute [rw] name
|
1184
1515
|
# The name of the domain. Specify a fully qualified domain name, for
|
1185
1516
|
# example, *www.example.com*. The trailing dot is optional; Amazon
|
1186
|
-
# Route
|
1187
|
-
# that Route
|
1517
|
+
# Route 53 assumes that the domain name is fully qualified. This means
|
1518
|
+
# that Route 53 treats *www.example.com* (without a trailing dot) and
|
1188
1519
|
# *www.example.com.* (with a trailing dot) as identical.
|
1189
1520
|
#
|
1190
1521
|
# If you're creating a public hosted zone, this is the name you have
|
1191
1522
|
# registered with your DNS registrar. If your domain name is
|
1192
|
-
# registered with a registrar other than Route
|
1523
|
+
# registered with a registrar other than Route 53, change the name
|
1193
1524
|
# servers for your domain to the set of `NameServers` that
|
1194
1525
|
# `CreateHostedZone` returns in `DelegationSet`.
|
1195
1526
|
# @return [String]
|
@@ -1233,7 +1564,7 @@ module Aws::Route53
|
|
1233
1564
|
#
|
1234
1565
|
# @!attribute [rw] delegation_set_id
|
1235
1566
|
# If you want to associate a reusable delegation set with this hosted
|
1236
|
-
# zone, the ID that Amazon Route
|
1567
|
+
# zone, the ID that Amazon Route 53 assigned to the reusable
|
1237
1568
|
# delegation set when you created it. For more information about
|
1238
1569
|
# reusable delegation sets, see [CreateReusableDelegationSet][1].
|
1239
1570
|
#
|
@@ -1968,6 +2299,29 @@ module Aws::Route53
|
|
1968
2299
|
include Aws::Structure
|
1969
2300
|
end
|
1970
2301
|
|
2302
|
+
# @note When making an API call, you may pass DeleteCidrCollectionRequest
|
2303
|
+
# data as a hash:
|
2304
|
+
#
|
2305
|
+
# {
|
2306
|
+
# id: "UUID", # required
|
2307
|
+
# }
|
2308
|
+
#
|
2309
|
+
# @!attribute [rw] id
|
2310
|
+
# The UUID of the collection to delete.
|
2311
|
+
# @return [String]
|
2312
|
+
#
|
2313
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteCidrCollectionRequest AWS API Documentation
|
2314
|
+
#
|
2315
|
+
class DeleteCidrCollectionRequest < Struct.new(
|
2316
|
+
:id)
|
2317
|
+
SENSITIVE = []
|
2318
|
+
include Aws::Structure
|
2319
|
+
end
|
2320
|
+
|
2321
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteCidrCollectionResponse AWS API Documentation
|
2322
|
+
#
|
2323
|
+
class DeleteCidrCollectionResponse < Aws::EmptyStructure; end
|
2324
|
+
|
1971
2325
|
# This action deletes a health check.
|
1972
2326
|
#
|
1973
2327
|
# @note When making an API call, you may pass DeleteHealthCheckRequest
|
@@ -2563,7 +2917,7 @@ module Aws::Route53
|
|
2563
2917
|
# data as a hash:
|
2564
2918
|
#
|
2565
2919
|
# {
|
2566
|
-
# id: "
|
2920
|
+
# id: "ChangeId", # required
|
2567
2921
|
# }
|
2568
2922
|
#
|
2569
2923
|
# @!attribute [rw] id
|
@@ -4539,21 +4893,14 @@ module Aws::Route53
|
|
4539
4893
|
include Aws::Structure
|
4540
4894
|
end
|
4541
4895
|
|
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.
|
4896
|
+
# This operation can't be completed because the current account has
|
4897
|
+
# reached the limit on the resource you are trying to create. To request
|
4898
|
+
# a higher limit, [create a case][1] with the Amazon Web Services
|
4899
|
+
# Support Center.
|
4551
4900
|
#
|
4552
4901
|
#
|
4553
4902
|
#
|
4554
|
-
# [1]:
|
4555
|
-
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetHostedZoneLimit.html
|
4556
|
-
# [3]: http://aws.amazon.com/route53-request
|
4903
|
+
# [1]: http://aws.amazon.com/route53-request
|
4557
4904
|
#
|
4558
4905
|
# @!attribute [rw] message
|
4559
4906
|
# @return [String]
|
@@ -4593,6 +4940,173 @@ module Aws::Route53
|
|
4593
4940
|
include Aws::Structure
|
4594
4941
|
end
|
4595
4942
|
|
4943
|
+
# @note When making an API call, you may pass ListCidrBlocksRequest
|
4944
|
+
# data as a hash:
|
4945
|
+
#
|
4946
|
+
# {
|
4947
|
+
# collection_id: "UUID", # required
|
4948
|
+
# location_name: "CidrLocationNameDefaultNotAllowed",
|
4949
|
+
# next_token: "PaginationToken",
|
4950
|
+
# max_results: "MaxResults",
|
4951
|
+
# }
|
4952
|
+
#
|
4953
|
+
# @!attribute [rw] collection_id
|
4954
|
+
# The UUID of the CIDR collection.
|
4955
|
+
# @return [String]
|
4956
|
+
#
|
4957
|
+
# @!attribute [rw] location_name
|
4958
|
+
# The name of the CIDR collection location.
|
4959
|
+
# @return [String]
|
4960
|
+
#
|
4961
|
+
# @!attribute [rw] next_token
|
4962
|
+
# An opaque pagination token to indicate where the service is to begin
|
4963
|
+
# enumerating results.
|
4964
|
+
# @return [String]
|
4965
|
+
#
|
4966
|
+
# @!attribute [rw] max_results
|
4967
|
+
# Maximum number of results you want returned.
|
4968
|
+
# @return [String]
|
4969
|
+
#
|
4970
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListCidrBlocksRequest AWS API Documentation
|
4971
|
+
#
|
4972
|
+
class ListCidrBlocksRequest < Struct.new(
|
4973
|
+
:collection_id,
|
4974
|
+
:location_name,
|
4975
|
+
:next_token,
|
4976
|
+
:max_results)
|
4977
|
+
SENSITIVE = []
|
4978
|
+
include Aws::Structure
|
4979
|
+
end
|
4980
|
+
|
4981
|
+
# @!attribute [rw] next_token
|
4982
|
+
# An opaque pagination token to indicate where the service is to begin
|
4983
|
+
# enumerating results.
|
4984
|
+
#
|
4985
|
+
# If no value is provided, the listing of results starts from the
|
4986
|
+
# beginning.
|
4987
|
+
# @return [String]
|
4988
|
+
#
|
4989
|
+
# @!attribute [rw] cidr_blocks
|
4990
|
+
# A complex type that contains information about the CIDR blocks.
|
4991
|
+
# @return [Array<Types::CidrBlockSummary>]
|
4992
|
+
#
|
4993
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListCidrBlocksResponse AWS API Documentation
|
4994
|
+
#
|
4995
|
+
class ListCidrBlocksResponse < Struct.new(
|
4996
|
+
:next_token,
|
4997
|
+
:cidr_blocks)
|
4998
|
+
SENSITIVE = []
|
4999
|
+
include Aws::Structure
|
5000
|
+
end
|
5001
|
+
|
5002
|
+
# @note When making an API call, you may pass ListCidrCollectionsRequest
|
5003
|
+
# data as a hash:
|
5004
|
+
#
|
5005
|
+
# {
|
5006
|
+
# next_token: "PaginationToken",
|
5007
|
+
# max_results: "MaxResults",
|
5008
|
+
# }
|
5009
|
+
#
|
5010
|
+
# @!attribute [rw] next_token
|
5011
|
+
# An opaque pagination token to indicate where the service is to begin
|
5012
|
+
# enumerating results.
|
5013
|
+
#
|
5014
|
+
# If no value is provided, the listing of results starts from the
|
5015
|
+
# beginning.
|
5016
|
+
# @return [String]
|
5017
|
+
#
|
5018
|
+
# @!attribute [rw] max_results
|
5019
|
+
# The maximum number of CIDR collections to return in the response.
|
5020
|
+
# @return [String]
|
5021
|
+
#
|
5022
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListCidrCollectionsRequest AWS API Documentation
|
5023
|
+
#
|
5024
|
+
class ListCidrCollectionsRequest < Struct.new(
|
5025
|
+
:next_token,
|
5026
|
+
:max_results)
|
5027
|
+
SENSITIVE = []
|
5028
|
+
include Aws::Structure
|
5029
|
+
end
|
5030
|
+
|
5031
|
+
# @!attribute [rw] next_token
|
5032
|
+
# An opaque pagination token to indicate where the service is to begin
|
5033
|
+
# enumerating results.
|
5034
|
+
#
|
5035
|
+
# If no value is provided, the listing of results starts from the
|
5036
|
+
# beginning.
|
5037
|
+
# @return [String]
|
5038
|
+
#
|
5039
|
+
# @!attribute [rw] cidr_collections
|
5040
|
+
# A complex type with information about the CIDR collection.
|
5041
|
+
# @return [Array<Types::CollectionSummary>]
|
5042
|
+
#
|
5043
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListCidrCollectionsResponse AWS API Documentation
|
5044
|
+
#
|
5045
|
+
class ListCidrCollectionsResponse < Struct.new(
|
5046
|
+
:next_token,
|
5047
|
+
:cidr_collections)
|
5048
|
+
SENSITIVE = []
|
5049
|
+
include Aws::Structure
|
5050
|
+
end
|
5051
|
+
|
5052
|
+
# @note When making an API call, you may pass ListCidrLocationsRequest
|
5053
|
+
# data as a hash:
|
5054
|
+
#
|
5055
|
+
# {
|
5056
|
+
# collection_id: "UUID", # required
|
5057
|
+
# next_token: "PaginationToken",
|
5058
|
+
# max_results: "MaxResults",
|
5059
|
+
# }
|
5060
|
+
#
|
5061
|
+
# @!attribute [rw] collection_id
|
5062
|
+
# The CIDR collection ID.
|
5063
|
+
# @return [String]
|
5064
|
+
#
|
5065
|
+
# @!attribute [rw] next_token
|
5066
|
+
# An opaque pagination token to indicate where the service is to begin
|
5067
|
+
# enumerating results.
|
5068
|
+
#
|
5069
|
+
# If no value is provided, the listing of results starts from the
|
5070
|
+
# beginning.
|
5071
|
+
# @return [String]
|
5072
|
+
#
|
5073
|
+
# @!attribute [rw] max_results
|
5074
|
+
# The maximum number of CIDR collection locations to return in the
|
5075
|
+
# response.
|
5076
|
+
# @return [String]
|
5077
|
+
#
|
5078
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListCidrLocationsRequest AWS API Documentation
|
5079
|
+
#
|
5080
|
+
class ListCidrLocationsRequest < Struct.new(
|
5081
|
+
:collection_id,
|
5082
|
+
:next_token,
|
5083
|
+
:max_results)
|
5084
|
+
SENSITIVE = []
|
5085
|
+
include Aws::Structure
|
5086
|
+
end
|
5087
|
+
|
5088
|
+
# @!attribute [rw] next_token
|
5089
|
+
# An opaque pagination token to indicate where the service is to begin
|
5090
|
+
# enumerating results.
|
5091
|
+
#
|
5092
|
+
# If no value is provided, the listing of results starts from the
|
5093
|
+
# beginning.
|
5094
|
+
# @return [String]
|
5095
|
+
#
|
5096
|
+
# @!attribute [rw] cidr_locations
|
5097
|
+
# A complex type that contains information about the list of CIDR
|
5098
|
+
# locations.
|
5099
|
+
# @return [Array<Types::LocationSummary>]
|
5100
|
+
#
|
5101
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListCidrLocationsResponse AWS API Documentation
|
5102
|
+
#
|
5103
|
+
class ListCidrLocationsResponse < Struct.new(
|
5104
|
+
:next_token,
|
5105
|
+
:cidr_locations)
|
5106
|
+
SENSITIVE = []
|
5107
|
+
include Aws::Structure
|
5108
|
+
end
|
5109
|
+
|
4596
5110
|
# A request to get a list of geographic locations that Amazon Route 53
|
4597
5111
|
# supports for geolocation resource record sets.
|
4598
5112
|
#
|
@@ -6147,6 +6661,20 @@ module Aws::Route53
|
|
6147
6661
|
include Aws::Structure
|
6148
6662
|
end
|
6149
6663
|
|
6664
|
+
# A complex type that contains information about the CIDR location.
|
6665
|
+
#
|
6666
|
+
# @!attribute [rw] location_name
|
6667
|
+
# A string that specifies a location name.
|
6668
|
+
# @return [String]
|
6669
|
+
#
|
6670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/LocationSummary AWS API Documentation
|
6671
|
+
#
|
6672
|
+
class LocationSummary < Struct.new(
|
6673
|
+
:location_name)
|
6674
|
+
SENSITIVE = []
|
6675
|
+
include Aws::Structure
|
6676
|
+
end
|
6677
|
+
|
6150
6678
|
# A change with the specified change ID does not exist.
|
6151
6679
|
#
|
6152
6680
|
# @!attribute [rw] message
|
@@ -6160,6 +6688,33 @@ module Aws::Route53
|
|
6160
6688
|
include Aws::Structure
|
6161
6689
|
end
|
6162
6690
|
|
6691
|
+
# The CIDR collection you specified, doesn't exist.
|
6692
|
+
#
|
6693
|
+
# @!attribute [rw] message
|
6694
|
+
# @return [String]
|
6695
|
+
#
|
6696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchCidrCollectionException AWS API Documentation
|
6697
|
+
#
|
6698
|
+
class NoSuchCidrCollectionException < Struct.new(
|
6699
|
+
:message)
|
6700
|
+
SENSITIVE = []
|
6701
|
+
include Aws::Structure
|
6702
|
+
end
|
6703
|
+
|
6704
|
+
# The CIDR collection location doesn't match any locations in your
|
6705
|
+
# account.
|
6706
|
+
#
|
6707
|
+
# @!attribute [rw] message
|
6708
|
+
# @return [String]
|
6709
|
+
#
|
6710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchCidrLocationException AWS API Documentation
|
6711
|
+
#
|
6712
|
+
class NoSuchCidrLocationException < Struct.new(
|
6713
|
+
:message)
|
6714
|
+
SENSITIVE = []
|
6715
|
+
include Aws::Structure
|
6716
|
+
end
|
6717
|
+
|
6163
6718
|
# There is no CloudWatch Logs log group with the specified ARN.
|
6164
6719
|
#
|
6165
6720
|
# @!attribute [rw] message
|
@@ -6442,6 +6997,10 @@ module Aws::Route53
|
|
6442
6997
|
# },
|
6443
6998
|
# health_check_id: "HealthCheckId",
|
6444
6999
|
# traffic_policy_instance_id: "TrafficPolicyInstanceId",
|
7000
|
+
# cidr_routing_config: {
|
7001
|
+
# collection_id: "UUID", # required
|
7002
|
+
# location_name: "CidrLocationNameDefaultAllowed", # required
|
7003
|
+
# },
|
6445
7004
|
# }
|
6446
7005
|
#
|
6447
7006
|
# @!attribute [rw] name
|
@@ -6987,6 +7546,15 @@ module Aws::Route53
|
|
6987
7546
|
# use.
|
6988
7547
|
# @return [String]
|
6989
7548
|
#
|
7549
|
+
# @!attribute [rw] cidr_routing_config
|
7550
|
+
# The object that is specified in resource record set object when you
|
7551
|
+
# are linking a resource record set to a CIDR location.
|
7552
|
+
#
|
7553
|
+
# A `LocationName` with an asterisk “*” can be used to create a
|
7554
|
+
# default CIDR record. `CollectionId` is still required for default
|
7555
|
+
# record.
|
7556
|
+
# @return [Types::CidrRoutingConfig]
|
7557
|
+
#
|
6990
7558
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ResourceRecordSet AWS API Documentation
|
6991
7559
|
#
|
6992
7560
|
class ResourceRecordSet < Struct.new(
|
@@ -7002,7 +7570,8 @@ module Aws::Route53
|
|
7002
7570
|
:resource_records,
|
7003
7571
|
:alias_target,
|
7004
7572
|
:health_check_id,
|
7005
|
-
:traffic_policy_instance_id
|
7573
|
+
:traffic_policy_instance_id,
|
7574
|
+
:cidr_routing_config)
|
7006
7575
|
SENSITIVE = []
|
7007
7576
|
include Aws::Structure
|
7008
7577
|
end
|