@aws-sdk/client-eventbridge 3.716.0 → 3.723.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 +323 -246
- package/dist-es/EventBridgeClient.js +1 -0
- package/dist-es/models/models_0.js +26 -26
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +45 -45
package/dist-cjs/index.js
CHANGED
|
@@ -234,7 +234,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
234
234
|
}, "resolveRuntimeExtensions");
|
|
235
235
|
|
|
236
236
|
// src/EventBridgeClient.ts
|
|
237
|
-
var
|
|
237
|
+
var EventBridgeClient = class extends import_smithy_client.Client {
|
|
238
|
+
static {
|
|
239
|
+
__name(this, "EventBridgeClient");
|
|
240
|
+
}
|
|
241
|
+
/**
|
|
242
|
+
* The resolved configuration of EventBridgeClient class. This is resolved and normalized from the {@link EventBridgeClientConfig | constructor configuration interface}.
|
|
243
|
+
*/
|
|
244
|
+
config;
|
|
238
245
|
constructor(...[configuration]) {
|
|
239
246
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
240
247
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -244,7 +251,7 @@ var _EventBridgeClient = class _EventBridgeClient extends import_smithy_client.C
|
|
|
244
251
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
245
252
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
246
253
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
247
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
254
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
248
255
|
super(_config_8);
|
|
249
256
|
this.config = _config_8;
|
|
250
257
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -273,8 +280,6 @@ var _EventBridgeClient = class _EventBridgeClient extends import_smithy_client.C
|
|
|
273
280
|
super.destroy();
|
|
274
281
|
}
|
|
275
282
|
};
|
|
276
|
-
__name(_EventBridgeClient, "EventBridgeClient");
|
|
277
|
-
var EventBridgeClient = _EventBridgeClient;
|
|
278
283
|
|
|
279
284
|
// src/EventBridge.ts
|
|
280
285
|
|
|
@@ -291,7 +296,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
291
296
|
|
|
292
297
|
// src/models/EventBridgeServiceException.ts
|
|
293
298
|
|
|
294
|
-
var
|
|
299
|
+
var EventBridgeServiceException = class _EventBridgeServiceException extends import_smithy_client.ServiceException {
|
|
300
|
+
static {
|
|
301
|
+
__name(this, "EventBridgeServiceException");
|
|
302
|
+
}
|
|
295
303
|
/**
|
|
296
304
|
* @internal
|
|
297
305
|
*/
|
|
@@ -300,12 +308,15 @@ var _EventBridgeServiceException = class _EventBridgeServiceException extends im
|
|
|
300
308
|
Object.setPrototypeOf(this, _EventBridgeServiceException.prototype);
|
|
301
309
|
}
|
|
302
310
|
};
|
|
303
|
-
__name(_EventBridgeServiceException, "EventBridgeServiceException");
|
|
304
|
-
var EventBridgeServiceException = _EventBridgeServiceException;
|
|
305
311
|
|
|
306
312
|
// src/models/models_0.ts
|
|
307
313
|
|
|
308
|
-
var
|
|
314
|
+
var AccessDeniedException = class _AccessDeniedException extends EventBridgeServiceException {
|
|
315
|
+
static {
|
|
316
|
+
__name(this, "AccessDeniedException");
|
|
317
|
+
}
|
|
318
|
+
name = "AccessDeniedException";
|
|
319
|
+
$fault = "client";
|
|
309
320
|
/**
|
|
310
321
|
* @internal
|
|
311
322
|
*/
|
|
@@ -315,14 +326,15 @@ var _AccessDeniedException = class _AccessDeniedException extends EventBridgeSer
|
|
|
315
326
|
$fault: "client",
|
|
316
327
|
...opts
|
|
317
328
|
});
|
|
318
|
-
this.name = "AccessDeniedException";
|
|
319
|
-
this.$fault = "client";
|
|
320
329
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
321
330
|
}
|
|
322
331
|
};
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
332
|
+
var ConcurrentModificationException = class _ConcurrentModificationException extends EventBridgeServiceException {
|
|
333
|
+
static {
|
|
334
|
+
__name(this, "ConcurrentModificationException");
|
|
335
|
+
}
|
|
336
|
+
name = "ConcurrentModificationException";
|
|
337
|
+
$fault = "client";
|
|
326
338
|
/**
|
|
327
339
|
* @internal
|
|
328
340
|
*/
|
|
@@ -332,14 +344,15 @@ var _ConcurrentModificationException = class _ConcurrentModificationException ex
|
|
|
332
344
|
$fault: "client",
|
|
333
345
|
...opts
|
|
334
346
|
});
|
|
335
|
-
this.name = "ConcurrentModificationException";
|
|
336
|
-
this.$fault = "client";
|
|
337
347
|
Object.setPrototypeOf(this, _ConcurrentModificationException.prototype);
|
|
338
348
|
}
|
|
339
349
|
};
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
350
|
+
var InternalException = class _InternalException extends EventBridgeServiceException {
|
|
351
|
+
static {
|
|
352
|
+
__name(this, "InternalException");
|
|
353
|
+
}
|
|
354
|
+
name = "InternalException";
|
|
355
|
+
$fault = "server";
|
|
343
356
|
/**
|
|
344
357
|
* @internal
|
|
345
358
|
*/
|
|
@@ -349,14 +362,15 @@ var _InternalException = class _InternalException extends EventBridgeServiceExce
|
|
|
349
362
|
$fault: "server",
|
|
350
363
|
...opts
|
|
351
364
|
});
|
|
352
|
-
this.name = "InternalException";
|
|
353
|
-
this.$fault = "server";
|
|
354
365
|
Object.setPrototypeOf(this, _InternalException.prototype);
|
|
355
366
|
}
|
|
356
367
|
};
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
368
|
+
var InvalidStateException = class _InvalidStateException extends EventBridgeServiceException {
|
|
369
|
+
static {
|
|
370
|
+
__name(this, "InvalidStateException");
|
|
371
|
+
}
|
|
372
|
+
name = "InvalidStateException";
|
|
373
|
+
$fault = "client";
|
|
360
374
|
/**
|
|
361
375
|
* @internal
|
|
362
376
|
*/
|
|
@@ -366,14 +380,15 @@ var _InvalidStateException = class _InvalidStateException extends EventBridgeSer
|
|
|
366
380
|
$fault: "client",
|
|
367
381
|
...opts
|
|
368
382
|
});
|
|
369
|
-
this.name = "InvalidStateException";
|
|
370
|
-
this.$fault = "client";
|
|
371
383
|
Object.setPrototypeOf(this, _InvalidStateException.prototype);
|
|
372
384
|
}
|
|
373
385
|
};
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
386
|
+
var OperationDisabledException = class _OperationDisabledException extends EventBridgeServiceException {
|
|
387
|
+
static {
|
|
388
|
+
__name(this, "OperationDisabledException");
|
|
389
|
+
}
|
|
390
|
+
name = "OperationDisabledException";
|
|
391
|
+
$fault = "client";
|
|
377
392
|
/**
|
|
378
393
|
* @internal
|
|
379
394
|
*/
|
|
@@ -383,14 +398,15 @@ var _OperationDisabledException = class _OperationDisabledException extends Even
|
|
|
383
398
|
$fault: "client",
|
|
384
399
|
...opts
|
|
385
400
|
});
|
|
386
|
-
this.name = "OperationDisabledException";
|
|
387
|
-
this.$fault = "client";
|
|
388
401
|
Object.setPrototypeOf(this, _OperationDisabledException.prototype);
|
|
389
402
|
}
|
|
390
403
|
};
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
404
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends EventBridgeServiceException {
|
|
405
|
+
static {
|
|
406
|
+
__name(this, "ResourceNotFoundException");
|
|
407
|
+
}
|
|
408
|
+
name = "ResourceNotFoundException";
|
|
409
|
+
$fault = "client";
|
|
394
410
|
/**
|
|
395
411
|
* @internal
|
|
396
412
|
*/
|
|
@@ -400,13 +416,9 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends EventB
|
|
|
400
416
|
$fault: "client",
|
|
401
417
|
...opts
|
|
402
418
|
});
|
|
403
|
-
this.name = "ResourceNotFoundException";
|
|
404
|
-
this.$fault = "client";
|
|
405
419
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
406
420
|
}
|
|
407
421
|
};
|
|
408
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
409
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
410
422
|
var ApiDestinationState = {
|
|
411
423
|
ACTIVE: "ACTIVE",
|
|
412
424
|
INACTIVE: "INACTIVE"
|
|
@@ -440,7 +452,12 @@ var ReplayState = {
|
|
|
440
452
|
RUNNING: "RUNNING",
|
|
441
453
|
STARTING: "STARTING"
|
|
442
454
|
};
|
|
443
|
-
var
|
|
455
|
+
var IllegalStatusException = class _IllegalStatusException extends EventBridgeServiceException {
|
|
456
|
+
static {
|
|
457
|
+
__name(this, "IllegalStatusException");
|
|
458
|
+
}
|
|
459
|
+
name = "IllegalStatusException";
|
|
460
|
+
$fault = "client";
|
|
444
461
|
/**
|
|
445
462
|
* @internal
|
|
446
463
|
*/
|
|
@@ -450,14 +467,15 @@ var _IllegalStatusException = class _IllegalStatusException extends EventBridgeS
|
|
|
450
467
|
$fault: "client",
|
|
451
468
|
...opts
|
|
452
469
|
});
|
|
453
|
-
this.name = "IllegalStatusException";
|
|
454
|
-
this.$fault = "client";
|
|
455
470
|
Object.setPrototypeOf(this, _IllegalStatusException.prototype);
|
|
456
471
|
}
|
|
457
472
|
};
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
473
|
+
var LimitExceededException = class _LimitExceededException extends EventBridgeServiceException {
|
|
474
|
+
static {
|
|
475
|
+
__name(this, "LimitExceededException");
|
|
476
|
+
}
|
|
477
|
+
name = "LimitExceededException";
|
|
478
|
+
$fault = "client";
|
|
461
479
|
/**
|
|
462
480
|
* @internal
|
|
463
481
|
*/
|
|
@@ -467,14 +485,15 @@ var _LimitExceededException = class _LimitExceededException extends EventBridgeS
|
|
|
467
485
|
$fault: "client",
|
|
468
486
|
...opts
|
|
469
487
|
});
|
|
470
|
-
this.name = "LimitExceededException";
|
|
471
|
-
this.$fault = "client";
|
|
472
488
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
473
489
|
}
|
|
474
490
|
};
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
491
|
+
var ResourceAlreadyExistsException = class _ResourceAlreadyExistsException extends EventBridgeServiceException {
|
|
492
|
+
static {
|
|
493
|
+
__name(this, "ResourceAlreadyExistsException");
|
|
494
|
+
}
|
|
495
|
+
name = "ResourceAlreadyExistsException";
|
|
496
|
+
$fault = "client";
|
|
478
497
|
/**
|
|
479
498
|
* @internal
|
|
480
499
|
*/
|
|
@@ -484,14 +503,15 @@ var _ResourceAlreadyExistsException = class _ResourceAlreadyExistsException exte
|
|
|
484
503
|
$fault: "client",
|
|
485
504
|
...opts
|
|
486
505
|
});
|
|
487
|
-
this.name = "ResourceAlreadyExistsException";
|
|
488
|
-
this.$fault = "client";
|
|
489
506
|
Object.setPrototypeOf(this, _ResourceAlreadyExistsException.prototype);
|
|
490
507
|
}
|
|
491
508
|
};
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
509
|
+
var InvalidEventPatternException = class _InvalidEventPatternException extends EventBridgeServiceException {
|
|
510
|
+
static {
|
|
511
|
+
__name(this, "InvalidEventPatternException");
|
|
512
|
+
}
|
|
513
|
+
name = "InvalidEventPatternException";
|
|
514
|
+
$fault = "client";
|
|
495
515
|
/**
|
|
496
516
|
* @internal
|
|
497
517
|
*/
|
|
@@ -501,13 +521,9 @@ var _InvalidEventPatternException = class _InvalidEventPatternException extends
|
|
|
501
521
|
$fault: "client",
|
|
502
522
|
...opts
|
|
503
523
|
});
|
|
504
|
-
this.name = "InvalidEventPatternException";
|
|
505
|
-
this.$fault = "client";
|
|
506
524
|
Object.setPrototypeOf(this, _InvalidEventPatternException.prototype);
|
|
507
525
|
}
|
|
508
526
|
};
|
|
509
|
-
__name(_InvalidEventPatternException, "InvalidEventPatternException");
|
|
510
|
-
var InvalidEventPatternException = _InvalidEventPatternException;
|
|
511
527
|
var ConnectionAuthorizationType = {
|
|
512
528
|
API_KEY: "API_KEY",
|
|
513
529
|
BASIC: "BASIC",
|
|
@@ -529,7 +545,12 @@ var ConnectionState = {
|
|
|
529
545
|
FAILED_CONNECTIVITY: "FAILED_CONNECTIVITY",
|
|
530
546
|
UPDATING: "UPDATING"
|
|
531
547
|
};
|
|
532
|
-
var
|
|
548
|
+
var ThrottlingException = class _ThrottlingException extends EventBridgeServiceException {
|
|
549
|
+
static {
|
|
550
|
+
__name(this, "ThrottlingException");
|
|
551
|
+
}
|
|
552
|
+
name = "ThrottlingException";
|
|
553
|
+
$fault = "client";
|
|
533
554
|
/**
|
|
534
555
|
* @internal
|
|
535
556
|
*/
|
|
@@ -539,13 +560,9 @@ var _ThrottlingException = class _ThrottlingException extends EventBridgeService
|
|
|
539
560
|
$fault: "client",
|
|
540
561
|
...opts
|
|
541
562
|
});
|
|
542
|
-
this.name = "ThrottlingException";
|
|
543
|
-
this.$fault = "client";
|
|
544
563
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
545
564
|
}
|
|
546
565
|
};
|
|
547
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
548
|
-
var ThrottlingException = _ThrottlingException;
|
|
549
566
|
var ReplicationState = {
|
|
550
567
|
DISABLED: "DISABLED",
|
|
551
568
|
ENABLED: "ENABLED"
|
|
@@ -559,7 +576,12 @@ var EndpointState = {
|
|
|
559
576
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
560
577
|
UPDATING: "UPDATING"
|
|
561
578
|
};
|
|
562
|
-
var
|
|
579
|
+
var ManagedRuleException = class _ManagedRuleException extends EventBridgeServiceException {
|
|
580
|
+
static {
|
|
581
|
+
__name(this, "ManagedRuleException");
|
|
582
|
+
}
|
|
583
|
+
name = "ManagedRuleException";
|
|
584
|
+
$fault = "client";
|
|
563
585
|
/**
|
|
564
586
|
* @internal
|
|
565
587
|
*/
|
|
@@ -569,13 +591,9 @@ var _ManagedRuleException = class _ManagedRuleException extends EventBridgeServi
|
|
|
569
591
|
$fault: "client",
|
|
570
592
|
...opts
|
|
571
593
|
});
|
|
572
|
-
this.name = "ManagedRuleException";
|
|
573
|
-
this.$fault = "client";
|
|
574
594
|
Object.setPrototypeOf(this, _ManagedRuleException.prototype);
|
|
575
595
|
}
|
|
576
596
|
};
|
|
577
|
-
__name(_ManagedRuleException, "ManagedRuleException");
|
|
578
|
-
var ManagedRuleException = _ManagedRuleException;
|
|
579
597
|
var EventSourceState = {
|
|
580
598
|
ACTIVE: "ACTIVE",
|
|
581
599
|
DELETED: "DELETED",
|
|
@@ -603,7 +621,12 @@ var PlacementStrategyType = {
|
|
|
603
621
|
var PropagateTags = {
|
|
604
622
|
TASK_DEFINITION: "TASK_DEFINITION"
|
|
605
623
|
};
|
|
606
|
-
var
|
|
624
|
+
var PolicyLengthExceededException = class _PolicyLengthExceededException extends EventBridgeServiceException {
|
|
625
|
+
static {
|
|
626
|
+
__name(this, "PolicyLengthExceededException");
|
|
627
|
+
}
|
|
628
|
+
name = "PolicyLengthExceededException";
|
|
629
|
+
$fault = "client";
|
|
607
630
|
/**
|
|
608
631
|
* @internal
|
|
609
632
|
*/
|
|
@@ -613,13 +636,9 @@ var _PolicyLengthExceededException = class _PolicyLengthExceededException extend
|
|
|
613
636
|
$fault: "client",
|
|
614
637
|
...opts
|
|
615
638
|
});
|
|
616
|
-
this.name = "PolicyLengthExceededException";
|
|
617
|
-
this.$fault = "client";
|
|
618
639
|
Object.setPrototypeOf(this, _PolicyLengthExceededException.prototype);
|
|
619
640
|
}
|
|
620
641
|
};
|
|
621
|
-
__name(_PolicyLengthExceededException, "PolicyLengthExceededException");
|
|
622
|
-
var PolicyLengthExceededException = _PolicyLengthExceededException;
|
|
623
642
|
var AppSyncParametersFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
624
643
|
...obj,
|
|
625
644
|
...obj.GraphQLOperation && { GraphQLOperation: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -2454,581 +2473,622 @@ function sharedHeaders(operation) {
|
|
|
2454
2473
|
__name(sharedHeaders, "sharedHeaders");
|
|
2455
2474
|
|
|
2456
2475
|
// src/commands/ActivateEventSourceCommand.ts
|
|
2457
|
-
var
|
|
2476
|
+
var ActivateEventSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2458
2477
|
return [
|
|
2459
2478
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2460
2479
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2461
2480
|
];
|
|
2462
2481
|
}).s("AWSEvents", "ActivateEventSource", {}).n("EventBridgeClient", "ActivateEventSourceCommand").f(void 0, void 0).ser(se_ActivateEventSourceCommand).de(de_ActivateEventSourceCommand).build() {
|
|
2482
|
+
static {
|
|
2483
|
+
__name(this, "ActivateEventSourceCommand");
|
|
2484
|
+
}
|
|
2463
2485
|
};
|
|
2464
|
-
__name(_ActivateEventSourceCommand, "ActivateEventSourceCommand");
|
|
2465
|
-
var ActivateEventSourceCommand = _ActivateEventSourceCommand;
|
|
2466
2486
|
|
|
2467
2487
|
// src/commands/CancelReplayCommand.ts
|
|
2468
2488
|
|
|
2469
2489
|
|
|
2470
2490
|
|
|
2471
|
-
var
|
|
2491
|
+
var CancelReplayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2472
2492
|
return [
|
|
2473
2493
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2474
2494
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2475
2495
|
];
|
|
2476
2496
|
}).s("AWSEvents", "CancelReplay", {}).n("EventBridgeClient", "CancelReplayCommand").f(void 0, void 0).ser(se_CancelReplayCommand).de(de_CancelReplayCommand).build() {
|
|
2497
|
+
static {
|
|
2498
|
+
__name(this, "CancelReplayCommand");
|
|
2499
|
+
}
|
|
2477
2500
|
};
|
|
2478
|
-
__name(_CancelReplayCommand, "CancelReplayCommand");
|
|
2479
|
-
var CancelReplayCommand = _CancelReplayCommand;
|
|
2480
2501
|
|
|
2481
2502
|
// src/commands/CreateApiDestinationCommand.ts
|
|
2482
2503
|
|
|
2483
2504
|
|
|
2484
2505
|
|
|
2485
|
-
var
|
|
2506
|
+
var CreateApiDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2486
2507
|
return [
|
|
2487
2508
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2488
2509
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2489
2510
|
];
|
|
2490
2511
|
}).s("AWSEvents", "CreateApiDestination", {}).n("EventBridgeClient", "CreateApiDestinationCommand").f(void 0, void 0).ser(se_CreateApiDestinationCommand).de(de_CreateApiDestinationCommand).build() {
|
|
2512
|
+
static {
|
|
2513
|
+
__name(this, "CreateApiDestinationCommand");
|
|
2514
|
+
}
|
|
2491
2515
|
};
|
|
2492
|
-
__name(_CreateApiDestinationCommand, "CreateApiDestinationCommand");
|
|
2493
|
-
var CreateApiDestinationCommand = _CreateApiDestinationCommand;
|
|
2494
2516
|
|
|
2495
2517
|
// src/commands/CreateArchiveCommand.ts
|
|
2496
2518
|
|
|
2497
2519
|
|
|
2498
2520
|
|
|
2499
|
-
var
|
|
2521
|
+
var CreateArchiveCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2500
2522
|
return [
|
|
2501
2523
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2502
2524
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2503
2525
|
];
|
|
2504
2526
|
}).s("AWSEvents", "CreateArchive", {}).n("EventBridgeClient", "CreateArchiveCommand").f(void 0, void 0).ser(se_CreateArchiveCommand).de(de_CreateArchiveCommand).build() {
|
|
2527
|
+
static {
|
|
2528
|
+
__name(this, "CreateArchiveCommand");
|
|
2529
|
+
}
|
|
2505
2530
|
};
|
|
2506
|
-
__name(_CreateArchiveCommand, "CreateArchiveCommand");
|
|
2507
|
-
var CreateArchiveCommand = _CreateArchiveCommand;
|
|
2508
2531
|
|
|
2509
2532
|
// src/commands/CreateConnectionCommand.ts
|
|
2510
2533
|
|
|
2511
2534
|
|
|
2512
2535
|
|
|
2513
|
-
var
|
|
2536
|
+
var CreateConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2514
2537
|
return [
|
|
2515
2538
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2516
2539
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2517
2540
|
];
|
|
2518
2541
|
}).s("AWSEvents", "CreateConnection", {}).n("EventBridgeClient", "CreateConnectionCommand").f(CreateConnectionRequestFilterSensitiveLog, void 0).ser(se_CreateConnectionCommand).de(de_CreateConnectionCommand).build() {
|
|
2542
|
+
static {
|
|
2543
|
+
__name(this, "CreateConnectionCommand");
|
|
2544
|
+
}
|
|
2519
2545
|
};
|
|
2520
|
-
__name(_CreateConnectionCommand, "CreateConnectionCommand");
|
|
2521
|
-
var CreateConnectionCommand = _CreateConnectionCommand;
|
|
2522
2546
|
|
|
2523
2547
|
// src/commands/CreateEndpointCommand.ts
|
|
2524
2548
|
|
|
2525
2549
|
|
|
2526
2550
|
|
|
2527
|
-
var
|
|
2551
|
+
var CreateEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2528
2552
|
return [
|
|
2529
2553
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2530
2554
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2531
2555
|
];
|
|
2532
2556
|
}).s("AWSEvents", "CreateEndpoint", {}).n("EventBridgeClient", "CreateEndpointCommand").f(void 0, void 0).ser(se_CreateEndpointCommand).de(de_CreateEndpointCommand).build() {
|
|
2557
|
+
static {
|
|
2558
|
+
__name(this, "CreateEndpointCommand");
|
|
2559
|
+
}
|
|
2533
2560
|
};
|
|
2534
|
-
__name(_CreateEndpointCommand, "CreateEndpointCommand");
|
|
2535
|
-
var CreateEndpointCommand = _CreateEndpointCommand;
|
|
2536
2561
|
|
|
2537
2562
|
// src/commands/CreateEventBusCommand.ts
|
|
2538
2563
|
|
|
2539
2564
|
|
|
2540
2565
|
|
|
2541
|
-
var
|
|
2566
|
+
var CreateEventBusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2542
2567
|
return [
|
|
2543
2568
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2544
2569
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2545
2570
|
];
|
|
2546
2571
|
}).s("AWSEvents", "CreateEventBus", {}).n("EventBridgeClient", "CreateEventBusCommand").f(void 0, void 0).ser(se_CreateEventBusCommand).de(de_CreateEventBusCommand).build() {
|
|
2572
|
+
static {
|
|
2573
|
+
__name(this, "CreateEventBusCommand");
|
|
2574
|
+
}
|
|
2547
2575
|
};
|
|
2548
|
-
__name(_CreateEventBusCommand, "CreateEventBusCommand");
|
|
2549
|
-
var CreateEventBusCommand = _CreateEventBusCommand;
|
|
2550
2576
|
|
|
2551
2577
|
// src/commands/CreatePartnerEventSourceCommand.ts
|
|
2552
2578
|
|
|
2553
2579
|
|
|
2554
2580
|
|
|
2555
|
-
var
|
|
2581
|
+
var CreatePartnerEventSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2556
2582
|
return [
|
|
2557
2583
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2558
2584
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2559
2585
|
];
|
|
2560
2586
|
}).s("AWSEvents", "CreatePartnerEventSource", {}).n("EventBridgeClient", "CreatePartnerEventSourceCommand").f(void 0, void 0).ser(se_CreatePartnerEventSourceCommand).de(de_CreatePartnerEventSourceCommand).build() {
|
|
2587
|
+
static {
|
|
2588
|
+
__name(this, "CreatePartnerEventSourceCommand");
|
|
2589
|
+
}
|
|
2561
2590
|
};
|
|
2562
|
-
__name(_CreatePartnerEventSourceCommand, "CreatePartnerEventSourceCommand");
|
|
2563
|
-
var CreatePartnerEventSourceCommand = _CreatePartnerEventSourceCommand;
|
|
2564
2591
|
|
|
2565
2592
|
// src/commands/DeactivateEventSourceCommand.ts
|
|
2566
2593
|
|
|
2567
2594
|
|
|
2568
2595
|
|
|
2569
|
-
var
|
|
2596
|
+
var DeactivateEventSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2570
2597
|
return [
|
|
2571
2598
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2572
2599
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2573
2600
|
];
|
|
2574
2601
|
}).s("AWSEvents", "DeactivateEventSource", {}).n("EventBridgeClient", "DeactivateEventSourceCommand").f(void 0, void 0).ser(se_DeactivateEventSourceCommand).de(de_DeactivateEventSourceCommand).build() {
|
|
2602
|
+
static {
|
|
2603
|
+
__name(this, "DeactivateEventSourceCommand");
|
|
2604
|
+
}
|
|
2575
2605
|
};
|
|
2576
|
-
__name(_DeactivateEventSourceCommand, "DeactivateEventSourceCommand");
|
|
2577
|
-
var DeactivateEventSourceCommand = _DeactivateEventSourceCommand;
|
|
2578
2606
|
|
|
2579
2607
|
// src/commands/DeauthorizeConnectionCommand.ts
|
|
2580
2608
|
|
|
2581
2609
|
|
|
2582
2610
|
|
|
2583
|
-
var
|
|
2611
|
+
var DeauthorizeConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2584
2612
|
return [
|
|
2585
2613
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2586
2614
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2587
2615
|
];
|
|
2588
2616
|
}).s("AWSEvents", "DeauthorizeConnection", {}).n("EventBridgeClient", "DeauthorizeConnectionCommand").f(void 0, void 0).ser(se_DeauthorizeConnectionCommand).de(de_DeauthorizeConnectionCommand).build() {
|
|
2617
|
+
static {
|
|
2618
|
+
__name(this, "DeauthorizeConnectionCommand");
|
|
2619
|
+
}
|
|
2589
2620
|
};
|
|
2590
|
-
__name(_DeauthorizeConnectionCommand, "DeauthorizeConnectionCommand");
|
|
2591
|
-
var DeauthorizeConnectionCommand = _DeauthorizeConnectionCommand;
|
|
2592
2621
|
|
|
2593
2622
|
// src/commands/DeleteApiDestinationCommand.ts
|
|
2594
2623
|
|
|
2595
2624
|
|
|
2596
2625
|
|
|
2597
|
-
var
|
|
2626
|
+
var DeleteApiDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2598
2627
|
return [
|
|
2599
2628
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2600
2629
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2601
2630
|
];
|
|
2602
2631
|
}).s("AWSEvents", "DeleteApiDestination", {}).n("EventBridgeClient", "DeleteApiDestinationCommand").f(void 0, void 0).ser(se_DeleteApiDestinationCommand).de(de_DeleteApiDestinationCommand).build() {
|
|
2632
|
+
static {
|
|
2633
|
+
__name(this, "DeleteApiDestinationCommand");
|
|
2634
|
+
}
|
|
2603
2635
|
};
|
|
2604
|
-
__name(_DeleteApiDestinationCommand, "DeleteApiDestinationCommand");
|
|
2605
|
-
var DeleteApiDestinationCommand = _DeleteApiDestinationCommand;
|
|
2606
2636
|
|
|
2607
2637
|
// src/commands/DeleteArchiveCommand.ts
|
|
2608
2638
|
|
|
2609
2639
|
|
|
2610
2640
|
|
|
2611
|
-
var
|
|
2641
|
+
var DeleteArchiveCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2612
2642
|
return [
|
|
2613
2643
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2614
2644
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2615
2645
|
];
|
|
2616
2646
|
}).s("AWSEvents", "DeleteArchive", {}).n("EventBridgeClient", "DeleteArchiveCommand").f(void 0, void 0).ser(se_DeleteArchiveCommand).de(de_DeleteArchiveCommand).build() {
|
|
2647
|
+
static {
|
|
2648
|
+
__name(this, "DeleteArchiveCommand");
|
|
2649
|
+
}
|
|
2617
2650
|
};
|
|
2618
|
-
__name(_DeleteArchiveCommand, "DeleteArchiveCommand");
|
|
2619
|
-
var DeleteArchiveCommand = _DeleteArchiveCommand;
|
|
2620
2651
|
|
|
2621
2652
|
// src/commands/DeleteConnectionCommand.ts
|
|
2622
2653
|
|
|
2623
2654
|
|
|
2624
2655
|
|
|
2625
|
-
var
|
|
2656
|
+
var DeleteConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2626
2657
|
return [
|
|
2627
2658
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2628
2659
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2629
2660
|
];
|
|
2630
2661
|
}).s("AWSEvents", "DeleteConnection", {}).n("EventBridgeClient", "DeleteConnectionCommand").f(void 0, void 0).ser(se_DeleteConnectionCommand).de(de_DeleteConnectionCommand).build() {
|
|
2662
|
+
static {
|
|
2663
|
+
__name(this, "DeleteConnectionCommand");
|
|
2664
|
+
}
|
|
2631
2665
|
};
|
|
2632
|
-
__name(_DeleteConnectionCommand, "DeleteConnectionCommand");
|
|
2633
|
-
var DeleteConnectionCommand = _DeleteConnectionCommand;
|
|
2634
2666
|
|
|
2635
2667
|
// src/commands/DeleteEndpointCommand.ts
|
|
2636
2668
|
|
|
2637
2669
|
|
|
2638
2670
|
|
|
2639
|
-
var
|
|
2671
|
+
var DeleteEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2640
2672
|
return [
|
|
2641
2673
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2642
2674
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2643
2675
|
];
|
|
2644
2676
|
}).s("AWSEvents", "DeleteEndpoint", {}).n("EventBridgeClient", "DeleteEndpointCommand").f(void 0, void 0).ser(se_DeleteEndpointCommand).de(de_DeleteEndpointCommand).build() {
|
|
2677
|
+
static {
|
|
2678
|
+
__name(this, "DeleteEndpointCommand");
|
|
2679
|
+
}
|
|
2645
2680
|
};
|
|
2646
|
-
__name(_DeleteEndpointCommand, "DeleteEndpointCommand");
|
|
2647
|
-
var DeleteEndpointCommand = _DeleteEndpointCommand;
|
|
2648
2681
|
|
|
2649
2682
|
// src/commands/DeleteEventBusCommand.ts
|
|
2650
2683
|
|
|
2651
2684
|
|
|
2652
2685
|
|
|
2653
|
-
var
|
|
2686
|
+
var DeleteEventBusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2654
2687
|
return [
|
|
2655
2688
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2656
2689
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2657
2690
|
];
|
|
2658
2691
|
}).s("AWSEvents", "DeleteEventBus", {}).n("EventBridgeClient", "DeleteEventBusCommand").f(void 0, void 0).ser(se_DeleteEventBusCommand).de(de_DeleteEventBusCommand).build() {
|
|
2692
|
+
static {
|
|
2693
|
+
__name(this, "DeleteEventBusCommand");
|
|
2694
|
+
}
|
|
2659
2695
|
};
|
|
2660
|
-
__name(_DeleteEventBusCommand, "DeleteEventBusCommand");
|
|
2661
|
-
var DeleteEventBusCommand = _DeleteEventBusCommand;
|
|
2662
2696
|
|
|
2663
2697
|
// src/commands/DeletePartnerEventSourceCommand.ts
|
|
2664
2698
|
|
|
2665
2699
|
|
|
2666
2700
|
|
|
2667
|
-
var
|
|
2701
|
+
var DeletePartnerEventSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2668
2702
|
return [
|
|
2669
2703
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2670
2704
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2671
2705
|
];
|
|
2672
2706
|
}).s("AWSEvents", "DeletePartnerEventSource", {}).n("EventBridgeClient", "DeletePartnerEventSourceCommand").f(void 0, void 0).ser(se_DeletePartnerEventSourceCommand).de(de_DeletePartnerEventSourceCommand).build() {
|
|
2707
|
+
static {
|
|
2708
|
+
__name(this, "DeletePartnerEventSourceCommand");
|
|
2709
|
+
}
|
|
2673
2710
|
};
|
|
2674
|
-
__name(_DeletePartnerEventSourceCommand, "DeletePartnerEventSourceCommand");
|
|
2675
|
-
var DeletePartnerEventSourceCommand = _DeletePartnerEventSourceCommand;
|
|
2676
2711
|
|
|
2677
2712
|
// src/commands/DeleteRuleCommand.ts
|
|
2678
2713
|
|
|
2679
2714
|
|
|
2680
2715
|
|
|
2681
|
-
var
|
|
2716
|
+
var DeleteRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2682
2717
|
return [
|
|
2683
2718
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2684
2719
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2685
2720
|
];
|
|
2686
2721
|
}).s("AWSEvents", "DeleteRule", {}).n("EventBridgeClient", "DeleteRuleCommand").f(void 0, void 0).ser(se_DeleteRuleCommand).de(de_DeleteRuleCommand).build() {
|
|
2722
|
+
static {
|
|
2723
|
+
__name(this, "DeleteRuleCommand");
|
|
2724
|
+
}
|
|
2687
2725
|
};
|
|
2688
|
-
__name(_DeleteRuleCommand, "DeleteRuleCommand");
|
|
2689
|
-
var DeleteRuleCommand = _DeleteRuleCommand;
|
|
2690
2726
|
|
|
2691
2727
|
// src/commands/DescribeApiDestinationCommand.ts
|
|
2692
2728
|
|
|
2693
2729
|
|
|
2694
2730
|
|
|
2695
|
-
var
|
|
2731
|
+
var DescribeApiDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2696
2732
|
return [
|
|
2697
2733
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2698
2734
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2699
2735
|
];
|
|
2700
2736
|
}).s("AWSEvents", "DescribeApiDestination", {}).n("EventBridgeClient", "DescribeApiDestinationCommand").f(void 0, void 0).ser(se_DescribeApiDestinationCommand).de(de_DescribeApiDestinationCommand).build() {
|
|
2737
|
+
static {
|
|
2738
|
+
__name(this, "DescribeApiDestinationCommand");
|
|
2739
|
+
}
|
|
2701
2740
|
};
|
|
2702
|
-
__name(_DescribeApiDestinationCommand, "DescribeApiDestinationCommand");
|
|
2703
|
-
var DescribeApiDestinationCommand = _DescribeApiDestinationCommand;
|
|
2704
2741
|
|
|
2705
2742
|
// src/commands/DescribeArchiveCommand.ts
|
|
2706
2743
|
|
|
2707
2744
|
|
|
2708
2745
|
|
|
2709
|
-
var
|
|
2746
|
+
var DescribeArchiveCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2710
2747
|
return [
|
|
2711
2748
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2712
2749
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2713
2750
|
];
|
|
2714
2751
|
}).s("AWSEvents", "DescribeArchive", {}).n("EventBridgeClient", "DescribeArchiveCommand").f(void 0, void 0).ser(se_DescribeArchiveCommand).de(de_DescribeArchiveCommand).build() {
|
|
2752
|
+
static {
|
|
2753
|
+
__name(this, "DescribeArchiveCommand");
|
|
2754
|
+
}
|
|
2715
2755
|
};
|
|
2716
|
-
__name(_DescribeArchiveCommand, "DescribeArchiveCommand");
|
|
2717
|
-
var DescribeArchiveCommand = _DescribeArchiveCommand;
|
|
2718
2756
|
|
|
2719
2757
|
// src/commands/DescribeConnectionCommand.ts
|
|
2720
2758
|
|
|
2721
2759
|
|
|
2722
2760
|
|
|
2723
|
-
var
|
|
2761
|
+
var DescribeConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2724
2762
|
return [
|
|
2725
2763
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2726
2764
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2727
2765
|
];
|
|
2728
2766
|
}).s("AWSEvents", "DescribeConnection", {}).n("EventBridgeClient", "DescribeConnectionCommand").f(void 0, DescribeConnectionResponseFilterSensitiveLog).ser(se_DescribeConnectionCommand).de(de_DescribeConnectionCommand).build() {
|
|
2767
|
+
static {
|
|
2768
|
+
__name(this, "DescribeConnectionCommand");
|
|
2769
|
+
}
|
|
2729
2770
|
};
|
|
2730
|
-
__name(_DescribeConnectionCommand, "DescribeConnectionCommand");
|
|
2731
|
-
var DescribeConnectionCommand = _DescribeConnectionCommand;
|
|
2732
2771
|
|
|
2733
2772
|
// src/commands/DescribeEndpointCommand.ts
|
|
2734
2773
|
|
|
2735
2774
|
|
|
2736
2775
|
|
|
2737
|
-
var
|
|
2776
|
+
var DescribeEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2738
2777
|
return [
|
|
2739
2778
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2740
2779
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2741
2780
|
];
|
|
2742
2781
|
}).s("AWSEvents", "DescribeEndpoint", {}).n("EventBridgeClient", "DescribeEndpointCommand").f(void 0, void 0).ser(se_DescribeEndpointCommand).de(de_DescribeEndpointCommand).build() {
|
|
2782
|
+
static {
|
|
2783
|
+
__name(this, "DescribeEndpointCommand");
|
|
2784
|
+
}
|
|
2743
2785
|
};
|
|
2744
|
-
__name(_DescribeEndpointCommand, "DescribeEndpointCommand");
|
|
2745
|
-
var DescribeEndpointCommand = _DescribeEndpointCommand;
|
|
2746
2786
|
|
|
2747
2787
|
// src/commands/DescribeEventBusCommand.ts
|
|
2748
2788
|
|
|
2749
2789
|
|
|
2750
2790
|
|
|
2751
|
-
var
|
|
2791
|
+
var DescribeEventBusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2752
2792
|
return [
|
|
2753
2793
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2754
2794
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2755
2795
|
];
|
|
2756
2796
|
}).s("AWSEvents", "DescribeEventBus", {}).n("EventBridgeClient", "DescribeEventBusCommand").f(void 0, void 0).ser(se_DescribeEventBusCommand).de(de_DescribeEventBusCommand).build() {
|
|
2797
|
+
static {
|
|
2798
|
+
__name(this, "DescribeEventBusCommand");
|
|
2799
|
+
}
|
|
2757
2800
|
};
|
|
2758
|
-
__name(_DescribeEventBusCommand, "DescribeEventBusCommand");
|
|
2759
|
-
var DescribeEventBusCommand = _DescribeEventBusCommand;
|
|
2760
2801
|
|
|
2761
2802
|
// src/commands/DescribeEventSourceCommand.ts
|
|
2762
2803
|
|
|
2763
2804
|
|
|
2764
2805
|
|
|
2765
|
-
var
|
|
2806
|
+
var DescribeEventSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2766
2807
|
return [
|
|
2767
2808
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2768
2809
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2769
2810
|
];
|
|
2770
2811
|
}).s("AWSEvents", "DescribeEventSource", {}).n("EventBridgeClient", "DescribeEventSourceCommand").f(void 0, void 0).ser(se_DescribeEventSourceCommand).de(de_DescribeEventSourceCommand).build() {
|
|
2812
|
+
static {
|
|
2813
|
+
__name(this, "DescribeEventSourceCommand");
|
|
2814
|
+
}
|
|
2771
2815
|
};
|
|
2772
|
-
__name(_DescribeEventSourceCommand, "DescribeEventSourceCommand");
|
|
2773
|
-
var DescribeEventSourceCommand = _DescribeEventSourceCommand;
|
|
2774
2816
|
|
|
2775
2817
|
// src/commands/DescribePartnerEventSourceCommand.ts
|
|
2776
2818
|
|
|
2777
2819
|
|
|
2778
2820
|
|
|
2779
|
-
var
|
|
2821
|
+
var DescribePartnerEventSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2780
2822
|
return [
|
|
2781
2823
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2782
2824
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2783
2825
|
];
|
|
2784
2826
|
}).s("AWSEvents", "DescribePartnerEventSource", {}).n("EventBridgeClient", "DescribePartnerEventSourceCommand").f(void 0, void 0).ser(se_DescribePartnerEventSourceCommand).de(de_DescribePartnerEventSourceCommand).build() {
|
|
2827
|
+
static {
|
|
2828
|
+
__name(this, "DescribePartnerEventSourceCommand");
|
|
2829
|
+
}
|
|
2785
2830
|
};
|
|
2786
|
-
__name(_DescribePartnerEventSourceCommand, "DescribePartnerEventSourceCommand");
|
|
2787
|
-
var DescribePartnerEventSourceCommand = _DescribePartnerEventSourceCommand;
|
|
2788
2831
|
|
|
2789
2832
|
// src/commands/DescribeReplayCommand.ts
|
|
2790
2833
|
|
|
2791
2834
|
|
|
2792
2835
|
|
|
2793
|
-
var
|
|
2836
|
+
var DescribeReplayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2794
2837
|
return [
|
|
2795
2838
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2796
2839
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2797
2840
|
];
|
|
2798
2841
|
}).s("AWSEvents", "DescribeReplay", {}).n("EventBridgeClient", "DescribeReplayCommand").f(void 0, void 0).ser(se_DescribeReplayCommand).de(de_DescribeReplayCommand).build() {
|
|
2842
|
+
static {
|
|
2843
|
+
__name(this, "DescribeReplayCommand");
|
|
2844
|
+
}
|
|
2799
2845
|
};
|
|
2800
|
-
__name(_DescribeReplayCommand, "DescribeReplayCommand");
|
|
2801
|
-
var DescribeReplayCommand = _DescribeReplayCommand;
|
|
2802
2846
|
|
|
2803
2847
|
// src/commands/DescribeRuleCommand.ts
|
|
2804
2848
|
|
|
2805
2849
|
|
|
2806
2850
|
|
|
2807
|
-
var
|
|
2851
|
+
var DescribeRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2808
2852
|
return [
|
|
2809
2853
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2810
2854
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2811
2855
|
];
|
|
2812
2856
|
}).s("AWSEvents", "DescribeRule", {}).n("EventBridgeClient", "DescribeRuleCommand").f(void 0, void 0).ser(se_DescribeRuleCommand).de(de_DescribeRuleCommand).build() {
|
|
2857
|
+
static {
|
|
2858
|
+
__name(this, "DescribeRuleCommand");
|
|
2859
|
+
}
|
|
2813
2860
|
};
|
|
2814
|
-
__name(_DescribeRuleCommand, "DescribeRuleCommand");
|
|
2815
|
-
var DescribeRuleCommand = _DescribeRuleCommand;
|
|
2816
2861
|
|
|
2817
2862
|
// src/commands/DisableRuleCommand.ts
|
|
2818
2863
|
|
|
2819
2864
|
|
|
2820
2865
|
|
|
2821
|
-
var
|
|
2866
|
+
var DisableRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2822
2867
|
return [
|
|
2823
2868
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2824
2869
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2825
2870
|
];
|
|
2826
2871
|
}).s("AWSEvents", "DisableRule", {}).n("EventBridgeClient", "DisableRuleCommand").f(void 0, void 0).ser(se_DisableRuleCommand).de(de_DisableRuleCommand).build() {
|
|
2872
|
+
static {
|
|
2873
|
+
__name(this, "DisableRuleCommand");
|
|
2874
|
+
}
|
|
2827
2875
|
};
|
|
2828
|
-
__name(_DisableRuleCommand, "DisableRuleCommand");
|
|
2829
|
-
var DisableRuleCommand = _DisableRuleCommand;
|
|
2830
2876
|
|
|
2831
2877
|
// src/commands/EnableRuleCommand.ts
|
|
2832
2878
|
|
|
2833
2879
|
|
|
2834
2880
|
|
|
2835
|
-
var
|
|
2881
|
+
var EnableRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2836
2882
|
return [
|
|
2837
2883
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2838
2884
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2839
2885
|
];
|
|
2840
2886
|
}).s("AWSEvents", "EnableRule", {}).n("EventBridgeClient", "EnableRuleCommand").f(void 0, void 0).ser(se_EnableRuleCommand).de(de_EnableRuleCommand).build() {
|
|
2887
|
+
static {
|
|
2888
|
+
__name(this, "EnableRuleCommand");
|
|
2889
|
+
}
|
|
2841
2890
|
};
|
|
2842
|
-
__name(_EnableRuleCommand, "EnableRuleCommand");
|
|
2843
|
-
var EnableRuleCommand = _EnableRuleCommand;
|
|
2844
2891
|
|
|
2845
2892
|
// src/commands/ListApiDestinationsCommand.ts
|
|
2846
2893
|
|
|
2847
2894
|
|
|
2848
2895
|
|
|
2849
|
-
var
|
|
2896
|
+
var ListApiDestinationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2850
2897
|
return [
|
|
2851
2898
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2852
2899
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2853
2900
|
];
|
|
2854
2901
|
}).s("AWSEvents", "ListApiDestinations", {}).n("EventBridgeClient", "ListApiDestinationsCommand").f(void 0, void 0).ser(se_ListApiDestinationsCommand).de(de_ListApiDestinationsCommand).build() {
|
|
2902
|
+
static {
|
|
2903
|
+
__name(this, "ListApiDestinationsCommand");
|
|
2904
|
+
}
|
|
2855
2905
|
};
|
|
2856
|
-
__name(_ListApiDestinationsCommand, "ListApiDestinationsCommand");
|
|
2857
|
-
var ListApiDestinationsCommand = _ListApiDestinationsCommand;
|
|
2858
2906
|
|
|
2859
2907
|
// src/commands/ListArchivesCommand.ts
|
|
2860
2908
|
|
|
2861
2909
|
|
|
2862
2910
|
|
|
2863
|
-
var
|
|
2911
|
+
var ListArchivesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2864
2912
|
return [
|
|
2865
2913
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2866
2914
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2867
2915
|
];
|
|
2868
2916
|
}).s("AWSEvents", "ListArchives", {}).n("EventBridgeClient", "ListArchivesCommand").f(void 0, void 0).ser(se_ListArchivesCommand).de(de_ListArchivesCommand).build() {
|
|
2917
|
+
static {
|
|
2918
|
+
__name(this, "ListArchivesCommand");
|
|
2919
|
+
}
|
|
2869
2920
|
};
|
|
2870
|
-
__name(_ListArchivesCommand, "ListArchivesCommand");
|
|
2871
|
-
var ListArchivesCommand = _ListArchivesCommand;
|
|
2872
2921
|
|
|
2873
2922
|
// src/commands/ListConnectionsCommand.ts
|
|
2874
2923
|
|
|
2875
2924
|
|
|
2876
2925
|
|
|
2877
|
-
var
|
|
2926
|
+
var ListConnectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2878
2927
|
return [
|
|
2879
2928
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2880
2929
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2881
2930
|
];
|
|
2882
2931
|
}).s("AWSEvents", "ListConnections", {}).n("EventBridgeClient", "ListConnectionsCommand").f(void 0, void 0).ser(se_ListConnectionsCommand).de(de_ListConnectionsCommand).build() {
|
|
2932
|
+
static {
|
|
2933
|
+
__name(this, "ListConnectionsCommand");
|
|
2934
|
+
}
|
|
2883
2935
|
};
|
|
2884
|
-
__name(_ListConnectionsCommand, "ListConnectionsCommand");
|
|
2885
|
-
var ListConnectionsCommand = _ListConnectionsCommand;
|
|
2886
2936
|
|
|
2887
2937
|
// src/commands/ListEndpointsCommand.ts
|
|
2888
2938
|
|
|
2889
2939
|
|
|
2890
2940
|
|
|
2891
|
-
var
|
|
2941
|
+
var ListEndpointsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2892
2942
|
return [
|
|
2893
2943
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2894
2944
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2895
2945
|
];
|
|
2896
2946
|
}).s("AWSEvents", "ListEndpoints", {}).n("EventBridgeClient", "ListEndpointsCommand").f(void 0, void 0).ser(se_ListEndpointsCommand).de(de_ListEndpointsCommand).build() {
|
|
2947
|
+
static {
|
|
2948
|
+
__name(this, "ListEndpointsCommand");
|
|
2949
|
+
}
|
|
2897
2950
|
};
|
|
2898
|
-
__name(_ListEndpointsCommand, "ListEndpointsCommand");
|
|
2899
|
-
var ListEndpointsCommand = _ListEndpointsCommand;
|
|
2900
2951
|
|
|
2901
2952
|
// src/commands/ListEventBusesCommand.ts
|
|
2902
2953
|
|
|
2903
2954
|
|
|
2904
2955
|
|
|
2905
|
-
var
|
|
2956
|
+
var ListEventBusesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2906
2957
|
return [
|
|
2907
2958
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2908
2959
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2909
2960
|
];
|
|
2910
2961
|
}).s("AWSEvents", "ListEventBuses", {}).n("EventBridgeClient", "ListEventBusesCommand").f(void 0, void 0).ser(se_ListEventBusesCommand).de(de_ListEventBusesCommand).build() {
|
|
2962
|
+
static {
|
|
2963
|
+
__name(this, "ListEventBusesCommand");
|
|
2964
|
+
}
|
|
2911
2965
|
};
|
|
2912
|
-
__name(_ListEventBusesCommand, "ListEventBusesCommand");
|
|
2913
|
-
var ListEventBusesCommand = _ListEventBusesCommand;
|
|
2914
2966
|
|
|
2915
2967
|
// src/commands/ListEventSourcesCommand.ts
|
|
2916
2968
|
|
|
2917
2969
|
|
|
2918
2970
|
|
|
2919
|
-
var
|
|
2971
|
+
var ListEventSourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2920
2972
|
return [
|
|
2921
2973
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2922
2974
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2923
2975
|
];
|
|
2924
2976
|
}).s("AWSEvents", "ListEventSources", {}).n("EventBridgeClient", "ListEventSourcesCommand").f(void 0, void 0).ser(se_ListEventSourcesCommand).de(de_ListEventSourcesCommand).build() {
|
|
2977
|
+
static {
|
|
2978
|
+
__name(this, "ListEventSourcesCommand");
|
|
2979
|
+
}
|
|
2925
2980
|
};
|
|
2926
|
-
__name(_ListEventSourcesCommand, "ListEventSourcesCommand");
|
|
2927
|
-
var ListEventSourcesCommand = _ListEventSourcesCommand;
|
|
2928
2981
|
|
|
2929
2982
|
// src/commands/ListPartnerEventSourceAccountsCommand.ts
|
|
2930
2983
|
|
|
2931
2984
|
|
|
2932
2985
|
|
|
2933
|
-
var
|
|
2986
|
+
var ListPartnerEventSourceAccountsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2934
2987
|
return [
|
|
2935
2988
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2936
2989
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2937
2990
|
];
|
|
2938
2991
|
}).s("AWSEvents", "ListPartnerEventSourceAccounts", {}).n("EventBridgeClient", "ListPartnerEventSourceAccountsCommand").f(void 0, void 0).ser(se_ListPartnerEventSourceAccountsCommand).de(de_ListPartnerEventSourceAccountsCommand).build() {
|
|
2992
|
+
static {
|
|
2993
|
+
__name(this, "ListPartnerEventSourceAccountsCommand");
|
|
2994
|
+
}
|
|
2939
2995
|
};
|
|
2940
|
-
__name(_ListPartnerEventSourceAccountsCommand, "ListPartnerEventSourceAccountsCommand");
|
|
2941
|
-
var ListPartnerEventSourceAccountsCommand = _ListPartnerEventSourceAccountsCommand;
|
|
2942
2996
|
|
|
2943
2997
|
// src/commands/ListPartnerEventSourcesCommand.ts
|
|
2944
2998
|
|
|
2945
2999
|
|
|
2946
3000
|
|
|
2947
|
-
var
|
|
3001
|
+
var ListPartnerEventSourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2948
3002
|
return [
|
|
2949
3003
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2950
3004
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2951
3005
|
];
|
|
2952
3006
|
}).s("AWSEvents", "ListPartnerEventSources", {}).n("EventBridgeClient", "ListPartnerEventSourcesCommand").f(void 0, void 0).ser(se_ListPartnerEventSourcesCommand).de(de_ListPartnerEventSourcesCommand).build() {
|
|
3007
|
+
static {
|
|
3008
|
+
__name(this, "ListPartnerEventSourcesCommand");
|
|
3009
|
+
}
|
|
2953
3010
|
};
|
|
2954
|
-
__name(_ListPartnerEventSourcesCommand, "ListPartnerEventSourcesCommand");
|
|
2955
|
-
var ListPartnerEventSourcesCommand = _ListPartnerEventSourcesCommand;
|
|
2956
3011
|
|
|
2957
3012
|
// src/commands/ListReplaysCommand.ts
|
|
2958
3013
|
|
|
2959
3014
|
|
|
2960
3015
|
|
|
2961
|
-
var
|
|
3016
|
+
var ListReplaysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2962
3017
|
return [
|
|
2963
3018
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2964
3019
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2965
3020
|
];
|
|
2966
3021
|
}).s("AWSEvents", "ListReplays", {}).n("EventBridgeClient", "ListReplaysCommand").f(void 0, void 0).ser(se_ListReplaysCommand).de(de_ListReplaysCommand).build() {
|
|
3022
|
+
static {
|
|
3023
|
+
__name(this, "ListReplaysCommand");
|
|
3024
|
+
}
|
|
2967
3025
|
};
|
|
2968
|
-
__name(_ListReplaysCommand, "ListReplaysCommand");
|
|
2969
|
-
var ListReplaysCommand = _ListReplaysCommand;
|
|
2970
3026
|
|
|
2971
3027
|
// src/commands/ListRuleNamesByTargetCommand.ts
|
|
2972
3028
|
|
|
2973
3029
|
|
|
2974
3030
|
|
|
2975
|
-
var
|
|
3031
|
+
var ListRuleNamesByTargetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2976
3032
|
return [
|
|
2977
3033
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2978
3034
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2979
3035
|
];
|
|
2980
3036
|
}).s("AWSEvents", "ListRuleNamesByTarget", {}).n("EventBridgeClient", "ListRuleNamesByTargetCommand").f(void 0, void 0).ser(se_ListRuleNamesByTargetCommand).de(de_ListRuleNamesByTargetCommand).build() {
|
|
3037
|
+
static {
|
|
3038
|
+
__name(this, "ListRuleNamesByTargetCommand");
|
|
3039
|
+
}
|
|
2981
3040
|
};
|
|
2982
|
-
__name(_ListRuleNamesByTargetCommand, "ListRuleNamesByTargetCommand");
|
|
2983
|
-
var ListRuleNamesByTargetCommand = _ListRuleNamesByTargetCommand;
|
|
2984
3041
|
|
|
2985
3042
|
// src/commands/ListRulesCommand.ts
|
|
2986
3043
|
|
|
2987
3044
|
|
|
2988
3045
|
|
|
2989
|
-
var
|
|
3046
|
+
var ListRulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2990
3047
|
return [
|
|
2991
3048
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2992
3049
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2993
3050
|
];
|
|
2994
3051
|
}).s("AWSEvents", "ListRules", {}).n("EventBridgeClient", "ListRulesCommand").f(void 0, void 0).ser(se_ListRulesCommand).de(de_ListRulesCommand).build() {
|
|
3052
|
+
static {
|
|
3053
|
+
__name(this, "ListRulesCommand");
|
|
3054
|
+
}
|
|
2995
3055
|
};
|
|
2996
|
-
__name(_ListRulesCommand, "ListRulesCommand");
|
|
2997
|
-
var ListRulesCommand = _ListRulesCommand;
|
|
2998
3056
|
|
|
2999
3057
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3000
3058
|
|
|
3001
3059
|
|
|
3002
3060
|
|
|
3003
|
-
var
|
|
3061
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3004
3062
|
return [
|
|
3005
3063
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3006
3064
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3007
3065
|
];
|
|
3008
3066
|
}).s("AWSEvents", "ListTagsForResource", {}).n("EventBridgeClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3067
|
+
static {
|
|
3068
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3069
|
+
}
|
|
3009
3070
|
};
|
|
3010
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3011
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3012
3071
|
|
|
3013
3072
|
// src/commands/ListTargetsByRuleCommand.ts
|
|
3014
3073
|
|
|
3015
3074
|
|
|
3016
3075
|
|
|
3017
|
-
var
|
|
3076
|
+
var ListTargetsByRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3018
3077
|
return [
|
|
3019
3078
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3020
3079
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3021
3080
|
];
|
|
3022
3081
|
}).s("AWSEvents", "ListTargetsByRule", {}).n("EventBridgeClient", "ListTargetsByRuleCommand").f(void 0, ListTargetsByRuleResponseFilterSensitiveLog).ser(se_ListTargetsByRuleCommand).de(de_ListTargetsByRuleCommand).build() {
|
|
3082
|
+
static {
|
|
3083
|
+
__name(this, "ListTargetsByRuleCommand");
|
|
3084
|
+
}
|
|
3023
3085
|
};
|
|
3024
|
-
__name(_ListTargetsByRuleCommand, "ListTargetsByRuleCommand");
|
|
3025
|
-
var ListTargetsByRuleCommand = _ListTargetsByRuleCommand;
|
|
3026
3086
|
|
|
3027
3087
|
// src/commands/PutEventsCommand.ts
|
|
3028
3088
|
|
|
3029
3089
|
|
|
3030
3090
|
|
|
3031
|
-
var
|
|
3091
|
+
var PutEventsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
3032
3092
|
...commonParams,
|
|
3033
3093
|
EndpointId: { type: "contextParams", name: "EndpointId" }
|
|
3034
3094
|
}).m(function(Command, cs, config, o) {
|
|
@@ -3037,219 +3097,235 @@ var _PutEventsCommand = class _PutEventsCommand extends import_smithy_client.Com
|
|
|
3037
3097
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3038
3098
|
];
|
|
3039
3099
|
}).s("AWSEvents", "PutEvents", {}).n("EventBridgeClient", "PutEventsCommand").f(void 0, void 0).ser(se_PutEventsCommand).de(de_PutEventsCommand).build() {
|
|
3100
|
+
static {
|
|
3101
|
+
__name(this, "PutEventsCommand");
|
|
3102
|
+
}
|
|
3040
3103
|
};
|
|
3041
|
-
__name(_PutEventsCommand, "PutEventsCommand");
|
|
3042
|
-
var PutEventsCommand = _PutEventsCommand;
|
|
3043
3104
|
|
|
3044
3105
|
// src/commands/PutPartnerEventsCommand.ts
|
|
3045
3106
|
|
|
3046
3107
|
|
|
3047
3108
|
|
|
3048
|
-
var
|
|
3109
|
+
var PutPartnerEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3049
3110
|
return [
|
|
3050
3111
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3051
3112
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3052
3113
|
];
|
|
3053
3114
|
}).s("AWSEvents", "PutPartnerEvents", {}).n("EventBridgeClient", "PutPartnerEventsCommand").f(void 0, void 0).ser(se_PutPartnerEventsCommand).de(de_PutPartnerEventsCommand).build() {
|
|
3115
|
+
static {
|
|
3116
|
+
__name(this, "PutPartnerEventsCommand");
|
|
3117
|
+
}
|
|
3054
3118
|
};
|
|
3055
|
-
__name(_PutPartnerEventsCommand, "PutPartnerEventsCommand");
|
|
3056
|
-
var PutPartnerEventsCommand = _PutPartnerEventsCommand;
|
|
3057
3119
|
|
|
3058
3120
|
// src/commands/PutPermissionCommand.ts
|
|
3059
3121
|
|
|
3060
3122
|
|
|
3061
3123
|
|
|
3062
|
-
var
|
|
3124
|
+
var PutPermissionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3063
3125
|
return [
|
|
3064
3126
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3065
3127
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3066
3128
|
];
|
|
3067
3129
|
}).s("AWSEvents", "PutPermission", {}).n("EventBridgeClient", "PutPermissionCommand").f(void 0, void 0).ser(se_PutPermissionCommand).de(de_PutPermissionCommand).build() {
|
|
3130
|
+
static {
|
|
3131
|
+
__name(this, "PutPermissionCommand");
|
|
3132
|
+
}
|
|
3068
3133
|
};
|
|
3069
|
-
__name(_PutPermissionCommand, "PutPermissionCommand");
|
|
3070
|
-
var PutPermissionCommand = _PutPermissionCommand;
|
|
3071
3134
|
|
|
3072
3135
|
// src/commands/PutRuleCommand.ts
|
|
3073
3136
|
|
|
3074
3137
|
|
|
3075
3138
|
|
|
3076
|
-
var
|
|
3139
|
+
var PutRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3077
3140
|
return [
|
|
3078
3141
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3079
3142
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3080
3143
|
];
|
|
3081
3144
|
}).s("AWSEvents", "PutRule", {}).n("EventBridgeClient", "PutRuleCommand").f(void 0, void 0).ser(se_PutRuleCommand).de(de_PutRuleCommand).build() {
|
|
3145
|
+
static {
|
|
3146
|
+
__name(this, "PutRuleCommand");
|
|
3147
|
+
}
|
|
3082
3148
|
};
|
|
3083
|
-
__name(_PutRuleCommand, "PutRuleCommand");
|
|
3084
|
-
var PutRuleCommand = _PutRuleCommand;
|
|
3085
3149
|
|
|
3086
3150
|
// src/commands/PutTargetsCommand.ts
|
|
3087
3151
|
|
|
3088
3152
|
|
|
3089
3153
|
|
|
3090
|
-
var
|
|
3154
|
+
var PutTargetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3091
3155
|
return [
|
|
3092
3156
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3093
3157
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3094
3158
|
];
|
|
3095
3159
|
}).s("AWSEvents", "PutTargets", {}).n("EventBridgeClient", "PutTargetsCommand").f(PutTargetsRequestFilterSensitiveLog, void 0).ser(se_PutTargetsCommand).de(de_PutTargetsCommand).build() {
|
|
3160
|
+
static {
|
|
3161
|
+
__name(this, "PutTargetsCommand");
|
|
3162
|
+
}
|
|
3096
3163
|
};
|
|
3097
|
-
__name(_PutTargetsCommand, "PutTargetsCommand");
|
|
3098
|
-
var PutTargetsCommand = _PutTargetsCommand;
|
|
3099
3164
|
|
|
3100
3165
|
// src/commands/RemovePermissionCommand.ts
|
|
3101
3166
|
|
|
3102
3167
|
|
|
3103
3168
|
|
|
3104
|
-
var
|
|
3169
|
+
var RemovePermissionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3105
3170
|
return [
|
|
3106
3171
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3107
3172
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3108
3173
|
];
|
|
3109
3174
|
}).s("AWSEvents", "RemovePermission", {}).n("EventBridgeClient", "RemovePermissionCommand").f(void 0, void 0).ser(se_RemovePermissionCommand).de(de_RemovePermissionCommand).build() {
|
|
3175
|
+
static {
|
|
3176
|
+
__name(this, "RemovePermissionCommand");
|
|
3177
|
+
}
|
|
3110
3178
|
};
|
|
3111
|
-
__name(_RemovePermissionCommand, "RemovePermissionCommand");
|
|
3112
|
-
var RemovePermissionCommand = _RemovePermissionCommand;
|
|
3113
3179
|
|
|
3114
3180
|
// src/commands/RemoveTargetsCommand.ts
|
|
3115
3181
|
|
|
3116
3182
|
|
|
3117
3183
|
|
|
3118
|
-
var
|
|
3184
|
+
var RemoveTargetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3119
3185
|
return [
|
|
3120
3186
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3121
3187
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3122
3188
|
];
|
|
3123
3189
|
}).s("AWSEvents", "RemoveTargets", {}).n("EventBridgeClient", "RemoveTargetsCommand").f(void 0, void 0).ser(se_RemoveTargetsCommand).de(de_RemoveTargetsCommand).build() {
|
|
3190
|
+
static {
|
|
3191
|
+
__name(this, "RemoveTargetsCommand");
|
|
3192
|
+
}
|
|
3124
3193
|
};
|
|
3125
|
-
__name(_RemoveTargetsCommand, "RemoveTargetsCommand");
|
|
3126
|
-
var RemoveTargetsCommand = _RemoveTargetsCommand;
|
|
3127
3194
|
|
|
3128
3195
|
// src/commands/StartReplayCommand.ts
|
|
3129
3196
|
|
|
3130
3197
|
|
|
3131
3198
|
|
|
3132
|
-
var
|
|
3199
|
+
var StartReplayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3133
3200
|
return [
|
|
3134
3201
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3135
3202
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3136
3203
|
];
|
|
3137
3204
|
}).s("AWSEvents", "StartReplay", {}).n("EventBridgeClient", "StartReplayCommand").f(void 0, void 0).ser(se_StartReplayCommand).de(de_StartReplayCommand).build() {
|
|
3205
|
+
static {
|
|
3206
|
+
__name(this, "StartReplayCommand");
|
|
3207
|
+
}
|
|
3138
3208
|
};
|
|
3139
|
-
__name(_StartReplayCommand, "StartReplayCommand");
|
|
3140
|
-
var StartReplayCommand = _StartReplayCommand;
|
|
3141
3209
|
|
|
3142
3210
|
// src/commands/TagResourceCommand.ts
|
|
3143
3211
|
|
|
3144
3212
|
|
|
3145
3213
|
|
|
3146
|
-
var
|
|
3214
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3147
3215
|
return [
|
|
3148
3216
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3149
3217
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3150
3218
|
];
|
|
3151
3219
|
}).s("AWSEvents", "TagResource", {}).n("EventBridgeClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3220
|
+
static {
|
|
3221
|
+
__name(this, "TagResourceCommand");
|
|
3222
|
+
}
|
|
3152
3223
|
};
|
|
3153
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
3154
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
3155
3224
|
|
|
3156
3225
|
// src/commands/TestEventPatternCommand.ts
|
|
3157
3226
|
|
|
3158
3227
|
|
|
3159
3228
|
|
|
3160
|
-
var
|
|
3229
|
+
var TestEventPatternCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3161
3230
|
return [
|
|
3162
3231
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3163
3232
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3164
3233
|
];
|
|
3165
3234
|
}).s("AWSEvents", "TestEventPattern", {}).n("EventBridgeClient", "TestEventPatternCommand").f(void 0, void 0).ser(se_TestEventPatternCommand).de(de_TestEventPatternCommand).build() {
|
|
3235
|
+
static {
|
|
3236
|
+
__name(this, "TestEventPatternCommand");
|
|
3237
|
+
}
|
|
3166
3238
|
};
|
|
3167
|
-
__name(_TestEventPatternCommand, "TestEventPatternCommand");
|
|
3168
|
-
var TestEventPatternCommand = _TestEventPatternCommand;
|
|
3169
3239
|
|
|
3170
3240
|
// src/commands/UntagResourceCommand.ts
|
|
3171
3241
|
|
|
3172
3242
|
|
|
3173
3243
|
|
|
3174
|
-
var
|
|
3244
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3175
3245
|
return [
|
|
3176
3246
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3177
3247
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3178
3248
|
];
|
|
3179
3249
|
}).s("AWSEvents", "UntagResource", {}).n("EventBridgeClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3250
|
+
static {
|
|
3251
|
+
__name(this, "UntagResourceCommand");
|
|
3252
|
+
}
|
|
3180
3253
|
};
|
|
3181
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
3182
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
3183
3254
|
|
|
3184
3255
|
// src/commands/UpdateApiDestinationCommand.ts
|
|
3185
3256
|
|
|
3186
3257
|
|
|
3187
3258
|
|
|
3188
|
-
var
|
|
3259
|
+
var UpdateApiDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3189
3260
|
return [
|
|
3190
3261
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3191
3262
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3192
3263
|
];
|
|
3193
3264
|
}).s("AWSEvents", "UpdateApiDestination", {}).n("EventBridgeClient", "UpdateApiDestinationCommand").f(void 0, void 0).ser(se_UpdateApiDestinationCommand).de(de_UpdateApiDestinationCommand).build() {
|
|
3265
|
+
static {
|
|
3266
|
+
__name(this, "UpdateApiDestinationCommand");
|
|
3267
|
+
}
|
|
3194
3268
|
};
|
|
3195
|
-
__name(_UpdateApiDestinationCommand, "UpdateApiDestinationCommand");
|
|
3196
|
-
var UpdateApiDestinationCommand = _UpdateApiDestinationCommand;
|
|
3197
3269
|
|
|
3198
3270
|
// src/commands/UpdateArchiveCommand.ts
|
|
3199
3271
|
|
|
3200
3272
|
|
|
3201
3273
|
|
|
3202
|
-
var
|
|
3274
|
+
var UpdateArchiveCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3203
3275
|
return [
|
|
3204
3276
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3205
3277
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3206
3278
|
];
|
|
3207
3279
|
}).s("AWSEvents", "UpdateArchive", {}).n("EventBridgeClient", "UpdateArchiveCommand").f(void 0, void 0).ser(se_UpdateArchiveCommand).de(de_UpdateArchiveCommand).build() {
|
|
3280
|
+
static {
|
|
3281
|
+
__name(this, "UpdateArchiveCommand");
|
|
3282
|
+
}
|
|
3208
3283
|
};
|
|
3209
|
-
__name(_UpdateArchiveCommand, "UpdateArchiveCommand");
|
|
3210
|
-
var UpdateArchiveCommand = _UpdateArchiveCommand;
|
|
3211
3284
|
|
|
3212
3285
|
// src/commands/UpdateConnectionCommand.ts
|
|
3213
3286
|
|
|
3214
3287
|
|
|
3215
3288
|
|
|
3216
|
-
var
|
|
3289
|
+
var UpdateConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3217
3290
|
return [
|
|
3218
3291
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3219
3292
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3220
3293
|
];
|
|
3221
3294
|
}).s("AWSEvents", "UpdateConnection", {}).n("EventBridgeClient", "UpdateConnectionCommand").f(UpdateConnectionRequestFilterSensitiveLog, void 0).ser(se_UpdateConnectionCommand).de(de_UpdateConnectionCommand).build() {
|
|
3295
|
+
static {
|
|
3296
|
+
__name(this, "UpdateConnectionCommand");
|
|
3297
|
+
}
|
|
3222
3298
|
};
|
|
3223
|
-
__name(_UpdateConnectionCommand, "UpdateConnectionCommand");
|
|
3224
|
-
var UpdateConnectionCommand = _UpdateConnectionCommand;
|
|
3225
3299
|
|
|
3226
3300
|
// src/commands/UpdateEndpointCommand.ts
|
|
3227
3301
|
|
|
3228
3302
|
|
|
3229
3303
|
|
|
3230
|
-
var
|
|
3304
|
+
var UpdateEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3231
3305
|
return [
|
|
3232
3306
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3233
3307
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3234
3308
|
];
|
|
3235
3309
|
}).s("AWSEvents", "UpdateEndpoint", {}).n("EventBridgeClient", "UpdateEndpointCommand").f(void 0, void 0).ser(se_UpdateEndpointCommand).de(de_UpdateEndpointCommand).build() {
|
|
3310
|
+
static {
|
|
3311
|
+
__name(this, "UpdateEndpointCommand");
|
|
3312
|
+
}
|
|
3236
3313
|
};
|
|
3237
|
-
__name(_UpdateEndpointCommand, "UpdateEndpointCommand");
|
|
3238
|
-
var UpdateEndpointCommand = _UpdateEndpointCommand;
|
|
3239
3314
|
|
|
3240
3315
|
// src/commands/UpdateEventBusCommand.ts
|
|
3241
3316
|
|
|
3242
3317
|
|
|
3243
3318
|
|
|
3244
|
-
var
|
|
3319
|
+
var UpdateEventBusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3245
3320
|
return [
|
|
3246
3321
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3247
3322
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3248
3323
|
];
|
|
3249
3324
|
}).s("AWSEvents", "UpdateEventBus", {}).n("EventBridgeClient", "UpdateEventBusCommand").f(void 0, void 0).ser(se_UpdateEventBusCommand).de(de_UpdateEventBusCommand).build() {
|
|
3325
|
+
static {
|
|
3326
|
+
__name(this, "UpdateEventBusCommand");
|
|
3327
|
+
}
|
|
3250
3328
|
};
|
|
3251
|
-
__name(_UpdateEventBusCommand, "UpdateEventBusCommand");
|
|
3252
|
-
var UpdateEventBusCommand = _UpdateEventBusCommand;
|
|
3253
3329
|
|
|
3254
3330
|
// src/EventBridge.ts
|
|
3255
3331
|
var commands = {
|
|
@@ -3311,10 +3387,11 @@ var commands = {
|
|
|
3311
3387
|
UpdateEndpointCommand,
|
|
3312
3388
|
UpdateEventBusCommand
|
|
3313
3389
|
};
|
|
3314
|
-
var
|
|
3390
|
+
var EventBridge = class extends EventBridgeClient {
|
|
3391
|
+
static {
|
|
3392
|
+
__name(this, "EventBridge");
|
|
3393
|
+
}
|
|
3315
3394
|
};
|
|
3316
|
-
__name(_EventBridge, "EventBridge");
|
|
3317
|
-
var EventBridge = _EventBridge;
|
|
3318
3395
|
(0, import_smithy_client.createAggregatedClient)(commands, EventBridge);
|
|
3319
3396
|
// Annotate the CommonJS export names for ESM import in node:
|
|
3320
3397
|
|