distilled-aws 0.0.17 → 0.0.19

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.
Files changed (42) hide show
  1. package/lib/credentials.d.ts +19 -7
  2. package/lib/credentials.d.ts.map +1 -1
  3. package/lib/credentials.js +51 -9
  4. package/lib/credentials.js.map +1 -1
  5. package/lib/patch/spec-schema.d.ts +16 -0
  6. package/lib/patch/spec-schema.d.ts.map +1 -1
  7. package/lib/patch/spec-schema.js +13 -0
  8. package/lib/patch/spec-schema.js.map +1 -1
  9. package/lib/services/ec2.d.ts +959 -955
  10. package/lib/services/ec2.d.ts.map +1 -1
  11. package/lib/services/ec2.js +1130 -530
  12. package/lib/services/ec2.js.map +1 -1
  13. package/lib/services/iam.d.ts +6 -1
  14. package/lib/services/iam.d.ts.map +1 -1
  15. package/lib/services/iam.js +8 -1
  16. package/lib/services/iam.js.map +1 -1
  17. package/lib/services/lambda.d.ts +50 -45
  18. package/lib/services/lambda.d.ts.map +1 -1
  19. package/lib/services/lambda.js +46 -1
  20. package/lib/services/lambda.js.map +1 -1
  21. package/lib/services/s3.d.ts +104 -99
  22. package/lib/services/s3.d.ts.map +1 -1
  23. package/lib/services/s3.js +151 -87
  24. package/lib/services/s3.js.map +1 -1
  25. package/lib/services/sns.d.ts +30 -25
  26. package/lib/services/sns.d.ts.map +1 -1
  27. package/lib/services/sns.js +23 -0
  28. package/lib/services/sns.js.map +1 -1
  29. package/lib/services/sqs.d.ts +13 -8
  30. package/lib/services/sqs.d.ts.map +1 -1
  31. package/lib/services/sqs.js +10 -0
  32. package/lib/services/sqs.js.map +1 -1
  33. package/lib/tsconfig.test.tsbuildinfo +1 -1
  34. package/package.json +1 -1
  35. package/src/credentials.ts +77 -11
  36. package/src/patch/spec-schema.ts +28 -0
  37. package/src/services/ec2.ts +2809 -1280
  38. package/src/services/iam.ts +11 -1
  39. package/src/services/lambda.ts +97 -2
  40. package/src/services/s3.ts +302 -177
  41. package/src/services/sns.ts +50 -0
  42. package/src/services/sqs.ts +20 -0
@@ -1591,6 +1591,10 @@ export class ThrottledException extends S.TaggedError<ThrottledException>()(
1591
1591
  { message: S.optional(S.String) },
1592
1592
  T.AwsQueryError({ code: "Throttled", httpResponseCode: 429 }),
1593
1593
  ).pipe(C.withThrottlingError) {}
1594
+ export class RequestLimitExceeded extends S.TaggedError<RequestLimitExceeded>()(
1595
+ "RequestLimitExceeded",
1596
+ {},
1597
+ ) {}
1594
1598
  export class InvalidClientTokenId extends S.TaggedError<InvalidClientTokenId>()(
1595
1599
  "InvalidClientTokenId",
1596
1600
  {},
@@ -2123,6 +2127,7 @@ export const deleteEndpoint: (
2123
2127
  | AuthorizationErrorException
2124
2128
  | InternalErrorException
2125
2129
  | InvalidParameterException
2130
+ | RequestLimitExceeded
2126
2131
  | InvalidClientTokenId
2127
2132
  | CommonErrors,
2128
2133
  Credentials | Region | HttpClient.HttpClient
@@ -2133,6 +2138,7 @@ export const deleteEndpoint: (
2133
2138
  AuthorizationErrorException,
2134
2139
  InternalErrorException,
2135
2140
  InvalidParameterException,
2141
+ RequestLimitExceeded,
2136
2142
  InvalidClientTokenId,
2137
2143
  ],
2138
2144
  }));
