@aws-sdk/client-cloudwatch-events 3.986.0 → 3.988.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +70 -1872
- package/dist-cjs/models/CloudWatchEventsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +147 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1481 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +82 -76
- package/dist-types/schemas/schemas_0.d.ts +19 -12
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -12
- package/package.json +13 -13
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultCloudWatchEventsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2015-10-07",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.cloudwatchevents",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
xmlNamespace: "http://events.amazonaws.com/doc/2015-10-07",
|
|
30
32
|
version: "2015-10-07",
|
|
31
33
|
serviceTarget: "AWSEvents",
|
|
@@ -167,9 +167,9 @@ const _HP = "HeaderParameters";
|
|
|
167
167
|
const _HPt = "HttpParameters";
|
|
168
168
|
const _HVS = "HeaderValueSensitive";
|
|
169
169
|
const _I = "Ids";
|
|
170
|
-
const _IE = "
|
|
170
|
+
const _IE = "InternalException";
|
|
171
171
|
const _IEPE = "InvalidEventPatternException";
|
|
172
|
-
const _IEn = "
|
|
172
|
+
const _IEn = "InvocationEndpoint";
|
|
173
173
|
const _IHP = "InvocationHttpParameters";
|
|
174
174
|
const _IP = "InputPath";
|
|
175
175
|
const _IPM = "InputPathsMap";
|
|
@@ -388,14 +388,88 @@ const _e = "error";
|
|
|
388
388
|
const _ex = "expression";
|
|
389
389
|
const _f = "field";
|
|
390
390
|
const _m = "message";
|
|
391
|
-
const _s = "
|
|
392
|
-
const
|
|
391
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.cloudwatchevents";
|
|
392
|
+
const _se = "server";
|
|
393
393
|
const _t = "type";
|
|
394
394
|
const _w = "weight";
|
|
395
395
|
const n0 = "com.amazonaws.cloudwatchevents";
|
|
396
396
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
397
397
|
import { CloudWatchEventsServiceException } from "../models/CloudWatchEventsServiceException";
|
|
398
398
|
import { ConcurrentModificationException, IllegalStatusException, InternalException, InvalidEventPatternException, InvalidStateException, LimitExceededException, ManagedRuleException, OperationDisabledException, PolicyLengthExceededException, ResourceAlreadyExistsException, ResourceNotFoundException, } from "../models/errors";
|
|
399
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
400
|
+
export var CloudWatchEventsServiceException$ = [-3, _s, "CloudWatchEventsServiceException", 0, [], []];
|
|
401
|
+
_s_registry.registerError(CloudWatchEventsServiceException$, CloudWatchEventsServiceException);
|
|
402
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
403
|
+
export var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
404
|
+
{ [_e]: _c },
|
|
405
|
+
[_m],
|
|
406
|
+
[0]
|
|
407
|
+
];
|
|
408
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
409
|
+
export var IllegalStatusException$ = [-3, n0, _ISE,
|
|
410
|
+
{ [_e]: _c },
|
|
411
|
+
[_m],
|
|
412
|
+
[0]
|
|
413
|
+
];
|
|
414
|
+
n0_registry.registerError(IllegalStatusException$, IllegalStatusException);
|
|
415
|
+
export var InternalException$ = [-3, n0, _IE,
|
|
416
|
+
{ [_e]: _se },
|
|
417
|
+
[_m],
|
|
418
|
+
[0]
|
|
419
|
+
];
|
|
420
|
+
n0_registry.registerError(InternalException$, InternalException);
|
|
421
|
+
export var InvalidEventPatternException$ = [-3, n0, _IEPE,
|
|
422
|
+
{ [_e]: _c },
|
|
423
|
+
[_m],
|
|
424
|
+
[0]
|
|
425
|
+
];
|
|
426
|
+
n0_registry.registerError(InvalidEventPatternException$, InvalidEventPatternException);
|
|
427
|
+
export var InvalidStateException$ = [-3, n0, _ISEn,
|
|
428
|
+
{ [_e]: _c },
|
|
429
|
+
[_m],
|
|
430
|
+
[0]
|
|
431
|
+
];
|
|
432
|
+
n0_registry.registerError(InvalidStateException$, InvalidStateException);
|
|
433
|
+
export var LimitExceededException$ = [-3, n0, _LEE,
|
|
434
|
+
{ [_e]: _c },
|
|
435
|
+
[_m],
|
|
436
|
+
[0]
|
|
437
|
+
];
|
|
438
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
439
|
+
export var ManagedRuleException$ = [-3, n0, _MRE,
|
|
440
|
+
{ [_e]: _c },
|
|
441
|
+
[_m],
|
|
442
|
+
[0]
|
|
443
|
+
];
|
|
444
|
+
n0_registry.registerError(ManagedRuleException$, ManagedRuleException);
|
|
445
|
+
export var OperationDisabledException$ = [-3, n0, _ODE,
|
|
446
|
+
{ [_e]: _c },
|
|
447
|
+
[_m],
|
|
448
|
+
[0]
|
|
449
|
+
];
|
|
450
|
+
n0_registry.registerError(OperationDisabledException$, OperationDisabledException);
|
|
451
|
+
export var PolicyLengthExceededException$ = [-3, n0, _PLEE,
|
|
452
|
+
{ [_e]: _c },
|
|
453
|
+
[_m],
|
|
454
|
+
[0]
|
|
455
|
+
];
|
|
456
|
+
n0_registry.registerError(PolicyLengthExceededException$, PolicyLengthExceededException);
|
|
457
|
+
export var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
458
|
+
{ [_e]: _c },
|
|
459
|
+
[_m],
|
|
460
|
+
[0]
|
|
461
|
+
];
|
|
462
|
+
n0_registry.registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
463
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
464
|
+
{ [_e]: _c },
|
|
465
|
+
[_m],
|
|
466
|
+
[0]
|
|
467
|
+
];
|
|
468
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
469
|
+
export const errorTypeRegistries = [
|
|
470
|
+
_s_registry,
|
|
471
|
+
n0_registry,
|
|
472
|
+
];
|
|
399
473
|
var AuthHeaderParametersSensitive = [0, n0, _AHPS, 8, 0];
|
|
400
474
|
var HeaderValueSensitive = [0, n0, _HVS, 8, 0];
|
|
401
475
|
var QueryStringValueSensitive = [0, n0, _QSVS, 8, 0];
|
|
@@ -407,7 +481,7 @@ export var ActivateEventSourceRequest$ = [3, n0, _AESR,
|
|
|
407
481
|
];
|
|
408
482
|
export var ApiDestination$ = [3, n0, _AD,
|
|
409
483
|
0,
|
|
410
|
-
[_ADA, _N, _ADS, _CA,
|
|
484
|
+
[_ADA, _N, _ADS, _CA, _IEn, _HM, _IRLPS, _CT, _LMT],
|
|
411
485
|
[0, 0, 0, 0, 0, 0, 1, 4, 4]
|
|
412
486
|
];
|
|
413
487
|
export var Archive$ = [3, n0, _A,
|
|
@@ -450,12 +524,6 @@ export var CapacityProviderStrategyItem$ = [3, n0, _CPSI,
|
|
|
450
524
|
[_cP, _w, _b],
|
|
451
525
|
[0, 1, 1], 1
|
|
452
526
|
];
|
|
453
|
-
export var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
454
|
-
{ [_e]: _c },
|
|
455
|
-
[_m],
|
|
456
|
-
[0]
|
|
457
|
-
];
|
|
458
|
-
TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
459
527
|
export var Condition$ = [3, n0, _C,
|
|
460
528
|
0,
|
|
461
529
|
[_T, _K, _V],
|
|
@@ -513,7 +581,7 @@ export var ConnectionQueryStringParameter$ = [3, n0, _CQSP,
|
|
|
513
581
|
];
|
|
514
582
|
export var CreateApiDestinationRequest$ = [3, n0, _CADR,
|
|
515
583
|
0,
|
|
516
|
-
[_N, _CA,
|
|
584
|
+
[_N, _CA, _IEn, _HM, _D, _IRLPS],
|
|
517
585
|
[0, 0, 0, 0, 0, 1], 4
|
|
518
586
|
];
|
|
519
587
|
export var CreateApiDestinationResponse$ = [3, n0, _CADRr,
|
|
@@ -658,7 +726,7 @@ export var DescribeApiDestinationRequest$ = [3, n0, _DADRes,
|
|
|
658
726
|
];
|
|
659
727
|
export var DescribeApiDestinationResponse$ = [3, n0, _DADResc,
|
|
660
728
|
0,
|
|
661
|
-
[_ADA, _N, _D, _ADS, _CA,
|
|
729
|
+
[_ADA, _N, _D, _ADS, _CA, _IEn, _HM, _IRLPS, _CT, _LMT],
|
|
662
730
|
[0, 0, 0, 0, 0, 0, 0, 1, 4, 4]
|
|
663
731
|
];
|
|
664
732
|
export var DescribeArchiveRequest$ = [3, n0, _DARes,
|
|
@@ -761,46 +829,16 @@ export var HttpParameters$ = [3, n0, _HPt,
|
|
|
761
829
|
[_PPV, _HP, _QSP],
|
|
762
830
|
[64 | 0, 128 | 0, 128 | 0]
|
|
763
831
|
];
|
|
764
|
-
export var IllegalStatusException$ = [-3, n0, _ISE,
|
|
765
|
-
{ [_e]: _c },
|
|
766
|
-
[_m],
|
|
767
|
-
[0]
|
|
768
|
-
];
|
|
769
|
-
TypeRegistry.for(n0).registerError(IllegalStatusException$, IllegalStatusException);
|
|
770
832
|
export var InputTransformer$ = [3, n0, _IT,
|
|
771
833
|
0,
|
|
772
834
|
[_ITn, _IPM],
|
|
773
835
|
[0, 128 | 0], 1
|
|
774
836
|
];
|
|
775
|
-
export var InternalException$ = [-3, n0, _IEn,
|
|
776
|
-
{ [_e]: _s },
|
|
777
|
-
[_m],
|
|
778
|
-
[0]
|
|
779
|
-
];
|
|
780
|
-
TypeRegistry.for(n0).registerError(InternalException$, InternalException);
|
|
781
|
-
export var InvalidEventPatternException$ = [-3, n0, _IEPE,
|
|
782
|
-
{ [_e]: _c },
|
|
783
|
-
[_m],
|
|
784
|
-
[0]
|
|
785
|
-
];
|
|
786
|
-
TypeRegistry.for(n0).registerError(InvalidEventPatternException$, InvalidEventPatternException);
|
|
787
|
-
export var InvalidStateException$ = [-3, n0, _ISEn,
|
|
788
|
-
{ [_e]: _c },
|
|
789
|
-
[_m],
|
|
790
|
-
[0]
|
|
791
|
-
];
|
|
792
|
-
TypeRegistry.for(n0).registerError(InvalidStateException$, InvalidStateException);
|
|
793
837
|
export var KinesisParameters$ = [3, n0, _KP,
|
|
794
838
|
0,
|
|
795
839
|
[_PKP],
|
|
796
840
|
[0], 1
|
|
797
841
|
];
|
|
798
|
-
export var LimitExceededException$ = [-3, n0, _LEE,
|
|
799
|
-
{ [_e]: _c },
|
|
800
|
-
[_m],
|
|
801
|
-
[0]
|
|
802
|
-
];
|
|
803
|
-
TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
804
842
|
export var ListApiDestinationsRequest$ = [3, n0, _LADR,
|
|
805
843
|
0,
|
|
806
844
|
[_NP, _CA, _NT, _L],
|
|
@@ -921,23 +959,11 @@ export var ListTargetsByRuleResponse$ = [3, n0, _LTBRRi,
|
|
|
921
959
|
[_Tar, _NT],
|
|
922
960
|
[() => TargetList, 0]
|
|
923
961
|
];
|
|
924
|
-
export var ManagedRuleException$ = [-3, n0, _MRE,
|
|
925
|
-
{ [_e]: _c },
|
|
926
|
-
[_m],
|
|
927
|
-
[0]
|
|
928
|
-
];
|
|
929
|
-
TypeRegistry.for(n0).registerError(ManagedRuleException$, ManagedRuleException);
|
|
930
962
|
export var NetworkConfiguration$ = [3, n0, _NC,
|
|
931
963
|
0,
|
|
932
964
|
[_aC],
|
|
933
965
|
[() => AwsVpcConfiguration$]
|
|
934
966
|
];
|
|
935
|
-
export var OperationDisabledException$ = [-3, n0, _ODE,
|
|
936
|
-
{ [_e]: _c },
|
|
937
|
-
[_m],
|
|
938
|
-
[0]
|
|
939
|
-
];
|
|
940
|
-
TypeRegistry.for(n0).registerError(OperationDisabledException$, OperationDisabledException);
|
|
941
967
|
export var PartnerEventSource$ = [3, n0, _PESa,
|
|
942
968
|
0,
|
|
943
969
|
[_Ar, _N],
|
|
@@ -958,12 +984,6 @@ export var PlacementStrategy$ = [3, n0, _PS,
|
|
|
958
984
|
[_t, _f],
|
|
959
985
|
[0, 0]
|
|
960
986
|
];
|
|
961
|
-
export var PolicyLengthExceededException$ = [-3, n0, _PLEE,
|
|
962
|
-
{ [_e]: _c },
|
|
963
|
-
[_m],
|
|
964
|
-
[0]
|
|
965
|
-
];
|
|
966
|
-
TypeRegistry.for(n0).registerError(PolicyLengthExceededException$, PolicyLengthExceededException);
|
|
967
987
|
export var PutEventsRequest$ = [3, n0, _PER,
|
|
968
988
|
0,
|
|
969
989
|
[_E],
|
|
@@ -1069,18 +1089,6 @@ export var ReplayDestination$ = [3, n0, _RDe,
|
|
|
1069
1089
|
[_Ar, _FA],
|
|
1070
1090
|
[0, 64 | 0], 1
|
|
1071
1091
|
];
|
|
1072
|
-
export var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
1073
|
-
{ [_e]: _c },
|
|
1074
|
-
[_m],
|
|
1075
|
-
[0]
|
|
1076
|
-
];
|
|
1077
|
-
TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
1078
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1079
|
-
{ [_e]: _c },
|
|
1080
|
-
[_m],
|
|
1081
|
-
[0]
|
|
1082
|
-
];
|
|
1083
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1084
1092
|
export var RetryPolicy$ = [3, n0, _RP,
|
|
1085
1093
|
0,
|
|
1086
1094
|
[_MRA, _MEAIS],
|
|
@@ -1168,7 +1176,7 @@ export var UntagResourceResponse$ = [3, n0, _URRn,
|
|
|
1168
1176
|
];
|
|
1169
1177
|
export var UpdateApiDestinationRequest$ = [3, n0, _UADR,
|
|
1170
1178
|
0,
|
|
1171
|
-
[_N, _D, _CA,
|
|
1179
|
+
[_N, _D, _CA, _IEn, _HM, _IRLPS],
|
|
1172
1180
|
[0, 0, 0, 0, 0, 1], 1
|
|
1173
1181
|
];
|
|
1174
1182
|
export var UpdateApiDestinationResponse$ = [3, n0, _UADRp,
|
|
@@ -1222,8 +1230,6 @@ export var UpdateConnectionResponse$ = [3, n0, _UCRp,
|
|
|
1222
1230
|
[0, 0, 4, 4, 4]
|
|
1223
1231
|
];
|
|
1224
1232
|
var __Unit = "unit";
|
|
1225
|
-
export var CloudWatchEventsServiceException$ = [-3, _sm, "CloudWatchEventsServiceException", 0, [], []];
|
|
1226
|
-
TypeRegistry.for(_sm).registerError(CloudWatchEventsServiceException$, CloudWatchEventsServiceException);
|
|
1227
1233
|
var ApiDestinationResponseList = [1, n0, _ADRL,
|
|
1228
1234
|
0, () => ApiDestination$
|
|
1229
1235
|
];
|
|
@@ -1,4 +1,23 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var CloudWatchEventsServiceException$: StaticErrorSchema;
|
|
4
|
+
export declare var ConcurrentModificationException$: StaticErrorSchema;
|
|
5
|
+
export declare var IllegalStatusException$: StaticErrorSchema;
|
|
6
|
+
export declare var InternalException$: StaticErrorSchema;
|
|
7
|
+
export declare var InvalidEventPatternException$: StaticErrorSchema;
|
|
8
|
+
export declare var InvalidStateException$: StaticErrorSchema;
|
|
9
|
+
export declare var LimitExceededException$: StaticErrorSchema;
|
|
10
|
+
export declare var ManagedRuleException$: StaticErrorSchema;
|
|
11
|
+
export declare var OperationDisabledException$: StaticErrorSchema;
|
|
12
|
+
export declare var PolicyLengthExceededException$: StaticErrorSchema;
|
|
13
|
+
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
14
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
15
|
+
/**
|
|
16
|
+
* TypeRegistry instances containing modeled errors.
|
|
17
|
+
* @internal
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
20
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
2
21
|
export declare var ActivateEventSourceRequest$: StaticStructureSchema;
|
|
3
22
|
export declare var ApiDestination$: StaticStructureSchema;
|
|
4
23
|
export declare var Archive$: StaticStructureSchema;
|
|
@@ -9,7 +28,6 @@ export declare var BatchRetryStrategy$: StaticStructureSchema;
|
|
|
9
28
|
export declare var CancelReplayRequest$: StaticStructureSchema;
|
|
10
29
|
export declare var CancelReplayResponse$: StaticStructureSchema;
|
|
11
30
|
export declare var CapacityProviderStrategyItem$: StaticStructureSchema;
|
|
12
|
-
export declare var ConcurrentModificationException$: StaticErrorSchema;
|
|
13
31
|
export declare var Condition$: StaticStructureSchema;
|
|
14
32
|
export declare var Connection$: StaticStructureSchema;
|
|
15
33
|
export declare var ConnectionApiKeyAuthResponseParameters$: StaticStructureSchema;
|
|
@@ -71,13 +89,8 @@ export declare var EnableRuleRequest$: StaticStructureSchema;
|
|
|
71
89
|
export declare var EventBus$: StaticStructureSchema;
|
|
72
90
|
export declare var EventSource$: StaticStructureSchema;
|
|
73
91
|
export declare var HttpParameters$: StaticStructureSchema;
|
|
74
|
-
export declare var IllegalStatusException$: StaticErrorSchema;
|
|
75
92
|
export declare var InputTransformer$: StaticStructureSchema;
|
|
76
|
-
export declare var InternalException$: StaticErrorSchema;
|
|
77
|
-
export declare var InvalidEventPatternException$: StaticErrorSchema;
|
|
78
|
-
export declare var InvalidStateException$: StaticErrorSchema;
|
|
79
93
|
export declare var KinesisParameters$: StaticStructureSchema;
|
|
80
|
-
export declare var LimitExceededException$: StaticErrorSchema;
|
|
81
94
|
export declare var ListApiDestinationsRequest$: StaticStructureSchema;
|
|
82
95
|
export declare var ListApiDestinationsResponse$: StaticStructureSchema;
|
|
83
96
|
export declare var ListArchivesRequest$: StaticStructureSchema;
|
|
@@ -102,14 +115,11 @@ export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
|
102
115
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
103
116
|
export declare var ListTargetsByRuleRequest$: StaticStructureSchema;
|
|
104
117
|
export declare var ListTargetsByRuleResponse$: StaticStructureSchema;
|
|
105
|
-
export declare var ManagedRuleException$: StaticErrorSchema;
|
|
106
118
|
export declare var NetworkConfiguration$: StaticStructureSchema;
|
|
107
|
-
export declare var OperationDisabledException$: StaticErrorSchema;
|
|
108
119
|
export declare var PartnerEventSource$: StaticStructureSchema;
|
|
109
120
|
export declare var PartnerEventSourceAccount$: StaticStructureSchema;
|
|
110
121
|
export declare var PlacementConstraint$: StaticStructureSchema;
|
|
111
122
|
export declare var PlacementStrategy$: StaticStructureSchema;
|
|
112
|
-
export declare var PolicyLengthExceededException$: StaticErrorSchema;
|
|
113
123
|
export declare var PutEventsRequest$: StaticStructureSchema;
|
|
114
124
|
export declare var PutEventsRequestEntry$: StaticStructureSchema;
|
|
115
125
|
export declare var PutEventsResponse$: StaticStructureSchema;
|
|
@@ -131,8 +141,6 @@ export declare var RemoveTargetsResponse$: StaticStructureSchema;
|
|
|
131
141
|
export declare var RemoveTargetsResultEntry$: StaticStructureSchema;
|
|
132
142
|
export declare var Replay$: StaticStructureSchema;
|
|
133
143
|
export declare var ReplayDestination$: StaticStructureSchema;
|
|
134
|
-
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
135
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
136
144
|
export declare var RetryPolicy$: StaticStructureSchema;
|
|
137
145
|
export declare var Rule$: StaticStructureSchema;
|
|
138
146
|
export declare var RunCommandParameters$: StaticStructureSchema;
|
|
@@ -161,7 +169,6 @@ export declare var UpdateConnectionOAuthClientRequestParameters$: StaticStructur
|
|
|
161
169
|
export declare var UpdateConnectionOAuthRequestParameters$: StaticStructureSchema;
|
|
162
170
|
export declare var UpdateConnectionRequest$: StaticStructureSchema;
|
|
163
171
|
export declare var UpdateConnectionResponse$: StaticStructureSchema;
|
|
164
|
-
export declare var CloudWatchEventsServiceException$: StaticErrorSchema;
|
|
165
172
|
export declare var ActivateEventSource$: StaticOperationSchema;
|
|
166
173
|
export declare var CancelReplay$: StaticOperationSchema;
|
|
167
174
|
export declare var CreateApiDestination$: StaticOperationSchema;
|
|
@@ -1,8 +1,22 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
} from "@smithy/types";
|
|
7
|
+
export declare var CloudWatchEventsServiceException$: StaticErrorSchema;
|
|
8
|
+
export declare var ConcurrentModificationException$: StaticErrorSchema;
|
|
9
|
+
export declare var IllegalStatusException$: StaticErrorSchema;
|
|
10
|
+
export declare var InternalException$: StaticErrorSchema;
|
|
11
|
+
export declare var InvalidEventPatternException$: StaticErrorSchema;
|
|
12
|
+
export declare var InvalidStateException$: StaticErrorSchema;
|
|
13
|
+
export declare var LimitExceededException$: StaticErrorSchema;
|
|
14
|
+
export declare var ManagedRuleException$: StaticErrorSchema;
|
|
15
|
+
export declare var OperationDisabledException$: StaticErrorSchema;
|
|
16
|
+
export declare var PolicyLengthExceededException$: StaticErrorSchema;
|
|
17
|
+
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
18
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
19
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
6
20
|
export declare var ActivateEventSourceRequest$: StaticStructureSchema;
|
|
7
21
|
export declare var ApiDestination$: StaticStructureSchema;
|
|
8
22
|
export declare var Archive$: StaticStructureSchema;
|
|
@@ -13,7 +27,6 @@ export declare var BatchRetryStrategy$: StaticStructureSchema;
|
|
|
13
27
|
export declare var CancelReplayRequest$: StaticStructureSchema;
|
|
14
28
|
export declare var CancelReplayResponse$: StaticStructureSchema;
|
|
15
29
|
export declare var CapacityProviderStrategyItem$: StaticStructureSchema;
|
|
16
|
-
export declare var ConcurrentModificationException$: StaticErrorSchema;
|
|
17
30
|
export declare var Condition$: StaticStructureSchema;
|
|
18
31
|
export declare var Connection$: StaticStructureSchema;
|
|
19
32
|
export declare var ConnectionApiKeyAuthResponseParameters$: StaticStructureSchema;
|
|
@@ -75,13 +88,8 @@ export declare var EnableRuleRequest$: StaticStructureSchema;
|
|
|
75
88
|
export declare var EventBus$: StaticStructureSchema;
|
|
76
89
|
export declare var EventSource$: StaticStructureSchema;
|
|
77
90
|
export declare var HttpParameters$: StaticStructureSchema;
|
|
78
|
-
export declare var IllegalStatusException$: StaticErrorSchema;
|
|
79
91
|
export declare var InputTransformer$: StaticStructureSchema;
|
|
80
|
-
export declare var InternalException$: StaticErrorSchema;
|
|
81
|
-
export declare var InvalidEventPatternException$: StaticErrorSchema;
|
|
82
|
-
export declare var InvalidStateException$: StaticErrorSchema;
|
|
83
92
|
export declare var KinesisParameters$: StaticStructureSchema;
|
|
84
|
-
export declare var LimitExceededException$: StaticErrorSchema;
|
|
85
93
|
export declare var ListApiDestinationsRequest$: StaticStructureSchema;
|
|
86
94
|
export declare var ListApiDestinationsResponse$: StaticStructureSchema;
|
|
87
95
|
export declare var ListArchivesRequest$: StaticStructureSchema;
|
|
@@ -106,14 +114,11 @@ export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
|
106
114
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
107
115
|
export declare var ListTargetsByRuleRequest$: StaticStructureSchema;
|
|
108
116
|
export declare var ListTargetsByRuleResponse$: StaticStructureSchema;
|
|
109
|
-
export declare var ManagedRuleException$: StaticErrorSchema;
|
|
110
117
|
export declare var NetworkConfiguration$: StaticStructureSchema;
|
|
111
|
-
export declare var OperationDisabledException$: StaticErrorSchema;
|
|
112
118
|
export declare var PartnerEventSource$: StaticStructureSchema;
|
|
113
119
|
export declare var PartnerEventSourceAccount$: StaticStructureSchema;
|
|
114
120
|
export declare var PlacementConstraint$: StaticStructureSchema;
|
|
115
121
|
export declare var PlacementStrategy$: StaticStructureSchema;
|
|
116
|
-
export declare var PolicyLengthExceededException$: StaticErrorSchema;
|
|
117
122
|
export declare var PutEventsRequest$: StaticStructureSchema;
|
|
118
123
|
export declare var PutEventsRequestEntry$: StaticStructureSchema;
|
|
119
124
|
export declare var PutEventsResponse$: StaticStructureSchema;
|
|
@@ -135,8 +140,6 @@ export declare var RemoveTargetsResponse$: StaticStructureSchema;
|
|
|
135
140
|
export declare var RemoveTargetsResultEntry$: StaticStructureSchema;
|
|
136
141
|
export declare var Replay$: StaticStructureSchema;
|
|
137
142
|
export declare var ReplayDestination$: StaticStructureSchema;
|
|
138
|
-
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
139
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
140
143
|
export declare var RetryPolicy$: StaticStructureSchema;
|
|
141
144
|
export declare var Rule$: StaticStructureSchema;
|
|
142
145
|
export declare var RunCommandParameters$: StaticStructureSchema;
|
|
@@ -165,7 +168,6 @@ export declare var UpdateConnectionOAuthClientRequestParameters$: StaticStructur
|
|
|
165
168
|
export declare var UpdateConnectionOAuthRequestParameters$: StaticStructureSchema;
|
|
166
169
|
export declare var UpdateConnectionRequest$: StaticStructureSchema;
|
|
167
170
|
export declare var UpdateConnectionResponse$: StaticStructureSchema;
|
|
168
|
-
export declare var CloudWatchEventsServiceException$: StaticErrorSchema;
|
|
169
171
|
export declare var ActivateEventSource$: StaticOperationSchema;
|
|
170
172
|
export declare var CancelReplay$: StaticOperationSchema;
|
|
171
173
|
export declare var CreateApiDestination$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudwatch-events",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudwatch Events Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.988.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudwatch-events",
|
|
@@ -23,38 +23,38 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.973.8",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.7",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
29
29
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.8",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
33
33
|
"@aws-sdk/types": "^3.973.1",
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.988.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.972.6",
|
|
37
37
|
"@smithy/config-resolver": "^4.4.6",
|
|
38
|
-
"@smithy/core": "^3.
|
|
38
|
+
"@smithy/core": "^3.23.0",
|
|
39
39
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
40
40
|
"@smithy/hash-node": "^4.2.8",
|
|
41
41
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
45
45
|
"@smithy/middleware-serde": "^4.2.9",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.8",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.8",
|
|
48
|
-
"@smithy/node-http-handler": "^4.4.
|
|
48
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
49
49
|
"@smithy/protocol-http": "^5.3.8",
|
|
50
|
-
"@smithy/smithy-client": "^4.11.
|
|
50
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
51
51
|
"@smithy/types": "^4.12.0",
|
|
52
52
|
"@smithy/url-parser": "^4.2.8",
|
|
53
53
|
"@smithy/util-base64": "^4.3.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
58
58
|
"@smithy/util-endpoints": "^3.2.8",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.8",
|
|
60
60
|
"@smithy/util-retry": "^4.2.8",
|