aws-sdk-core 2.10.0 → 2.10.1

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.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -231,7 +231,6 @@
231
231
  "output":{"shape":"DeleteHealthCheckResponse"},
232
232
  "errors":[
233
233
  {"shape":"NoSuchHealthCheck"},
234
- {"shape":"HealthCheckInUse"},
235
234
  {"shape":"InvalidInput"}
236
235
  ]
237
236
  },
@@ -1798,14 +1797,6 @@
1798
1797
  "type":"string",
1799
1798
  "max":64
1800
1799
  },
1801
- "HealthCheckInUse":{
1802
- "type":"structure",
1803
- "members":{
1804
- "message":{"shape":"ErrorMessage"}
1805
- },
1806
- "error":{"httpStatusCode":400},
1807
- "exception":true
1808
- },
1809
1800
  "HealthCheckNonce":{
1810
1801
  "type":"string",
1811
1802
  "max":64,
@@ -1848,7 +1839,7 @@
1848
1839
  "locationName":"Region"
1849
1840
  },
1850
1841
  "max":64,
1851
- "min":1
1842
+ "min":3
1852
1843
  },
1853
1844
  "HealthCheckType":{
1854
1845
  "type":"string",
@@ -2734,6 +2725,7 @@
2734
2725
  "Region":{"shape":"ResourceRecordSetRegion"},
2735
2726
  "GeoLocation":{"shape":"GeoLocation"},
2736
2727
  "Failover":{"shape":"ResourceRecordSetFailover"},
2728
+ "MultiValueAnswer":{"shape":"ResourceRecordSetMultiValueAnswer"},
2737
2729
  "TTL":{"shape":"TTL"},
2738
2730
  "ResourceRecords":{"shape":"ResourceRecords"},
2739
2731
  "AliasTarget":{"shape":"AliasTarget"},
@@ -2753,6 +2745,7 @@
2753
2745
  "max":128,
2754
2746
  "min":1
2755
2747
  },
2748
+ "ResourceRecordSetMultiValueAnswer":{"type":"boolean"},
2756
2749
  "ResourceRecordSetRegion":{
2757
2750
  "type":"string",
2758
2751
  "enum":[
@@ -213,6 +213,18 @@
213
213
  {"shape":"ParameterNotFound"}
214
214
  ]
215
215
  },
216
+ "DeleteParameters":{
217
+ "name":"DeleteParameters",
218
+ "http":{
219
+ "method":"POST",
220
+ "requestUri":"/"
221
+ },
222
+ "input":{"shape":"DeleteParametersRequest"},
223
+ "output":{"shape":"DeleteParametersResult"},
224
+ "errors":[
225
+ {"shape":"InternalServerError"}
226
+ ]
227
+ },
216
228
  "DeletePatchBaseline":{
217
229
  "name":"DeletePatchBaseline",
218
230
  "http":{
@@ -546,6 +558,8 @@
546
558
  "output":{"shape":"DescribeParametersResult"},
547
559
  "errors":[
548
560
  {"shape":"InternalServerError"},
561
+ {"shape":"InvalidFilterKey"},
562
+ {"shape":"InvalidFilterOption"},
549
563
  {"shape":"InvalidFilterValue"},
550
564
  {"shape":"InvalidNextToken"}
551
565
  ]
@@ -723,6 +737,20 @@
723
737
  {"shape":"InternalServerError"}
724
738
  ]
725
739
  },