@@ -2149,6 +2155,7 @@ export const deletePlatformApplication: (
2149
2155
  | AuthorizationErrorException
2150
2156
  | InternalErrorException
2151
2157
  | InvalidParameterException
2158
+ | RequestLimitExceeded
2152
2159
  | InvalidClientTokenId
2153
2160
  | CommonErrors,
2154
2161
  Credentials | Region | HttpClient.HttpClient
@@ -2159,6 +2166,7 @@ export const deletePlatformApplication: (
2159
2166
  AuthorizationErrorException,
2160
2167
  InternalErrorException,
2161
2168
  InvalidParameterException,
2169
+ RequestLimitExceeded,
2162
2170
  InvalidClientTokenId,
2163
2171
  ],
2164
2172
  }));
@@ -2237,6 +2245,7 @@ export const addPermission: (
2237
2245
  | InternalErrorException
2238
2246
  | InvalidParameterException
2239
2247
  | NotFoundException
2248
+ | RequestLimitExceeded
2240
2249
  | InvalidClientTokenId
2241
2250
  | CommonErrors,
2242
2251
  Credentials | Region | HttpClient.HttpClient
@@ -2248,6 +2257,7 @@ export const addPermission: (
2248
2257
  InternalErrorException,
2249
2258
  InvalidParameterException,
2250
2259
  NotFoundException,
2260
+ RequestLimitExceeded,
2251
2261
  InvalidClientTokenId,
2252
2262
  ],
2253
2263
  }));
@@ -2399,6 +2409,7 @@ export const listEndpointsByPlatformApplication: {
2399
2409
  | InternalErrorException
2400
2410
  | InvalidParameterException
2401
2411
  | NotFoundException
2412
+ | RequestLimitExceeded
2402
2413
  | InvalidClientTokenId
2403
2414
  | CommonErrors,
2404
2415
  Credentials | Region | HttpClient.HttpClient
@@ -2411,6 +2422,7 @@ export const listEndpointsByPlatformApplication: {
2411
2422
  | InternalErrorException
2412
2423
  | InvalidParameterException
2413
2424
  | NotFoundException
2425
+ | RequestLimitExceeded
2414
2426
  | InvalidClientTokenId
2415
2427
  | CommonErrors,
2416
2428
  Credentials | Region | HttpClient.HttpClient
@@ -2423,6 +2435,7 @@ export const listEndpointsByPlatformApplication: {
2423
2435
  | InternalErrorException
2424
2436
  | InvalidParameterException
2425
2437
  | NotFoundException
2438
+ | RequestLimitExceeded
2426
2439
  | InvalidClientTokenId
2427
2440
  | CommonErrors,
2428
2441
  Credentials | Region | HttpClient.HttpClient
@@ -2435,6 +2448,7 @@ export const listEndpointsByPlatformApplication: {
2435
2448
  InternalErrorException,
2436
2449
  InvalidParameterException,
2437
2450
  NotFoundException,
2451
+ RequestLimitExceeded,
2438
2452
  InvalidClientTokenId,
2439
2453
  ],
2440
2454
  pagination: {
@@ -2468,6 +2482,7 @@ export const createPlatformEndpoint: (
2468
2482
  | InternalErrorException
2469
2483
  | InvalidParameterException
2470
2484
  | NotFoundException
2485
+ | RequestLimitExceeded
2471
2486
  | InvalidClientTokenId
2472
2487
  | CommonErrors,
2473
2488
  Credentials | Region | HttpClient.HttpClient
@@ -2479,6 +2494,7 @@ export const createPlatformEndpoint: (
2479
2494
  InternalErrorException,
2480
2495
  InvalidParameterException,
2481
2496
  NotFoundException,
2497
+ RequestLimitExceeded,
2482
2498
  InvalidClientTokenId,
2483
2499
  ],
2484
2500
  }));
@@ -2495,6 +2511,7 @@ export const getEndpointAttributes: (
2495
2511
  | InternalErrorException
2496
2512
  | InvalidParameterException
2497
2513
  | NotFoundException
2514
+ | RequestLimitExceeded
2498
2515
  | InvalidClientTokenId
2499
2516
  | CommonErrors,
2500
2517
  Credentials | Region | HttpClient.HttpClient
@@ -2506,6 +2523,7 @@ export const getEndpointAttributes: (
2506
2523
  InternalErrorException,
2507
2524
  InvalidParameterException,
2508
2525
  NotFoundException,
2526
+ RequestLimitExceeded,
2509
2527
  InvalidClientTokenId,
2510
2528
  ],
2511
2529
  }));
