@aws-sdk/client-cloudwatch-events 3.181.0 → 3.183.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 (63) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/CloudWatchEvents.js +206 -213
  3. package/dist-es/CloudWatchEventsClient.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/CreateEventBusCommand.js +21 -28
  10. package/dist-es/commands/CreatePartnerEventSourceCommand.js +21 -28
  11. package/dist-es/commands/DeactivateEventSourceCommand.js +22 -29
  12. package/dist-es/commands/DeauthorizeConnectionCommand.js +21 -28
  13. package/dist-es/commands/DeleteApiDestinationCommand.js +21 -28
  14. package/dist-es/commands/DeleteArchiveCommand.js +21 -28
  15. package/dist-es/commands/DeleteConnectionCommand.js +21 -28
  16. package/dist-es/commands/DeleteEventBusCommand.js +22 -29
  17. package/dist-es/commands/DeletePartnerEventSourceCommand.js +22 -29
  18. package/dist-es/commands/DeleteRuleCommand.js +22 -29
  19. package/dist-es/commands/DescribeApiDestinationCommand.js +21 -28
  20. package/dist-es/commands/DescribeArchiveCommand.js +21 -28
  21. package/dist-es/commands/DescribeConnectionCommand.js +21 -28
  22. package/dist-es/commands/DescribeEventBusCommand.js +21 -28
  23. package/dist-es/commands/DescribeEventSourceCommand.js +21 -28
  24. package/dist-es/commands/DescribePartnerEventSourceCommand.js +21 -28
  25. package/dist-es/commands/DescribeReplayCommand.js +21 -28
  26. package/dist-es/commands/DescribeRuleCommand.js +21 -28
  27. package/dist-es/commands/DisableRuleCommand.js +22 -29
  28. package/dist-es/commands/EnableRuleCommand.js +22 -29
  29. package/dist-es/commands/ListApiDestinationsCommand.js +21 -28
  30. package/dist-es/commands/ListArchivesCommand.js +21 -28
  31. package/dist-es/commands/ListConnectionsCommand.js +21 -28
  32. package/dist-es/commands/ListEventBusesCommand.js +21 -28
  33. package/dist-es/commands/ListEventSourcesCommand.js +21 -28
  34. package/dist-es/commands/ListPartnerEventSourceAccountsCommand.js +21 -28
  35. package/dist-es/commands/ListPartnerEventSourcesCommand.js +21 -28
  36. package/dist-es/commands/ListReplaysCommand.js +21 -28
  37. package/dist-es/commands/ListRuleNamesByTargetCommand.js +21 -28
  38. package/dist-es/commands/ListRulesCommand.js +21 -28
  39. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  40. package/dist-es/commands/ListTargetsByRuleCommand.js +21 -28
  41. package/dist-es/commands/PutEventsCommand.js +21 -28
  42. package/dist-es/commands/PutPartnerEventsCommand.js +21 -28
  43. package/dist-es/commands/PutPermissionCommand.js +22 -29
  44. package/dist-es/commands/PutRuleCommand.js +21 -28
  45. package/dist-es/commands/PutTargetsCommand.js +21 -28
  46. package/dist-es/commands/RemovePermissionCommand.js +22 -29
  47. package/dist-es/commands/RemoveTargetsCommand.js +21 -28
  48. package/dist-es/commands/StartReplayCommand.js +21 -28
  49. package/dist-es/commands/TagResourceCommand.js +21 -28
  50. package/dist-es/commands/TestEventPatternCommand.js +21 -28
  51. package/dist-es/commands/UntagResourceCommand.js +21 -28
  52. package/dist-es/commands/UpdateApiDestinationCommand.js +21 -28
  53. package/dist-es/commands/UpdateArchiveCommand.js +21 -28
  54. package/dist-es/commands/UpdateConnectionCommand.js +21 -28
  55. package/dist-es/endpoints.js +8 -8
  56. package/dist-es/models/CloudWatchEventsServiceException.js +5 -10
  57. package/dist-es/models/models_0.js +574 -273
  58. package/dist-es/protocols/Aws_json1_1.js +3530 -4347
  59. package/dist-es/runtimeConfig.browser.js +26 -12
  60. package/dist-es/runtimeConfig.js +30 -12
  61. package/dist-es/runtimeConfig.native.js +8 -5
  62. package/dist-es/runtimeConfig.shared.js +8 -11
  63. package/package.json +33 -33