740
+ "GetParameter":{
741
+ "name":"GetParameter",
742
+ "http":{
743
+ "method":"POST",
744
+ "requestUri":"/"
745
+ },
746
+ "input":{"shape":"GetParameterRequest"},
747
+ "output":{"shape":"GetParameterResult"},
748
+ "errors":[
749
+ {"shape":"InternalServerError"},
750
+ {"shape":"InvalidKeyId"},
751
+ {"shape":"ParameterNotFound"}
752
+ ]
753
+ },
726
754
  "GetParameterHistory":{
727
755
  "name":"GetParameterHistory",
728
756
  "http":{
@@ -734,7 +762,8 @@
734
762
  "errors":[
735
763
  {"shape":"InternalServerError"},
736
764
  {"shape":"ParameterNotFound"},
737
- {"shape":"InvalidNextToken"}
765
+ {"shape":"InvalidNextToken"},
766
+ {"shape":"InvalidKeyId"}
738
767
  ]
739
768
  },
740
769
  "GetParameters":{
@@ -746,9 +775,27 @@
746
775
  "input":{"shape":"GetParametersRequest"},
747
776
  "output":{"shape":"GetParametersResult"},
748
777
  "errors":[
778
+ {"shape":"InvalidKeyId"},
749
779
  {"shape":"InternalServerError"}
750
780
  ]
751
781
  },
782
+ "GetParametersByPath":{
783
+ "name":"GetParametersByPath",
784
+ "http":{
785
+ "method":"POST",
786
+ "requestUri":"/"
787
+ },
788
+ "input":{"shape":"GetParametersByPathRequest"},
789
+ "output":{"shape":"GetParametersByPathResult"},
790
+ "errors":[
791
+ {"shape":"InternalServerError"},
792
+ {"shape":"InvalidFilterKey"},
793
+ {"shape":"InvalidFilterOption"},
794
+ {"shape":"InvalidFilterValue"},
795
+ {"shape":"InvalidKeyId"},
796
+ {"shape":"InvalidNextToken"}
797
+ ]
798
+ },
752
799
  "GetPatchBaseline":{
753
800
  "name":"GetPatchBaseline",
754
801
  "http":{
@@ -928,6 +975,10 @@
928
975
  {"shape":"ParameterLimitExceeded"},
929
976
  {"shape":"TooManyUpdates"},
930
977
  {"shape":"ParameterAlreadyExists"},
978
+ {"shape":"HierarchyLevelLimitExceededException"},
979
+ {"shape":"HierarchyTypeMismatchException"},
980
+ {"shape":"InvalidAllowedPatternException"},
981
+ {"shape":"ParameterPatternMismatchException"},
931
982
  {"shape":"UnsupportedParameterType"}
932
983
  ]
933
984
  },
@@ -1234,6 +1285,11 @@
1234
1285
  "type":"string",
1235
1286
  "max":10
1236
1287
  },