@@ -2522,6 +2540,7 @@ export const getPlatformApplicationAttributes: (
2522
2540
  | InternalErrorException
2523
2541
  | InvalidParameterException
2524
2542
  | NotFoundException
2543
+ | RequestLimitExceeded
2525
2544
  | InvalidClientTokenId
2526
2545
  | CommonErrors,
2527
2546
  Credentials | Region | HttpClient.HttpClient
@@ -2533,6 +2552,7 @@ export const getPlatformApplicationAttributes: (
2533
2552
  InternalErrorException,
2534
2553
  InvalidParameterException,
2535
2554
  NotFoundException,
2555
+ RequestLimitExceeded,
2536
2556
  InvalidClientTokenId,
2537
2557
  ],
2538
2558
  }));
@@ -2576,6 +2596,7 @@ export const listSubscriptionsByTopic: {
2576
2596
  | InternalErrorException
2577
2597
  | InvalidParameterException
2578
2598
  | NotFoundException
2599
+ | RequestLimitExceeded
2579
2600
  | InvalidClientTokenId
2580
2601
  | CommonErrors,
2581
2602
  Credentials | Region | HttpClient.HttpClient
@@ -2588,6 +2609,7 @@ export const listSubscriptionsByTopic: {
2588
2609
  | InternalErrorException
2589
2610
  | InvalidParameterException
2590
2611
  | NotFoundException
2612
+ | RequestLimitExceeded
2591
2613
  | InvalidClientTokenId
2592
2614
  | CommonErrors,
2593
2615
  Credentials | Region | HttpClient.HttpClient
@@ -2600,6 +2622,7 @@ export const listSubscriptionsByTopic: {
2600
2622
  | InternalErrorException
2601
2623
  | InvalidParameterException
2602
2624
  | NotFoundException
2625
+ | RequestLimitExceeded
2603
2626
  | InvalidClientTokenId
2604
2627
  | CommonErrors,
2605
2628
  Credentials | Region | HttpClient.HttpClient
@@ -2612,6 +2635,7 @@ export const listSubscriptionsByTopic: {
2612
2635
  InternalErrorException,
2613
2636
  InvalidParameterException,
2614
2637
  NotFoundException,
2638
+ RequestLimitExceeded,
2615
2639
  InvalidClientTokenId,
2616
2640
  ],
2617
2641
  pagination: {
@@ -2635,6 +2659,7 @@ export const removePermission: (
2635
2659
  | InternalErrorException
2636
2660
  | InvalidParameterException
2637
2661
  | NotFoundException
2662
+ | RequestLimitExceeded
2638
2663
  | InvalidClientTokenId
2639
2664
  | CommonErrors,
2640
2665
  Credentials | Region | HttpClient.HttpClient
@@ -2646,6 +2671,7 @@ export const removePermission: (
2646
2671
  InternalErrorException,
2647
2672
  InvalidParameterException,
2648
2673
  NotFoundException,
2674
+ RequestLimitExceeded,
2649
2675
  InvalidClientTokenId,
2650
2676
  ],
2651
2677
  }));
@@ -2662,6 +2688,7 @@ export const setEndpointAttributes: (
2662
2688
  | InternalErrorException
2663
2689
  | InvalidParameterException
2664
2690
  | NotFoundException
2691
+ | RequestLimitExceeded
2665
2692
  | InvalidClientTokenId
2666
2693
  | CommonErrors,
2667
2694
  Credentials | Region | HttpClient.HttpClient
@@ -2673,6 +2700,7 @@ export const setEndpointAttributes: (
2673
2700
  InternalErrorException,
2674
2701
  InvalidParameterException,
2675
2702
  NotFoundException,
2703
+ RequestLimitExceeded,
2676
2704
  InvalidClientTokenId,
2677
2705
  ],
2678
2706
  }));