@@ -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 { DescribeEventSourceRequestFilterSensitiveLog, DescribeEventSourceResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1DescribeEventSourceCommand, serializeAws_json1_1DescribeEventSourceCommand, } from "../protocols/Aws_json1_1";
6
- var DescribeEventSourceCommand = (function (_super) {
7
- __extends(DescribeEventSourceCommand, _super);
8
- function DescribeEventSourceCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DescribeEventSourceCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DescribeEventSourceCommand.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 = "CloudWatchEventsClient";
18
- var commandName = "DescribeEventSourceCommand";
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 = "CloudWatchEventsClient";
15
+ const commandName = "DescribeEventSourceCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DescribeEventSourceRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DescribeEventSourceResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DescribeEventSourceCommand.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_1DescribeEventSourceCommand(input, context);
33
- };
34
- DescribeEventSourceCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1DescribeEventSourceCommand(output, context);
36
- };
37
- return DescribeEventSourceCommand;
38
- }($Command));
39
- export { DescribeEventSourceCommand };
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 { DescribePartnerEventSourceRequestFilterSensitiveLog, DescribePartnerEventSourceResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1DescribePartnerEventSourceCommand, serializeAws_json1_1DescribePartnerEventSourceCommand, } from "../protocols/Aws_json1_1";
6
- var DescribePartnerEventSourceCommand = (function (_super) {
7
- __extends(DescribePartnerEventSourceCommand, _super);
8
- function DescribePartnerEventSourceCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DescribePartnerEventSourceCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DescribePartnerEventSourceCommand.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 = "CloudWatchEventsClient";
18
- var commandName = "DescribePartnerEventSourceCommand";
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 = "CloudWatchEventsClient";
15
+ const commandName = "DescribePartnerEventSourceCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DescribePartnerEventSourceRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DescribePartnerEventSourceResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DescribePartnerEventSourceCommand.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_1DescribePartnerEventSourceCommand(input, context);
33
- };
34
- DescribePartnerEventSourceCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1DescribePartnerEventSourceCommand(output, context);
36
- };
37
- return DescribePartnerEventSourceCommand;
38
- }($Command));
39
- export { DescribePartnerEventSourceCommand };
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 { DescribeReplayRequestFilterSensitiveLog, DescribeReplayResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1DescribeReplayCommand, serializeAws_json1_1DescribeReplayCommand, } from "../protocols/Aws_json1_1";
6
- var DescribeReplayCommand = (function (_super) {
7
- __extends(DescribeReplayCommand, _super);
8
- function DescribeReplayCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DescribeReplayCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DescribeReplayCommand.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 = "CloudWatchEventsClient";
18
- var commandName = "DescribeReplayCommand";
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 = "CloudWatchEventsClient";
15
+ const commandName = "DescribeReplayCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DescribeReplayRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DescribeReplayResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DescribeReplayCommand.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_1DescribeReplayCommand(input, context);
33
- };
34
- DescribeReplayCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1DescribeReplayCommand(output, context);
36
- };
37
- return DescribeReplayCommand;
38
- }($Command));
39
- export { DescribeReplayCommand };
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 { DescribeRuleRequestFilterSensitiveLog, DescribeRuleResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1DescribeRuleCommand, serializeAws_json1_1DescribeRuleCommand, } from "../protocols/Aws_json1_1";
6
- var DescribeRuleCommand = (function (_super) {
7
- __extends(DescribeRuleCommand, _super);
8
- function DescribeRuleCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DescribeRuleCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DescribeRuleCommand.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 = "CloudWatchEventsClient";
18
- var commandName = "DescribeRuleCommand";
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 = "CloudWatchEventsClient";
15
+ const commandName = "DescribeRuleCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DescribeRuleRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DescribeRuleResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DescribeRuleCommand.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_1DescribeRuleCommand(input, context);
33
- };
34
- DescribeRuleCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1DescribeRuleCommand(output, context);
36
- };
37
- return DescribeRuleCommand;
38
- }($Command));
39
- export { DescribeRuleCommand };
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 { DisableRuleRequestFilterSensitiveLog } from "../models/models_0";
5
4
  import { deserializeAws_json1_1DisableRuleCommand, serializeAws_json1_1DisableRuleCommand, } from "../protocols/Aws_json1_1";