1288
+ "AllowedPattern":{
1289
+ "type":"string",
1290
+ "max":1024,
1291
+ "min":0
1292
+ },
1237
1293
  "AlreadyExistsException":{
1238
1294
  "type":"structure",
1239
1295
  "members":{
@@ -1964,6 +2020,20 @@
1964
2020
  "members":{
1965
2021
  }
1966
2022
  },
2023
+ "DeleteParametersRequest":{
2024
+ "type":"structure",
2025
+ "required":["Names"],
2026
+ "members":{
2027
+ "Names":{"shape":"ParameterNameList"}
2028
+ }
2029
+ },
2030
+ "DeleteParametersResult":{
2031
+ "type":"structure",
2032
+ "members":{
2033
+ "DeletedParameters":{"shape":"ParameterNameList"},
2034
+ "InvalidParameters":{"shape":"ParameterNameList"}
2035
+ }
2036
+ },
1967
2037
  "DeletePatchBaselineRequest":{
1968
2038
  "type":"structure",
1969
2039
  "required":["BaselineId"],
@@ -2422,6 +2492,7 @@
2422
2492
  "type":"structure",
2423
2493
  "members":{
2424
2494
  "Filters":{"shape":"ParametersFilterList"},
2495
+ "ParameterFilters":{"shape":"ParameterStringFilterList"},
2425
2496
  "MaxResults":{
2426
2497
  "shape":"MaxResults",
2427
2498
  "box":true
@@ -2987,6 +3058,56 @@
2987
3058
  "NextToken":{"shape":"NextToken"}
2988
3059
  }
2989
3060
  },
3061
+ "GetParameterRequest":{
3062
+ "type":"structure",
3063
+ "required":["Name"],
3064
+ "members":{
3065
+ "Name":{"shape":"PSParameterName"},
3066
+ "WithDecryption":{
3067
+ "shape":"Boolean",
3068
+ "box":true
3069
+ }
3070
+ }
3071
+ },
3072
+ "GetParameterResult":{
3073
+ "type":"structure",
3074
+ "members":{
3075
+ "Parameter":{"shape":"Parameter"}
3076
+ }
3077
+ },
3078
+ "GetParametersByPathMaxResults":{
3079
+ "type":"integer",
3080
+ "max":10,
3081
+ "min":1
3082
+ },
3083
+ "GetParametersByPathRequest":{
3084
+ "type":"structure",
3085
+ "required":["Path"],
3086
+ "members":{
3087
+ "Path":{"shape":"PSParameterName"},
3088
+ "Recursive":{
3089
+ "shape":"Boolean",
3090
+ "box":true
3091
+ },
3092
+ "ParameterFilters":{"shape":"ParameterStringFilterList"},
3093
+ "WithDecryption":{
3094
+ "shape":"Boolean",
3095
+ "box":true
3096
+ },
3097
+ "MaxResults":{
3098
+ "shape":"GetParametersByPathMaxResults",
3099
+ "box":true
3100
+ },
3101
+ "NextToken":{"shape":"NextToken"}
3102
+ }
3103
+ },
3104
+ "GetParametersByPathResult":{
3105
+ "type":"structure",
3106
+ "members":{
3107
+ "Parameters":{"shape":"ParameterList"},
3108
+ "NextToken":{"shape":"NextToken"}
3109
+ }
3110
+ },
2990
3111
  "GetParametersRequest":{
2991
3112
  "type":"structure",
2992
3113
  "required":["Names"],
@@ -3041,6 +3162,20 @@
3041
3162
  "Description":{"shape":"BaselineDescription"}
3042
3163
  }
3043
3164
  },
3165
+ "HierarchyLevelLimitExceededException":{
3166
+ "type":"structure",
3167
+ "members":{
3168
+ "message":{"shape":"String"}
3169
+ },
3170
+ "exception":true
3171
+ },
3172
+ "HierarchyTypeMismatchException":{
3173
+ "type":"structure",
3174
+ "members":{
3175
+ "message":{"shape":"String"}
3176
+ },
3177
+ "exception":true
3178
+ },
3044
3179
  "IPAddress":{
3045
3180
  "type":"string",
3046
3181
  "max":46,
@@ -3338,6 +3473,13 @@
3338
3473
  },
3339
3474
  "exception":true
3340
3475
  },
3476
+ "InvalidAllowedPatternException":{
3477
+ "type":"structure",
3478
+ "members":{
3479
+ "message":{"shape":"String"}
3480
+ },
3481
+ "exception":true
3482
+ },
3341
3483
  "InvalidAutomationExecutionParametersException":{
3342
3484
  "type":"structure",
3343
3485
  "members":{
@@ -3399,6 +3541,13 @@
3399
3541
  },
3400
3542
  "exception":true
3401
3543
  },