@@ -2691,6 +2719,7 @@ export const setPlatformApplicationAttributes: (
2691
2719
  | InternalErrorException
2692
2720
  | InvalidParameterException
2693
2721
  | NotFoundException
2722
+ | RequestLimitExceeded
2694
2723
  | InvalidClientTokenId
2695
2724
  | CommonErrors,
2696
2725
  Credentials | Region | HttpClient.HttpClient
@@ -2702,6 +2731,7 @@ export const setPlatformApplicationAttributes: (
2702
2731
  InternalErrorException,
2703
2732
  InvalidParameterException,
2704
2733
  NotFoundException,
2734
+ RequestLimitExceeded,
2705
2735
  InvalidClientTokenId,
2706
2736
  ],
2707
2737
  }));
@@ -2718,6 +2748,7 @@ export const getDataProtectionPolicy: (
2718
2748
  | InvalidParameterException
2719
2749
  | InvalidSecurityException
2720
2750
  | NotFoundException
2751
+ | RequestLimitExceeded
2721
2752
  | InvalidClientTokenId
2722
2753
  | CommonErrors,
2723
2754
  Credentials | Region | HttpClient.HttpClient
@@ -2730,6 +2761,7 @@ export const getDataProtectionPolicy: (
2730
2761
  InvalidParameterException,
2731
2762
  InvalidSecurityException,
2732
2763
  NotFoundException,
2764
+ RequestLimitExceeded,
2733
2765
  InvalidClientTokenId,
2734
2766
  ],
2735
2767
  }));
@@ -2746,6 +2778,7 @@ export const getTopicAttributes: (
2746
2778
  | InvalidParameterException
2747
2779
  | InvalidSecurityException
2748
2780
  | NotFoundException
2781
+ | RequestLimitExceeded
2749
2782
  | InvalidClientTokenId
2750
2783
  | CommonErrors,
2751
2784
  Credentials | Region | HttpClient.HttpClient
@@ -2758,6 +2791,7 @@ export const getTopicAttributes: (
2758
2791
  InvalidParameterException,
2759
2792
  InvalidSecurityException,
2760
2793
  NotFoundException,
2794
+ RequestLimitExceeded,
2761
2795
  InvalidClientTokenId,
2762
2796
  ],
2763
2797
  }));
@@ -2774,6 +2808,7 @@ export const putDataProtectionPolicy: (
2774
2808
  | InvalidParameterException
2775
2809
  | InvalidSecurityException
2776
2810
  | NotFoundException
2811
+ | RequestLimitExceeded
2777
2812
  | InvalidClientTokenId
2778
2813
  | CommonErrors,
2779
2814
  Credentials | Region | HttpClient.HttpClient
@@ -2786,6 +2821,7 @@ export const putDataProtectionPolicy: (
2786
2821
  InvalidParameterException,
2787
2822
  InvalidSecurityException,
2788
2823
  NotFoundException,
2824
+ RequestLimitExceeded,
2789
2825
  InvalidClientTokenId,
2790
2826
  ],
2791
2827
  }));
