@aws-sdk/client-cloudwatch-events 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 (64) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/CloudWatchEvents.js +213 -206
  4. package/dist-es/CloudWatchEventsClient.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/CreateEventBusCommand.js +28 -21
  11. package/dist-es/commands/CreatePartnerEventSourceCommand.js +28 -21
  12. package/dist-es/commands/DeactivateEventSourceCommand.js +29 -22
  13. package/dist-es/commands/DeauthorizeConnectionCommand.js +28 -21
  14. package/dist-es/commands/DeleteApiDestinationCommand.js +28 -21
  15. package/dist-es/commands/DeleteArchiveCommand.js +28 -21
  16. package/dist-es/commands/DeleteConnectionCommand.js +28 -21
  17. package/dist-es/commands/DeleteEventBusCommand.js +29 -22
  18. package/dist-es/commands/DeletePartnerEventSourceCommand.js +29 -22
  19. package/dist-es/commands/DeleteRuleCommand.js +29 -22
  20. package/dist-es/commands/DescribeApiDestinationCommand.js +28 -21
  21. package/dist-es/commands/DescribeArchiveCommand.js +28 -21
  22. package/dist-es/commands/DescribeConnectionCommand.js +28 -21
  23. package/dist-es/commands/DescribeEventBusCommand.js +28 -21
  24. package/dist-es/commands/DescribeEventSourceCommand.js +28 -21
  25. package/dist-es/commands/DescribePartnerEventSourceCommand.js +28 -21
  26. package/dist-es/commands/DescribeReplayCommand.js +28 -21
  27. package/dist-es/commands/DescribeRuleCommand.js +28 -21
  28. package/dist-es/commands/DisableRuleCommand.js +29 -22
  29. package/dist-es/commands/EnableRuleCommand.js +29 -22
  30. package/dist-es/commands/ListApiDestinationsCommand.js +28 -21
  31. package/dist-es/commands/ListArchivesCommand.js +28 -21
  32. package/dist-es/commands/ListConnectionsCommand.js +28 -21
  33. package/dist-es/commands/ListEventBusesCommand.js +28 -21
  34. package/dist-es/commands/ListEventSourcesCommand.js +28 -21
  35. package/dist-es/commands/ListPartnerEventSourceAccountsCommand.js +28 -21
  36. package/dist-es/commands/ListPartnerEventSourcesCommand.js +28 -21
  37. package/dist-es/commands/ListReplaysCommand.js +28 -21
  38. package/dist-es/commands/ListRuleNamesByTargetCommand.js +28 -21
  39. package/dist-es/commands/ListRulesCommand.js +28 -21
  40. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  41. package/dist-es/commands/ListTargetsByRuleCommand.js +28 -21
  42. package/dist-es/commands/PutEventsCommand.js +28 -21
  43. package/dist-es/commands/PutPartnerEventsCommand.js +28 -21
  44. package/dist-es/commands/PutPermissionCommand.js +29 -22
  45. package/dist-es/commands/PutRuleCommand.js +28 -21
  46. package/dist-es/commands/PutTargetsCommand.js +28 -21
  47. package/dist-es/commands/RemovePermissionCommand.js +29 -22
  48. package/dist-es/commands/RemoveTargetsCommand.js +28 -21
  49. package/dist-es/commands/StartReplayCommand.js +28 -21
  50. package/dist-es/commands/TagResourceCommand.js +28 -21
  51. package/dist-es/commands/TestEventPatternCommand.js +28 -21
  52. package/dist-es/commands/UntagResourceCommand.js +28 -21
  53. package/dist-es/commands/UpdateApiDestinationCommand.js +28 -21
  54. package/dist-es/commands/UpdateArchiveCommand.js +28 -21
  55. package/dist-es/commands/UpdateConnectionCommand.js +28 -21
  56. package/dist-es/endpoints.js +8 -8
  57. package/dist-es/models/CloudWatchEventsServiceException.js +10 -5
  58. package/dist-es/models/models_0.js +273 -574
  59. package/dist-es/protocols/Aws_json1_1.js +4347 -3530
  60. package/dist-es/runtimeConfig.browser.js +12 -26
  61. package/dist-es/runtimeConfig.js +12 -30
  62. package/dist-es/runtimeConfig.native.js +5 -8
  63. package/dist-es/runtimeConfig.shared.js +11 -8
  64. 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 { 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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 = "CloudWatchEventsClient";
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 };
@@ -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 { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListTagsForResourceCommand, serializeAws_json1_1ListTagsForResourceCommand, } from "../protocols/Aws_json1_1";
5
- export class ListTagsForResourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListTagsForResourceCommand = (function (_super) {
7
+ __extends(ListTagsForResourceCommand, _super);
8
+ function ListTagsForResourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListTagsForResourceCommand.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 = "CloudWatchEventsClient";
15
- const commandName = "ListTagsForResourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CloudWatchEventsClient";
18
+ var commandName = "ListTagsForResourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
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
+ ListTagsForResourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListTagsForResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListTagsForResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListTagsForResourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListTagsForResourceCommand;
38
+ }($Command));
39
+ export { ListTagsForResourceCommand };
@@ -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 { ListTargetsByRuleRequestFilterSensitiveLog, ListTargetsByRuleResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListTargetsByRuleCommand, serializeAws_json1_1ListTargetsByRuleCommand, } from "../protocols/Aws_json1_1";
5
- export class ListTargetsByRuleCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListTargetsByRuleCommand = (function (_super) {
7
+ __extends(ListTargetsByRuleCommand, _super);
8
+ function ListTargetsByRuleCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListTargetsByRuleCommand.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 = "CloudWatchEventsClient";
15
- const commandName = "ListTargetsByRuleCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CloudWatchEventsClient";
18
+ var commandName = "ListTargetsByRuleCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListTargetsByRuleRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListTargetsByRuleResponseFilterSensitiveLog,
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
+ ListTargetsByRuleCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListTargetsByRuleCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListTargetsByRuleCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListTargetsByRuleCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListTargetsByRuleCommand;
38
+ }($Command));
39
+ export { ListTargetsByRuleCommand };
@@ -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 { PutEventsRequestFilterSensitiveLog, PutEventsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1PutEventsCommand, serializeAws_json1_1PutEventsCommand } from "../protocols/Aws_json1_1";
5
- export class PutEventsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var PutEventsCommand = (function (_super) {
7
+ __extends(PutEventsCommand, _super);
8
+ function PutEventsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ PutEventsCommand.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 = "CloudWatchEventsClient";
15
- const commandName = "PutEventsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CloudWatchEventsClient";
18
+ var commandName = "PutEventsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: PutEventsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: PutEventsResponseFilterSensitiveLog,
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
+ PutEventsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1PutEventsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ PutEventsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1PutEventsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return PutEventsCommand;
38
+ }($Command));
39
+ export { PutEventsCommand };
@@ -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 { PutPartnerEventsRequestFilterSensitiveLog, PutPartnerEventsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1PutPartnerEventsCommand, serializeAws_json1_1PutPartnerEventsCommand, } from "../protocols/Aws_json1_1";
5
- export class PutPartnerEventsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var PutPartnerEventsCommand = (function (_super) {
7
+ __extends(PutPartnerEventsCommand, _super);
8
+ function PutPartnerEventsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ PutPartnerEventsCommand.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 = "CloudWatchEventsClient";
15
- const commandName = "PutPartnerEventsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CloudWatchEventsClient";
18
+ var commandName = "PutPartnerEventsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: PutPartnerEventsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: PutPartnerEventsResponseFilterSensitiveLog,
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
+ PutPartnerEventsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1PutPartnerEventsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ PutPartnerEventsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1PutPartnerEventsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return PutPartnerEventsCommand;
38
+ }($Command));
39
+ export { PutPartnerEventsCommand };