3544
+ "InvalidFilterOption":{
3545
+ "type":"structure",
3546
+ "members":{
3547
+ "message":{"shape":"String"}
3548
+ },
3549
+ "exception":true
3550
+ },
3402
3551
  "InvalidFilterValue":{
3403
3552
  "type":"structure",
3404
3553
  "members":{
@@ -4274,14 +4423,12 @@
4274
4423
  "PSParameterName":{
4275
4424
  "type":"string",
4276
4425
  "max":1024,
4277
- "min":1,
4278
- "pattern":"^(?!^([aA][wW][sS]|[sS][sS][mM]))(?=^[a-zA-Z0-9_.-]*$).*$"
4426
+ "min":1
4279
4427
  },
4280
4428
  "PSParameterValue":{
4281
4429
  "type":"string",
4282
4430
  "max":4096,
4283
- "min":1,
4284
- "pattern":"^(?:(?!(\\{\\{.*\\}\\})).)*$"
4431
+ "min":1
4285
4432
  },
4286
4433
  "Parameter":{
4287
4434
  "type":"structure",
@@ -4312,7 +4459,8 @@
4312
4459
  "LastModifiedDate":{"shape":"DateTime"},
4313
4460
  "LastModifiedUser":{"shape":"String"},
4314
4461
  "Description":{"shape":"ParameterDescription"},
4315
- "Value":{"shape":"PSParameterValue"}
4462
+ "Value":{"shape":"PSParameterValue"},
4463
+ "AllowedPattern":{"shape":"AllowedPattern"}
4316
4464
  }
4317
4465
  },
4318
4466
  "ParameterHistoryList":{
@@ -4344,7 +4492,8 @@
4344
4492
  "KeyId":{"shape":"ParameterKeyId"},
4345
4493
  "LastModifiedDate":{"shape":"DateTime"},
4346
4494
  "LastModifiedUser":{"shape":"String"},
4347
- "Description":{"shape":"ParameterDescription"}
4495
+ "Description":{"shape":"ParameterDescription"},
4496
+ "AllowedPattern":{"shape":"AllowedPattern"}
4348
4497
  }
4349
4498
  },
4350
4499
  "ParameterMetadataList":{
@@ -4365,6 +4514,48 @@
4365
4514
  },
4366
4515
  "exception":true
4367
4516
  },
4517
+ "ParameterPatternMismatchException":{
4518
+ "type":"structure",
4519
+ "members":{
4520
+ "message":{"shape":"String"}
4521
+ },
4522
+ "exception":true
4523
+ },
4524
+ "ParameterStringFilter":{
4525
+ "type":"structure",
4526
+ "required":["Key"],
4527
+ "members":{
4528
+ "Key":{"shape":"ParameterStringFilterKey"},
4529
+ "Option":{"shape":"ParameterStringQueryOption"},
4530
+ "Values":{"shape":"ParameterStringFilterValueList"}
4531
+ }
4532
+ },
4533
+ "ParameterStringFilterKey":{
4534
+ "type":"string",
4535
+ "max":132,
4536
+ "min":1,
4537
+ "pattern":"tag:.+|Name|Type|KeyId|Path"
4538
+ },
4539
+ "ParameterStringFilterList":{
4540
+ "type":"list",
4541
+ "member":{"shape":"ParameterStringFilter"}
4542
+ },
4543
+ "ParameterStringFilterValue":{
4544
+ "type":"string",
4545
+ "max":1024,
4546
+ "min":1
4547
+ },
4548
+ "ParameterStringFilterValueList":{
4549
+ "type":"list",
4550
+ "member":{"shape":"ParameterStringFilterValue"},
4551
+ "max":50,
4552
+ "min":1
4553
+ },
4554
+ "ParameterStringQueryOption":{
4555
+ "type":"string",
4556
+ "max":10,
4557
+ "min":1
4558
+ },
4368
4559
  "ParameterType":{
4369
4560
  "type":"string",
4370
4561
  "enum":[
@@ -4385,7 +4576,10 @@
4385
4576
  },
4386
4577
  "ParametersFilter":{
4387
4578
  "type":"structure",
4388
- "required":["Values"],
4579
+ "required":[
4580
+ "Key",
4581
+ "Values"
4582
+ ],
4389
4583
  "members":{
4390
4584
  "Key":{"shape":"ParametersFilterKey"},
4391
4585
  "Values":{"shape":"ParametersFilterValueList"}
@@ -4405,7 +4599,7 @@
4405
4599
  },
4406
4600
  "ParametersFilterValue":{
4407
4601
  "type":"string",
4408
- "max":100,
4602
+ "max":1024,
4409
4603
  "min":1
4410
4604
  },
4411
4605
  "ParametersFilterValueList":{
@@ -4718,7 +4912,8 @@
4718
4912
  "Overwrite":{
4719
4913
  "shape":"Boolean",
4720
4914
  "box":true
4721
- }
4915
+ },
4916
+ "AllowedPattern":{"shape":"AllowedPattern"}
4722
4917
  }
4723
4918
  },