@@ -2805,6 +2841,7 @@ export const setTopicAttributes: (
2805
2841
  | InvalidParameterException
2806
2842
  | InvalidSecurityException
2807
2843
  | NotFoundException
2844
+ | RequestLimitExceeded
2808
2845
  | InvalidClientTokenId
2809
2846
  | CommonErrors,
2810
2847
  Credentials | Region | HttpClient.HttpClient
@@ -2817,6 +2854,7 @@ export const setTopicAttributes: (
2817
2854
  InvalidParameterException,
2818
2855
  InvalidSecurityException,
2819
2856
  NotFoundException,
2857
+ RequestLimitExceeded,
2820
2858
  InvalidClientTokenId,
2821
2859
  ],
2822
2860
  }));
@@ -2902,6 +2940,7 @@ export const listTagsForResource: (
2902
2940
  | InvalidParameterException
2903
2941
  | ResourceNotFoundException
2904
2942
  | TagPolicyException
2943
+ | RequestLimitExceeded
2905
2944
  | InvalidClientTokenId
2906
2945
  | CommonErrors,
2907
2946
  Credentials | Region | HttpClient.HttpClient
@@ -2914,6 +2953,7 @@ export const listTagsForResource: (
2914
2953
  InvalidParameterException,
2915
2954
  ResourceNotFoundException,
2916
2955
  TagPolicyException,
2956
+ RequestLimitExceeded,
2917
2957
  InvalidClientTokenId,
2918
2958
  ],
2919
2959
  }));
@@ -3037,6 +3077,7 @@ export const deleteTopic: (
3037
3077
  | NotFoundException
3038
3078
  | StaleTagException
3039
3079
  | TagPolicyException
3080
+ | RequestLimitExceeded
3040
3081
  | InvalidClientTokenId
3041
3082
  | CommonErrors,
3042
3083
  Credentials | Region | HttpClient.HttpClient
@@ -3052,6 +3093,7 @@ export const deleteTopic: (
3052
3093
  NotFoundException,
3053
3094
  StaleTagException,
3054
3095
  TagPolicyException,
3096
+ RequestLimitExceeded,
3055
3097
  InvalidClientTokenId,
3056
3098
  ],
3057
3099
  }));
@@ -3077,6 +3119,7 @@ export const subscribe: (
3077
3119
  | NotFoundException
3078
3120
  | ReplayLimitExceededException
3079
3121
  | SubscriptionLimitExceededException
3122
+ | RequestLimitExceeded
3080
3123
  | InvalidClientTokenId
3081
3124
  | CommonErrors,
3082
3125
  Credentials | Region | HttpClient.HttpClient
@@ -3092,6 +3135,7 @@ export const subscribe: (
3092
3135
  NotFoundException,
3093
3136
  ReplayLimitExceededException,
3094
3137
  SubscriptionLimitExceededException,
3138
+ RequestLimitExceeded,
3095
3139
  InvalidClientTokenId,
3096
3140
  ],
3097
3141
  }));
@@ -3158,6 +3202,7 @@ export const tagResource: (
3158
3202
  | StaleTagException
3159
3203
  | TagLimitExceededException
3160
3204
  | TagPolicyException
3205
+ | RequestLimitExceeded
3161
3206
  | InvalidClientTokenId
3162
3207
  | CommonErrors,
3163
3208
  Credentials | Region | HttpClient.HttpClient
@@ -3172,6 +3217,7 @@ export const tagResource: (
3172
3217
  StaleTagException,
3173
3218
  TagLimitExceededException,
3174
3219
  TagPolicyException,
3220
+ RequestLimitExceeded,
3175
3221
  InvalidClientTokenId,
3176
3222
  ],
3177
3223
  }));
@@ -3190,6 +3236,7 @@ export const untagResource: (
3190
3236
  | StaleTagException
3191
3237
  | TagLimitExceededException
3192
3238
  | TagPolicyException
3239
+ | RequestLimitExceeded
3193
3240
  | InvalidClientTokenId
3194
3241
  | CommonErrors,
3195
3242
  Credentials | Region | HttpClient.HttpClient
@@ -3204,6 +3251,7 @@ export const untagResource: (
3204
3251
  StaleTagException,
3205
3252
  TagLimitExceededException,
3206
3253
  TagPolicyException,
3254
+ RequestLimitExceeded,
3207
3255
  InvalidClientTokenId,
3208
3256
  ],
3209
3257
  }));
