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