4724
4919
  "PutParameterResult":{
@@ -12,6 +12,21 @@
12
12
  "output_token": "NextToken",
13
13
  "result_key": "InstanceInformationList"
14
14
  },
15
+ "DescribeParameters": {
16
+ "input_token": "NextToken",
17
+ "limit_key": "MaxResults",
18
+ "output_token": "NextToken"
19
+ },
20
+ "GetParameterHistory": {
21
+ "input_token": "NextToken",
22
+ "limit_key": "MaxResults",
23
+ "output_token": "NextToken"
24
+ },
25
+ "GetParametersByPath": {
26
+ "input_token": "NextToken",
27
+ "limit_key": "MaxResults",
28
+ "output_token": "NextToken"
29
+ },
15
30
  "ListAssociations": {
16
31
  "input_token": "NextToken",
17
32
  "limit_key": "MaxResults",
@@ -62,6 +62,22 @@
62
62
  {"shape":"WAFLimitsExceededException"}
63
63
  ]
64
64
  },
65
+ "CreateRateBasedRule":{
66
+ "name":"CreateRateBasedRule",
67
+ "http":{
68
+ "method":"POST",
69
+ "requestUri":"/"
70
+ },
71
+ "input":{"shape":"CreateRateBasedRuleRequest"},
72
+ "output":{"shape":"CreateRateBasedRuleResponse"},
73
+ "errors":[
74
+ {"shape":"WAFStaleDataException"},
75
+ {"shape":"WAFInternalErrorException"},
76
+ {"shape":"WAFDisallowedNameException"},
77
+ {"shape":"WAFInvalidParameterException"},
78
+ {"shape":"WAFLimitsExceededException"}
79
+ ]
80
+ },
65
81
  "CreateRule":{
66
82
  "name":"CreateRule",
67
83
  "http":{
@@ -180,6 +196,23 @@
180
196
  {"shape":"WAFNonEmptyEntityException"}
181
197
  ]
182
198
  },
199
+ "DeleteRateBasedRule":{
200
+ "name":"DeleteRateBasedRule",
201
+ "http":{
202
+ "method":"POST",
203
+ "requestUri":"/"
204
+ },
205
+ "input":{"shape":"DeleteRateBasedRuleRequest"},
206
+ "output":{"shape":"DeleteRateBasedRuleResponse"},
207
+ "errors":[
208
+ {"shape":"WAFStaleDataException"},
209
+ {"shape":"WAFInternalErrorException"},
210
+ {"shape":"WAFInvalidAccountException"},
211
+ {"shape":"WAFNonexistentItemException"},
212
+ {"shape":"WAFReferencedItemException"},
213
+ {"shape":"WAFNonEmptyEntityException"}
214
+ ]
215
+ },
183
216
  "DeleteRule":{
184
217
  "name":"DeleteRule",
185
218
  "http":{
@@ -333,6 +366,35 @@
333
366
  {"shape":"WAFNonexistentItemException"}
334
367
  ]
335
368
  },