@@ -3286,6 +3334,7 @@ export const publish: (
3286
3334
  | NotFoundException
3287
3335
  | PlatformApplicationDisabledException
3288
3336
  | ValidationException
3337
+ | RequestLimitExceeded
3289
3338
  | InvalidClientTokenId
3290
3339
  | CommonErrors,
3291
3340
  Credentials | Region | HttpClient.HttpClient
@@ -3308,6 +3357,7 @@ export const publish: (
3308
3357
  NotFoundException,
3309
3358
  PlatformApplicationDisabledException,
3310
3359
  ValidationException,
3360
+ RequestLimitExceeded,
3311
3361
  InvalidClientTokenId,
3312
3362
  ],
3313
3363
  }));
@@ -1128,6 +1128,10 @@ export class ReceiptHandleIsInvalid extends S.TaggedError<ReceiptHandleIsInvalid
1128
1128
  { message: S.optional(S.String) },
1129
1129
  T.AwsQueryError({ code: "ReceiptHandleIsInvalid", httpResponseCode: 404 }),
1130
1130
  ).pipe(C.withBadRequestError) {}
1131
+ export class RequestLimitExceeded extends S.TaggedError<RequestLimitExceeded>()(
1132
+ "RequestLimitExceeded",
1133
+ {},
1134
+ ) {}
1131
1135
  export class InvalidParameterValueException extends S.TaggedError<InvalidParameterValueException>()(
1132
1136
  "InvalidParameterValueException",
1133
1137
  {},
@@ -1356,6 +1360,7 @@ export const cancelMessageMoveTask: (
1356
1360
  | RequestThrottled
1357
1361
  | ResourceNotFoundException
1358
1362
  | UnsupportedOperation
1363
+ | RequestLimitExceeded
1359
1364
  | InvalidParameterValueException
1360
1365
  | CommonErrors,
1361
1366
  Credentials | Region | HttpClient.HttpClient
@@ -1368,6 +1373,7 @@ export const cancelMessageMoveTask: (
1368
1373
  RequestThrottled,
1369
1374
  ResourceNotFoundException,
1370
1375
  UnsupportedOperation,
1376
+ RequestLimitExceeded,
1371
1377
  InvalidParameterValueException,
1372
1378
  ],
1373
1379
  }));
@@ -1397,6 +1403,7 @@ export const startMessageMoveTask: (
1397
1403
  | RequestThrottled
1398
1404
  | ResourceNotFoundException
1399
1405
  | UnsupportedOperation
1406
+ | RequestLimitExceeded
1400
1407
  | CommonServiceException
1401
1408
  | InvalidParameterValueException
1402
1409
  | CommonErrors,
@@ -1410,6 +1417,7 @@ export const startMessageMoveTask: (
1410
1417
  RequestThrottled,
1411
1418
  ResourceNotFoundException,
1412
1419
  UnsupportedOperation,
1420
+ RequestLimitExceeded,
1413
1421
  CommonServiceException,
1414
1422
  InvalidParameterValueException,
1415
1423
  ],
@@ -1443,6 +1451,7 @@ export const setQueueAttributes: (
1443
1451
  | QueueDoesNotExist
1444
1452
  | RequestThrottled
1445
1453
  | UnsupportedOperation
1454
+ | RequestLimitExceeded
1446
1455
  | CommonServiceException
1447
1456
  | CommonErrors,
1448
1457
  Credentials | Region | HttpClient.HttpClient
@@ -1458,6 +1467,7 @@ export const setQueueAttributes: (
1458
1467
  QueueDoesNotExist,
1459
1468
  RequestThrottled,
1460
1469
  UnsupportedOperation,
1470
+ RequestLimitExceeded,
1461
1471
  CommonServiceException,
1462
1472
  ],
1463
1473
  }));