6
- var DisableRuleCommand = (function (_super) {
7
- __extends(DisableRuleCommand, _super);
8
- function DisableRuleCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DisableRuleCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DisableRuleCommand.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 = "CloudWatchEventsClient";
18
- var commandName = "DisableRuleCommand";
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 = "CloudWatchEventsClient";
15
+ const commandName = "DisableRuleCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DisableRuleRequestFilterSensitiveLog,
24
- outputFilterSensitiveLog: function (output) { return output; },
21
+ outputFilterSensitiveLog: (output) => output,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DisableRuleCommand.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_1DisableRuleCommand(input, context);
33
- };
34
- DisableRuleCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1DisableRuleCommand(output, context);
36
- };
37
- return DisableRuleCommand;
38
- }($Command));
39
- export { DisableRuleCommand };
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 { EnableRuleRequestFilterSensitiveLog } from "../models/models_0";
5
4
  import { deserializeAws_json1_1EnableRuleCommand, serializeAws_json1_1EnableRuleCommand, } from "../protocols/Aws_json1_1";
6
- var EnableRuleCommand = (function (_super) {
7
- __extends(EnableRuleCommand, _super);
8
- function EnableRuleCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class EnableRuleCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- EnableRuleCommand.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 = "CloudWatchEventsClient";
18
- var commandName = "EnableRuleCommand";
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 = "CloudWatchEventsClient";
15
+ const commandName = "EnableRuleCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: EnableRuleRequestFilterSensitiveLog,
24
- outputFilterSensitiveLog: function (output) { return output; },
21
+ outputFilterSensitiveLog: (output) => output,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- EnableRuleCommand.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_1EnableRuleCommand(input, context);
33
- };
34
- EnableRuleCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1EnableRuleCommand(output, context);
36
- };
37
- return EnableRuleCommand;
38
- }($Command));
39
- export { EnableRuleCommand };
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 { ListApiDestinationsRequestFilterSensitiveLog, ListApiDestinationsResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1ListApiDestinationsCommand, serializeAws_json1_1ListApiDestinationsCommand, } from "../protocols/Aws_json1_1";
6
- var ListApiDestinationsCommand = (function (_super) {
7
- __extends(ListApiDestinationsCommand, _super);
8
- function ListApiDestinationsCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class ListApiDestinationsCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- ListApiDestinationsCommand.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 = "CloudWatchEventsClient";
18
- var commandName = "ListApiDestinationsCommand";
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 = "CloudWatchEventsClient";
15
+ const commandName = "ListApiDestinationsCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: ListApiDestinationsRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: ListApiDestinationsResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- ListApiDestinationsCommand.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_1ListApiDestinationsCommand(input, context);
33
- };
34
- ListApiDestinationsCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1ListApiDestinationsCommand(output, context);
36
- };
37
- return ListApiDestinationsCommand;
38
- }($Command));
39
- export { ListApiDestinationsCommand };
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 { 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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 { 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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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
+ }