369
+ "GetRateBasedRule":{
370
+ "name":"GetRateBasedRule",
371
+ "http":{
372
+ "method":"POST",
373
+ "requestUri":"/"
374
+ },
375
+ "input":{"shape":"GetRateBasedRuleRequest"},
376
+ "output":{"shape":"GetRateBasedRuleResponse"},
377
+ "errors":[
378
+ {"shape":"WAFInternalErrorException"},
379
+ {"shape":"WAFInvalidAccountException"},
380
+ {"shape":"WAFNonexistentItemException"}
381
+ ]
382
+ },
383
+ "GetRateBasedRuleManagedKeys":{
384
+ "name":"GetRateBasedRuleManagedKeys",
385
+ "http":{
386
+ "method":"POST",
387
+ "requestUri":"/"
388
+ },
389
+ "input":{"shape":"GetRateBasedRuleManagedKeysRequest"},
390
+ "output":{"shape":"GetRateBasedRuleManagedKeysResponse"},
391
+ "errors":[
392
+ {"shape":"WAFInternalErrorException"},
393
+ {"shape":"WAFInvalidAccountException"},
394
+ {"shape":"WAFNonexistentItemException"},
395
+ {"shape":"WAFInvalidParameterException"}
396
+ ]
397
+ },
336
398
  "GetRule":{
337
399
  "name":"GetRule",
338
400
  "http":{
@@ -458,6 +520,19 @@
458
520
  {"shape":"WAFInvalidAccountException"}
459
521
  ]
460
522
  },
523
+ "ListRateBasedRules":{
524
+ "name":"ListRateBasedRules",
525
+ "http":{
526
+ "method":"POST",
527
+ "requestUri":"/"
528
+ },
529
+ "input":{"shape":"ListRateBasedRulesRequest"},
530
+ "output":{"shape":"ListRateBasedRulesResponse"},
531
+ "errors":[
532
+ {"shape":"WAFInternalErrorException"},
533
+ {"shape":"WAFInvalidAccountException"}
534
+ ]
535
+ },
461
536
  "ListResourcesForWebACL":{
462
537
  "name":"ListResourcesForWebACL",
463
538
  "http":{
@@ -576,6 +651,26 @@
576
651
  {"shape":"WAFLimitsExceededException"}
577
652
  ]
578
653
  },
654
+ "UpdateRateBasedRule":{
655
+ "name":"UpdateRateBasedRule",
656
+ "http":{
657
+ "method":"POST",
658
+ "requestUri":"/"
659
+ },
660
+ "input":{"shape":"UpdateRateBasedRuleRequest"},
661
+ "output":{"shape":"UpdateRateBasedRuleResponse"},
662
+ "errors":[
663
+ {"shape":"WAFStaleDataException"},
664
+ {"shape":"WAFInternalErrorException"},
665
+ {"shape":"WAFInvalidAccountException"},
666
+ {"shape":"WAFInvalidOperationException"},
667
+ {"shape":"WAFInvalidParameterException"},
668
+ {"shape":"WAFNonexistentContainerException"},
669
+ {"shape":"WAFNonexistentItemException"},
670
+ {"shape":"WAFReferencedItemException"},
671
+ {"shape":"WAFLimitsExceededException"}
672
+ ]
673
+ },
579
674
  "UpdateRule":{
580
675
  "name":"UpdateRule",
581
676
  "http":{
@@ -687,7 +782,8 @@
687
782
  "members":{
688
783
  "Priority":{"shape":"RulePriority"},
689
784
  "RuleId":{"shape":"ResourceId"},
690
- "Action":{"shape":"WafAction"}
785
+ "Action":{"shape":"WafAction"},
786
+ "Type":{"shape":"WafRuleType"}
691
787
  }
692
788
  },
693
789
  "ActivatedRules":{
@@ -839,6 +935,30 @@
839
935
  "ChangeToken":{"shape":"ChangeToken"}
840
936
  }
841
937
  },