@@ -1919,6 +1929,7 @@ export const listMessageMoveTasks: (
1919
1929
  | RequestThrottled
1920
1930
  | ResourceNotFoundException
1921
1931
  | UnsupportedOperation
1932
+ | RequestLimitExceeded
1922
1933
  | InvalidParameterValueException
1923
1934
  | CommonErrors,
1924
1935
  Credentials | Region | HttpClient.HttpClient
@@ -1931,6 +1942,7 @@ export const listMessageMoveTasks: (
1931
1942
  RequestThrottled,
1932
1943
  ResourceNotFoundException,
1933
1944
  UnsupportedOperation,
1945
+ RequestLimitExceeded,
1934
1946
  InvalidParameterValueException,
1935
1947
  ],
1936
1948
  }));
@@ -2043,6 +2055,7 @@ export const createQueue: (
2043
2055
  | QueueNameExists
2044
2056
  | RequestThrottled
2045
2057
  | UnsupportedOperation
2058
+ | RequestLimitExceeded
2046
2059
  | InvalidParameterValueException
2047
2060
  | CommonErrors,
2048
2061
  Credentials | Region | HttpClient.HttpClient
@@ -2058,6 +2071,7 @@ export const createQueue: (
2058
2071
  QueueNameExists,
2059
2072
  RequestThrottled,
2060
2073
  UnsupportedOperation,
2074
+ RequestLimitExceeded,
2061
2075
  InvalidParameterValueException,
2062
2076
  ],
2063
2077
  }));
@@ -2198,6 +2212,7 @@ export const receiveMessage: (
2198
2212
  | QueueDoesNotExist
2199
2213
  | RequestThrottled
2200
2214
  | UnsupportedOperation
2215
+ | RequestLimitExceeded
2201
2216
  | InvalidParameterValueException
2202
2217
  | CommonErrors,
2203
2218
  Credentials | Region | HttpClient.HttpClient
@@ -2218,6 +2233,7 @@ export const receiveMessage: (
2218
2233
  QueueDoesNotExist,
2219
2234
  RequestThrottled,
2220
2235
  UnsupportedOperation,
2236
+ RequestLimitExceeded,
2221
2237
  InvalidParameterValueException,
2222
2238
  ],
2223
2239
  }));
@@ -2265,6 +2281,7 @@ export const sendMessageBatch: (
2265
2281
  | RequestThrottled
2266
2282
  | TooManyEntriesInBatchRequest
2267
2283
  | UnsupportedOperation
2284
+ | RequestLimitExceeded
2268
2285
  | InvalidParameterValueException
2269
2286
  | ParseError
2270
2287
  | CommonErrors,
@@ -2290,6 +2307,7 @@ export const sendMessageBatch: (
2290
2307
  RequestThrottled,
2291
2308
  TooManyEntriesInBatchRequest,
2292
2309
  UnsupportedOperation,
2310
+ RequestLimitExceeded,
2293
2311
  InvalidParameterValueException,
2294
2312
  ParseError,
2295
2313
  ],
@@ -2320,6 +2338,7 @@ export const sendMessage: (
2320
2338
  | QueueDoesNotExist
2321
2339
  | RequestThrottled
2322
2340
  | UnsupportedOperation
2341
+ | RequestLimitExceeded
2323
2342
  | InvalidParameterValueException
2324
2343
  | MissingRequiredParameterException
2325
2344
  | CommonErrors,
@@ -2341,6 +2360,7 @@ export const sendMessage: (
2341
2360
  QueueDoesNotExist,
2342
2361
  RequestThrottled,
2343
2362
  UnsupportedOperation,
2363
+ RequestLimitExceeded,
2344
2364
  InvalidParameterValueException,
2345
2365
  MissingRequiredParameterException,
2346
2366
  ],