@aws-sdk/client-eventbridge 3.183.0 → 3.185.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.
Files changed (69) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/EventBridge.js +233 -226
  4. package/dist-es/EventBridgeClient.js +28 -22
  5. package/dist-es/commands/ActivateEventSourceCommand.js +29 -22
  6. package/dist-es/commands/CancelReplayCommand.js +28 -21
  7. package/dist-es/commands/CreateApiDestinationCommand.js +28 -21
  8. package/dist-es/commands/CreateArchiveCommand.js +28 -21
  9. package/dist-es/commands/CreateConnectionCommand.js +28 -21
  10. package/dist-es/commands/CreateEndpointCommand.js +28 -21
  11. package/dist-es/commands/CreateEventBusCommand.js +28 -21
  12. package/dist-es/commands/CreatePartnerEventSourceCommand.js +28 -21
  13. package/dist-es/commands/DeactivateEventSourceCommand.js +29 -22
  14. package/dist-es/commands/DeauthorizeConnectionCommand.js +28 -21
  15. package/dist-es/commands/DeleteApiDestinationCommand.js +28 -21
  16. package/dist-es/commands/DeleteArchiveCommand.js +28 -21
  17. package/dist-es/commands/DeleteConnectionCommand.js +28 -21
  18. package/dist-es/commands/DeleteEndpointCommand.js +28 -21
  19. package/dist-es/commands/DeleteEventBusCommand.js +29 -22
  20. package/dist-es/commands/DeletePartnerEventSourceCommand.js +29 -22
  21. package/dist-es/commands/DeleteRuleCommand.js +29 -22
  22. package/dist-es/commands/DescribeApiDestinationCommand.js +28 -21
  23. package/dist-es/commands/DescribeArchiveCommand.js +28 -21
  24. package/dist-es/commands/DescribeConnectionCommand.js +28 -21
  25. package/dist-es/commands/DescribeEndpointCommand.js +28 -21
  26. package/dist-es/commands/DescribeEventBusCommand.js +28 -21
  27. package/dist-es/commands/DescribeEventSourceCommand.js +28 -21
  28. package/dist-es/commands/DescribePartnerEventSourceCommand.js +28 -21
  29. package/dist-es/commands/DescribeReplayCommand.js +28 -21
  30. package/dist-es/commands/DescribeRuleCommand.js +28 -21
  31. package/dist-es/commands/DisableRuleCommand.js +29 -22
  32. package/dist-es/commands/EnableRuleCommand.js +29 -22
  33. package/dist-es/commands/ListApiDestinationsCommand.js +28 -21
  34. package/dist-es/commands/ListArchivesCommand.js +28 -21
  35. package/dist-es/commands/ListConnectionsCommand.js +28 -21
  36. package/dist-es/commands/ListEndpointsCommand.js +28 -21
  37. package/dist-es/commands/ListEventBusesCommand.js +28 -21
  38. package/dist-es/commands/ListEventSourcesCommand.js +28 -21
  39. package/dist-es/commands/ListPartnerEventSourceAccountsCommand.js +28 -21
  40. package/dist-es/commands/ListPartnerEventSourcesCommand.js +28 -21
  41. package/dist-es/commands/ListReplaysCommand.js +28 -21
  42. package/dist-es/commands/ListRuleNamesByTargetCommand.js +28 -21
  43. package/dist-es/commands/ListRulesCommand.js +28 -21
  44. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  45. package/dist-es/commands/ListTargetsByRuleCommand.js +28 -21
  46. package/dist-es/commands/PutEventsCommand.js +28 -21
  47. package/dist-es/commands/PutPartnerEventsCommand.js +28 -21
  48. package/dist-es/commands/PutPermissionCommand.js +29 -22
  49. package/dist-es/commands/PutRuleCommand.js +28 -21
  50. package/dist-es/commands/PutTargetsCommand.js +28 -21
  51. package/dist-es/commands/RemovePermissionCommand.js +29 -22
  52. package/dist-es/commands/RemoveTargetsCommand.js +28 -21
  53. package/dist-es/commands/StartReplayCommand.js +28 -21
  54. package/dist-es/commands/TagResourceCommand.js +28 -21
  55. package/dist-es/commands/TestEventPatternCommand.js +28 -21
  56. package/dist-es/commands/UntagResourceCommand.js +28 -21
  57. package/dist-es/commands/UpdateApiDestinationCommand.js +28 -21
  58. package/dist-es/commands/UpdateArchiveCommand.js +28 -21
  59. package/dist-es/commands/UpdateConnectionCommand.js +28 -21
  60. package/dist-es/commands/UpdateEndpointCommand.js +28 -21
  61. package/dist-es/endpoints.js +8 -8
  62. package/dist-es/models/EventBridgeServiceException.js +10 -5
  63. package/dist-es/models/models_0.js +290 -625
  64. package/dist-es/protocols/Aws_json1_1.js +4754 -3868
  65. package/dist-es/runtimeConfig.browser.js +12 -26
  66. package/dist-es/runtimeConfig.js +12 -30
  67. package/dist-es/runtimeConfig.native.js +5 -8
  68. package/dist-es/runtimeConfig.shared.js +12 -9
  69. package/package.json +5 -5
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListArchivesRequestFilterSensitiveLog, ListArchivesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListArchivesCommand, serializeAws_json1_1ListArchivesCommand, } from "../protocols/Aws_json1_1";
5
- export class ListArchivesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListArchivesCommand = (function (_super) {
7
+ __extends(ListArchivesCommand, _super);
8
+ function ListArchivesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListArchivesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EventBridgeClient";
15
- const commandName = "ListArchivesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EventBridgeClient";
18
+ var commandName = "ListArchivesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListArchivesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListArchivesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListArchivesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListArchivesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListArchivesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListArchivesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListArchivesCommand;
38
+ }($Command));
39
+ export { ListArchivesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListConnectionsRequestFilterSensitiveLog, ListConnectionsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListConnectionsCommand, serializeAws_json1_1ListConnectionsCommand, } from "../protocols/Aws_json1_1";
5
- export class ListConnectionsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListConnectionsCommand = (function (_super) {
7
+ __extends(ListConnectionsCommand, _super);
8
+ function ListConnectionsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListConnectionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EventBridgeClient";
15
- const commandName = "ListConnectionsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EventBridgeClient";
18
+ var commandName = "ListConnectionsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListConnectionsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListConnectionsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListConnectionsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListConnectionsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListConnectionsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListConnectionsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListConnectionsCommand;
38
+ }($Command));
39
+ export { ListConnectionsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListEndpointsRequestFilterSensitiveLog, ListEndpointsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListEndpointsCommand, serializeAws_json1_1ListEndpointsCommand, } from "../protocols/Aws_json1_1";
5
- export class ListEndpointsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListEndpointsCommand = (function (_super) {
7
+ __extends(ListEndpointsCommand, _super);
8
+ function ListEndpointsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListEndpointsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EventBridgeClient";
15
- const commandName = "ListEndpointsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EventBridgeClient";
18
+ var commandName = "ListEndpointsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListEndpointsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListEndpointsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListEndpointsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListEndpointsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListEndpointsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListEndpointsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListEndpointsCommand;
38
+ }($Command));
39
+ export { ListEndpointsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListEventBusesRequestFilterSensitiveLog, ListEventBusesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListEventBusesCommand, serializeAws_json1_1ListEventBusesCommand, } from "../protocols/Aws_json1_1";
5
- export class ListEventBusesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListEventBusesCommand = (function (_super) {
7
+ __extends(ListEventBusesCommand, _super);
8
+ function ListEventBusesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListEventBusesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EventBridgeClient";
15
- const commandName = "ListEventBusesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EventBridgeClient";
18
+ var commandName = "ListEventBusesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListEventBusesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListEventBusesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListEventBusesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListEventBusesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListEventBusesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListEventBusesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListEventBusesCommand;
38
+ }($Command));
39
+ export { ListEventBusesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListEventSourcesRequestFilterSensitiveLog, ListEventSourcesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListEventSourcesCommand, serializeAws_json1_1ListEventSourcesCommand, } from "../protocols/Aws_json1_1";
5
- export class ListEventSourcesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListEventSourcesCommand = (function (_super) {
7
+ __extends(ListEventSourcesCommand, _super);
8
+ function ListEventSourcesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListEventSourcesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EventBridgeClient";
15
- const commandName = "ListEventSourcesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EventBridgeClient";
18
+ var commandName = "ListEventSourcesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListEventSourcesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListEventSourcesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListEventSourcesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListEventSourcesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListEventSourcesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListEventSourcesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListEventSourcesCommand;
38
+ }($Command));
39
+ export { ListEventSourcesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListPartnerEventSourceAccountsRequestFilterSensitiveLog, ListPartnerEventSourceAccountsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListPartnerEventSourceAccountsCommand, serializeAws_json1_1ListPartnerEventSourceAccountsCommand, } from "../protocols/Aws_json1_1";
5
- export class ListPartnerEventSourceAccountsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListPartnerEventSourceAccountsCommand = (function (_super) {
7
+ __extends(ListPartnerEventSourceAccountsCommand, _super);
8
+ function ListPartnerEventSourceAccountsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListPartnerEventSourceAccountsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EventBridgeClient";
15
- const commandName = "ListPartnerEventSourceAccountsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EventBridgeClient";
18
+ var commandName = "ListPartnerEventSourceAccountsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListPartnerEventSourceAccountsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListPartnerEventSourceAccountsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListPartnerEventSourceAccountsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListPartnerEventSourceAccountsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListPartnerEventSourceAccountsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListPartnerEventSourceAccountsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListPartnerEventSourceAccountsCommand;
38
+ }($Command));
39
+ export { ListPartnerEventSourceAccountsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListPartnerEventSourcesRequestFilterSensitiveLog, ListPartnerEventSourcesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListPartnerEventSourcesCommand, serializeAws_json1_1ListPartnerEventSourcesCommand, } from "../protocols/Aws_json1_1";
5
- export class ListPartnerEventSourcesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListPartnerEventSourcesCommand = (function (_super) {
7
+ __extends(ListPartnerEventSourcesCommand, _super);
8
+ function ListPartnerEventSourcesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListPartnerEventSourcesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EventBridgeClient";
15
- const commandName = "ListPartnerEventSourcesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EventBridgeClient";
18
+ var commandName = "ListPartnerEventSourcesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListPartnerEventSourcesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListPartnerEventSourcesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListPartnerEventSourcesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListPartnerEventSourcesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListPartnerEventSourcesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListPartnerEventSourcesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListPartnerEventSourcesCommand;
38
+ }($Command));
39
+ export { ListPartnerEventSourcesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListReplaysRequestFilterSensitiveLog, ListReplaysResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListReplaysCommand, serializeAws_json1_1ListReplaysCommand, } from "../protocols/Aws_json1_1";
5
- export class ListReplaysCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListReplaysCommand = (function (_super) {
7
+ __extends(ListReplaysCommand, _super);
8
+ function ListReplaysCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListReplaysCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EventBridgeClient";
15
- const commandName = "ListReplaysCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EventBridgeClient";
18
+ var commandName = "ListReplaysCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListReplaysRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListReplaysResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListReplaysCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListReplaysCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListReplaysCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListReplaysCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListReplaysCommand;
38
+ }($Command));
39
+ export { ListReplaysCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListRuleNamesByTargetRequestFilterSensitiveLog, ListRuleNamesByTargetResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListRuleNamesByTargetCommand, serializeAws_json1_1ListRuleNamesByTargetCommand, } from "../protocols/Aws_json1_1";
5
- export class ListRuleNamesByTargetCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListRuleNamesByTargetCommand = (function (_super) {
7
+ __extends(ListRuleNamesByTargetCommand, _super);
8
+ function ListRuleNamesByTargetCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListRuleNamesByTargetCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EventBridgeClient";
15
- const commandName = "ListRuleNamesByTargetCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EventBridgeClient";
18
+ var commandName = "ListRuleNamesByTargetCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListRuleNamesByTargetRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListRuleNamesByTargetResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListRuleNamesByTargetCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListRuleNamesByTargetCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListRuleNamesByTargetCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListRuleNamesByTargetCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListRuleNamesByTargetCommand;
38
+ }($Command));
39
+ export { ListRuleNamesByTargetCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListRulesRequestFilterSensitiveLog, ListRulesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListRulesCommand, serializeAws_json1_1ListRulesCommand } from "../protocols/Aws_json1_1";
5
- export class ListRulesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListRulesCommand = (function (_super) {
7
+ __extends(ListRulesCommand, _super);
8
+ function ListRulesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListRulesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EventBridgeClient";
15
- const commandName = "ListRulesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EventBridgeClient";
18
+ var commandName = "ListRulesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListRulesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListRulesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListRulesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListRulesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListRulesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListRulesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListRulesCommand;
38
+ }($Command));
39
+ export { ListRulesCommand };