938
+ "CreateRateBasedRuleRequest":{
939
+ "type":"structure",
940
+ "required":[
941
+ "Name",
942
+ "MetricName",
943
+ "RateKey",
944
+ "RateLimit",
945
+ "ChangeToken"
946
+ ],
947
+ "members":{
948
+ "Name":{"shape":"ResourceName"},
949
+ "MetricName":{"shape":"MetricName"},
950
+ "RateKey":{"shape":"RateKey"},
951
+ "RateLimit":{"shape":"RateLimit"},
952
+ "ChangeToken":{"shape":"ChangeToken"}
953
+ }
954
+ },
955
+ "CreateRateBasedRuleResponse":{
956
+ "type":"structure",
957
+ "members":{
958
+ "Rule":{"shape":"RateBasedRule"},
959
+ "ChangeToken":{"shape":"ChangeToken"}
960
+ }
961
+ },
842
962
  "CreateRuleRequest":{
843
963
  "type":"structure",
844
964
  "required":[
@@ -969,6 +1089,23 @@
969
1089
  "ChangeToken":{"shape":"ChangeToken"}
970
1090
  }
971
1091
  },
1092
+ "DeleteRateBasedRuleRequest":{
1093
+ "type":"structure",
1094
+ "required":[
1095
+ "RuleId",
1096
+ "ChangeToken"
1097
+ ],
1098
+ "members":{
1099
+ "RuleId":{"shape":"ResourceId"},
1100
+ "ChangeToken":{"shape":"ChangeToken"}
1101
+ }
1102
+ },
1103
+ "DeleteRateBasedRuleResponse":{
1104
+ "type":"structure",
1105
+ "members":{
1106
+ "ChangeToken":{"shape":"ChangeToken"}
1107
+ }
1108
+ },
972
1109
  "DeleteRuleRequest":{
973
1110
  "type":"structure",
974
1111
  "required":[
@@ -1124,6 +1261,34 @@
1124
1261
  "IPSet":{"shape":"IPSet"}
1125
1262
  }
1126
1263
  },
1264
+ "GetRateBasedRuleManagedKeysRequest":{
1265
+ "type":"structure",
1266
+ "required":["RuleId"],
1267
+ "members":{
1268
+ "RuleId":{"shape":"ResourceId"},
1269
+ "NextMarker":{"shape":"NextMarker"}
1270
+ }
1271
+ },
1272
+ "GetRateBasedRuleManagedKeysResponse":{
1273
+ "type":"structure",
1274
+ "members":{
1275
+ "ManagedKeys":{"shape":"ManagedKeys"},
1276
+ "NextMarker":{"shape":"NextMarker"}
1277
+ }
1278
+ },
1279
+ "GetRateBasedRuleRequest":{
1280
+ "type":"structure",
1281
+ "required":["RuleId"],
1282
+ "members":{
1283
+ "RuleId":{"shape":"ResourceId"}
1284
+ }
1285
+ },
1286
+ "GetRateBasedRuleResponse":{
1287
+ "type":"structure",
1288
+ "members":{
1289
+ "Rule":{"shape":"RateBasedRule"}
1290
+ }
1291
+ },
1127
1292
  "GetRuleRequest":{
1128
1293
  "type":"structure",
1129
1294
  "required":["RuleId"],
@@ -1350,6 +1515,20 @@
1350
1515
  "IPSets":{"shape":"IPSetSummaries"}
1351
1516
  }
1352
1517
  },
1518
+ "ListRateBasedRulesRequest":{
1519
+ "type":"structure",
1520
+ "members":{
1521
+ "NextMarker":{"shape":"NextMarker"},
1522
+ "Limit":{"shape":"PaginationLimit"}
1523
+ }
1524
+ },
1525
+ "ListRateBasedRulesResponse":{
1526
+ "type":"structure",
1527
+ "members":{
1528
+ "NextMarker":{"shape":"NextMarker"},
1529
+ "Rules":{"shape":"RuleSummaries"}
1530
+ }
1531
+ },
1353
1532
  "ListResourcesForWebACLRequest":{
1354
1533
  "type":"structure",
1355
1534
  "required":["WebACLId"],
@@ -1433,6 +1612,11 @@
1433
1612
  "XssMatchSets":{"shape":"XssMatchSetSummaries"}
1434
1613
  }
1435
1614
  },
1615
+ "ManagedKey":{"type":"string"},
1616
+ "ManagedKeys":{
1617
+ "type":"list",
1618
+ "member":{"shape":"ManagedKey"}
1619
+ },
1436
1620
  "MatchFieldData":{"type":"string"},
1437
1621
  "MatchFieldType":{
1438
1622
  "type":"string",
@@ -1466,7 +1650,10 @@
1466
1650
  "SQL_INJECTION_MATCH_FIELD_TYPE",
1467
1651
  "BYTE_MATCH_TEXT_TRANSFORMATION",
1468
1652
  "BYTE_MATCH_POSITIONAL_CONSTRAINT",
1469
- "SIZE_CONSTRAINT_COMPARISON_OPERATOR"
1653
+ "SIZE_CONSTRAINT_COMPARISON_OPERATOR",
1654
+ "RATE_KEY",
1655
+ "RULE_TYPE",
1656
+ "NEXT_MARKER"
1470
1657
  ]
1471
1658
  },
1472
1659
  "ParameterExceptionParameter":{
@@ -1518,6 +1705,31 @@
1518
1705
  "type":"list",
1519
1706
  "member":{"shape":"Predicate"}
1520
1707
  },
1708
+ "RateBasedRule":{
1709
+ "type":"structure",
1710
+ "required":[
1711
+ "RuleId",
1712
+ "MatchPredicates",
1713
+ "RateKey",
1714
+ "RateLimit"
1715
+ ],
1716
+ "members":{
1717
+ "RuleId":{"shape":"ResourceId"},
1718
+ "Name":{"shape":"ResourceName"},
1719
+ "MetricName":{"shape":"MetricName"},
1720
+ "MatchPredicates":{"shape":"Predicates"},
1721
+ "RateKey":{"shape":"RateKey"},
1722
+ "RateLimit":{"shape":"RateLimit"}
1723
+ }
1724
+ },
1725
+ "RateKey":{
1726
+ "type":"string",
1727
+ "enum":["IP"]
1728
+ },
1729
+ "RateLimit":{
1730
+ "type":"long",
1731
+ "min":2000
1732
+ },
1521
1733
  "ResourceArn":{
1522
1734
  "type":"string",
1523
1735
  "max":1224,
@@ -1787,6 +1999,27 @@
1787
1999
  "ChangeToken":{"shape":"ChangeToken"}
1788
2000
  }
1789
2001
  },
2002
+ "UpdateRateBasedRuleRequest":{
2003
+ "type":"structure",
2004
+ "required":[
2005
+ "RuleId",
2006
+ "ChangeToken",
2007
+ "Updates",
2008
+ "RateLimit"
2009
+ ],
2010
+ "members":{
2011
+ "RuleId":{"shape":"ResourceId"},
2012
+ "ChangeToken":{"shape":"ChangeToken"},
2013
+ "Updates":{"shape":"RuleUpdates"},
2014
+ "RateLimit":{"shape":"RateLimit"}
2015
+ }
2016
+ },
2017
+ "UpdateRateBasedRuleResponse":{
2018
+ "type":"structure",
2019
+ "members":{
2020
+ "ChangeToken":{"shape":"ChangeToken"}
2021
+ }
2022
+ },
1790
2023
  "UpdateRuleRequest":{
1791
2024
  "type":"structure",
1792
2025
  "required":[
@@ -1983,6 +2216,13 @@
1983
2216
  "COUNT"
1984
2217
  ]
1985
2218
  },
2219
+ "WafRuleType":{
2220
+ "type":"string",
2221
+ "enum":[
2222
+ "REGULAR",
2223
+ "RATE_BASED"
2224
+ ]
2225
+ },
1986
2226
  "WebACL":{
1987
2227
  "type":"structure",
1988
2228
  "required":[