@aws-sdk/client-pinpoint-email 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 (61) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/PinpointEmail.js +177 -170
  4. package/dist-es/PinpointEmailClient.js +28 -22
  5. package/dist-es/commands/CreateConfigurationSetCommand.js +28 -21
  6. package/dist-es/commands/CreateConfigurationSetEventDestinationCommand.js +28 -21
  7. package/dist-es/commands/CreateDedicatedIpPoolCommand.js +28 -21
  8. package/dist-es/commands/CreateDeliverabilityTestReportCommand.js +28 -21
  9. package/dist-es/commands/CreateEmailIdentityCommand.js +28 -21
  10. package/dist-es/commands/DeleteConfigurationSetCommand.js +28 -21
  11. package/dist-es/commands/DeleteConfigurationSetEventDestinationCommand.js +28 -21
  12. package/dist-es/commands/DeleteDedicatedIpPoolCommand.js +28 -21
  13. package/dist-es/commands/DeleteEmailIdentityCommand.js +28 -21
  14. package/dist-es/commands/GetAccountCommand.js +28 -21
  15. package/dist-es/commands/GetBlacklistReportsCommand.js +28 -21
  16. package/dist-es/commands/GetConfigurationSetCommand.js +28 -21
  17. package/dist-es/commands/GetConfigurationSetEventDestinationsCommand.js +28 -21
  18. package/dist-es/commands/GetDedicatedIpCommand.js +28 -21
  19. package/dist-es/commands/GetDedicatedIpsCommand.js +28 -21
  20. package/dist-es/commands/GetDeliverabilityDashboardOptionsCommand.js +28 -21
  21. package/dist-es/commands/GetDeliverabilityTestReportCommand.js +28 -21
  22. package/dist-es/commands/GetDomainDeliverabilityCampaignCommand.js +28 -21
  23. package/dist-es/commands/GetDomainStatisticsReportCommand.js +28 -21
  24. package/dist-es/commands/GetEmailIdentityCommand.js +28 -21
  25. package/dist-es/commands/ListConfigurationSetsCommand.js +28 -21
  26. package/dist-es/commands/ListDedicatedIpPoolsCommand.js +28 -21
  27. package/dist-es/commands/ListDeliverabilityTestReportsCommand.js +28 -21
  28. package/dist-es/commands/ListDomainDeliverabilityCampaignsCommand.js +28 -21
  29. package/dist-es/commands/ListEmailIdentitiesCommand.js +28 -21
  30. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  31. package/dist-es/commands/PutAccountDedicatedIpWarmupAttributesCommand.js +28 -21
  32. package/dist-es/commands/PutAccountSendingAttributesCommand.js +28 -21
  33. package/dist-es/commands/PutConfigurationSetDeliveryOptionsCommand.js +28 -21
  34. package/dist-es/commands/PutConfigurationSetReputationOptionsCommand.js +28 -21
  35. package/dist-es/commands/PutConfigurationSetSendingOptionsCommand.js +28 -21
  36. package/dist-es/commands/PutConfigurationSetTrackingOptionsCommand.js +28 -21
  37. package/dist-es/commands/PutDedicatedIpInPoolCommand.js +28 -21
  38. package/dist-es/commands/PutDedicatedIpWarmupAttributesCommand.js +28 -21
  39. package/dist-es/commands/PutDeliverabilityDashboardOptionCommand.js +28 -21
  40. package/dist-es/commands/PutEmailIdentityDkimAttributesCommand.js +28 -21
  41. package/dist-es/commands/PutEmailIdentityFeedbackAttributesCommand.js +28 -21
  42. package/dist-es/commands/PutEmailIdentityMailFromAttributesCommand.js +28 -21
  43. package/dist-es/commands/SendEmailCommand.js +28 -21
  44. package/dist-es/commands/TagResourceCommand.js +28 -21
  45. package/dist-es/commands/UntagResourceCommand.js +28 -21
  46. package/dist-es/commands/UpdateConfigurationSetEventDestinationCommand.js +28 -21
  47. package/dist-es/endpoints.js +8 -8
  48. package/dist-es/models/PinpointEmailServiceException.js +10 -5
  49. package/dist-es/models/models_0.js +231 -470
  50. package/dist-es/pagination/GetDedicatedIpsPaginator.js +68 -25
  51. package/dist-es/pagination/ListConfigurationSetsPaginator.js +68 -25
  52. package/dist-es/pagination/ListDedicatedIpPoolsPaginator.js +68 -25
  53. package/dist-es/pagination/ListDeliverabilityTestReportsPaginator.js +68 -25
  54. package/dist-es/pagination/ListDomainDeliverabilityCampaignsPaginator.js +68 -25
  55. package/dist-es/pagination/ListEmailIdentitiesPaginator.js +68 -25
  56. package/dist-es/protocols/Aws_restJson1.js +4133 -2963
  57. package/dist-es/runtimeConfig.browser.js +12 -26
  58. package/dist-es/runtimeConfig.js +12 -30
  59. package/dist-es/runtimeConfig.native.js +5 -8
  60. package/dist-es/runtimeConfig.shared.js +11 -8
  61. 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 { GetEmailIdentityRequestFilterSensitiveLog, GetEmailIdentityResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetEmailIdentityCommand, serializeAws_restJson1GetEmailIdentityCommand, } from "../protocols/Aws_restJson1";
5
- export class GetEmailIdentityCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetEmailIdentityCommand = (function (_super) {
7
+ __extends(GetEmailIdentityCommand, _super);
8
+ function GetEmailIdentityCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetEmailIdentityCommand.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 = "PinpointEmailClient";
15
- const commandName = "GetEmailIdentityCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "PinpointEmailClient";
18
+ var commandName = "GetEmailIdentityCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetEmailIdentityRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetEmailIdentityResponseFilterSensitiveLog,
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
+ GetEmailIdentityCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetEmailIdentityCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetEmailIdentityCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetEmailIdentityCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetEmailIdentityCommand;
38
+ }($Command));
39
+ export { GetEmailIdentityCommand };
@@ -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 { ListConfigurationSetsRequestFilterSensitiveLog, ListConfigurationSetsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListConfigurationSetsCommand, serializeAws_restJson1ListConfigurationSetsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListConfigurationSetsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListConfigurationSetsCommand = (function (_super) {
7
+ __extends(ListConfigurationSetsCommand, _super);
8
+ function ListConfigurationSetsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListConfigurationSetsCommand.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 = "PinpointEmailClient";
15
- const commandName = "ListConfigurationSetsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "PinpointEmailClient";
18
+ var commandName = "ListConfigurationSetsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListConfigurationSetsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListConfigurationSetsResponseFilterSensitiveLog,
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
+ ListConfigurationSetsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListConfigurationSetsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListConfigurationSetsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListConfigurationSetsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListConfigurationSetsCommand;
38
+ }($Command));
39
+ export { ListConfigurationSetsCommand };
@@ -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 { ListDedicatedIpPoolsRequestFilterSensitiveLog, ListDedicatedIpPoolsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListDedicatedIpPoolsCommand, serializeAws_restJson1ListDedicatedIpPoolsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListDedicatedIpPoolsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListDedicatedIpPoolsCommand = (function (_super) {
7
+ __extends(ListDedicatedIpPoolsCommand, _super);
8
+ function ListDedicatedIpPoolsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListDedicatedIpPoolsCommand.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 = "PinpointEmailClient";
15
- const commandName = "ListDedicatedIpPoolsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "PinpointEmailClient";
18
+ var commandName = "ListDedicatedIpPoolsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListDedicatedIpPoolsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListDedicatedIpPoolsResponseFilterSensitiveLog,
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
+ ListDedicatedIpPoolsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListDedicatedIpPoolsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListDedicatedIpPoolsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListDedicatedIpPoolsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListDedicatedIpPoolsCommand;
38
+ }($Command));
39
+ export { ListDedicatedIpPoolsCommand };
@@ -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 { ListDeliverabilityTestReportsRequestFilterSensitiveLog, ListDeliverabilityTestReportsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListDeliverabilityTestReportsCommand, serializeAws_restJson1ListDeliverabilityTestReportsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListDeliverabilityTestReportsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListDeliverabilityTestReportsCommand = (function (_super) {
7
+ __extends(ListDeliverabilityTestReportsCommand, _super);
8
+ function ListDeliverabilityTestReportsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListDeliverabilityTestReportsCommand.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 = "PinpointEmailClient";
15
- const commandName = "ListDeliverabilityTestReportsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "PinpointEmailClient";
18
+ var commandName = "ListDeliverabilityTestReportsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListDeliverabilityTestReportsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListDeliverabilityTestReportsResponseFilterSensitiveLog,
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
+ ListDeliverabilityTestReportsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListDeliverabilityTestReportsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListDeliverabilityTestReportsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListDeliverabilityTestReportsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListDeliverabilityTestReportsCommand;
38
+ }($Command));
39
+ export { ListDeliverabilityTestReportsCommand };
@@ -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 { ListDomainDeliverabilityCampaignsRequestFilterSensitiveLog, ListDomainDeliverabilityCampaignsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListDomainDeliverabilityCampaignsCommand, serializeAws_restJson1ListDomainDeliverabilityCampaignsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListDomainDeliverabilityCampaignsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListDomainDeliverabilityCampaignsCommand = (function (_super) {
7
+ __extends(ListDomainDeliverabilityCampaignsCommand, _super);
8
+ function ListDomainDeliverabilityCampaignsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListDomainDeliverabilityCampaignsCommand.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 = "PinpointEmailClient";
15
- const commandName = "ListDomainDeliverabilityCampaignsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "PinpointEmailClient";
18
+ var commandName = "ListDomainDeliverabilityCampaignsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListDomainDeliverabilityCampaignsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListDomainDeliverabilityCampaignsResponseFilterSensitiveLog,
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
+ ListDomainDeliverabilityCampaignsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListDomainDeliverabilityCampaignsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListDomainDeliverabilityCampaignsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListDomainDeliverabilityCampaignsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListDomainDeliverabilityCampaignsCommand;
38
+ }($Command));
39
+ export { ListDomainDeliverabilityCampaignsCommand };
@@ -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 { ListEmailIdentitiesRequestFilterSensitiveLog, ListEmailIdentitiesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListEmailIdentitiesCommand, serializeAws_restJson1ListEmailIdentitiesCommand, } from "../protocols/Aws_restJson1";
5
- export class ListEmailIdentitiesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListEmailIdentitiesCommand = (function (_super) {
7
+ __extends(ListEmailIdentitiesCommand, _super);
8
+ function ListEmailIdentitiesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListEmailIdentitiesCommand.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 = "PinpointEmailClient";
15
- const commandName = "ListEmailIdentitiesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "PinpointEmailClient";
18
+ var commandName = "ListEmailIdentitiesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListEmailIdentitiesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListEmailIdentitiesResponseFilterSensitiveLog,
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
+ ListEmailIdentitiesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListEmailIdentitiesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListEmailIdentitiesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListEmailIdentitiesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListEmailIdentitiesCommand;
38
+ }($Command));
39
+ export { ListEmailIdentitiesCommand };
@@ -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_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
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 = "PinpointEmailClient";
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 = "PinpointEmailClient";
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_restJson1ListTagsForResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListTagsForResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListTagsForResourceCommand(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 { PutAccountDedicatedIpWarmupAttributesRequestFilterSensitiveLog, PutAccountDedicatedIpWarmupAttributesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1PutAccountDedicatedIpWarmupAttributesCommand, serializeAws_restJson1PutAccountDedicatedIpWarmupAttributesCommand, } from "../protocols/Aws_restJson1";
5
- export class PutAccountDedicatedIpWarmupAttributesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var PutAccountDedicatedIpWarmupAttributesCommand = (function (_super) {
7
+ __extends(PutAccountDedicatedIpWarmupAttributesCommand, _super);
8
+ function PutAccountDedicatedIpWarmupAttributesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ PutAccountDedicatedIpWarmupAttributesCommand.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 = "PinpointEmailClient";
15
- const commandName = "PutAccountDedicatedIpWarmupAttributesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "PinpointEmailClient";
18
+ var commandName = "PutAccountDedicatedIpWarmupAttributesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: PutAccountDedicatedIpWarmupAttributesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: PutAccountDedicatedIpWarmupAttributesResponseFilterSensitiveLog,
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
+ PutAccountDedicatedIpWarmupAttributesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1PutAccountDedicatedIpWarmupAttributesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ PutAccountDedicatedIpWarmupAttributesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1PutAccountDedicatedIpWarmupAttributesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return PutAccountDedicatedIpWarmupAttributesCommand;
38
+ }($Command));
39
+ export { PutAccountDedicatedIpWarmupAttributesCommand };
@@ -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 { PutAccountSendingAttributesRequestFilterSensitiveLog, PutAccountSendingAttributesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1PutAccountSendingAttributesCommand, serializeAws_restJson1PutAccountSendingAttributesCommand, } from "../protocols/Aws_restJson1";
5
- export class PutAccountSendingAttributesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var PutAccountSendingAttributesCommand = (function (_super) {
7
+ __extends(PutAccountSendingAttributesCommand, _super);
8
+ function PutAccountSendingAttributesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ PutAccountSendingAttributesCommand.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 = "PinpointEmailClient";
15
- const commandName = "PutAccountSendingAttributesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "PinpointEmailClient";
18
+ var commandName = "PutAccountSendingAttributesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: PutAccountSendingAttributesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: PutAccountSendingAttributesResponseFilterSensitiveLog,
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
+ PutAccountSendingAttributesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1PutAccountSendingAttributesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ PutAccountSendingAttributesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1PutAccountSendingAttributesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return PutAccountSendingAttributesCommand;
38
+ }($Command));
39
+ export { PutAccountSendingAttributesCommand };
@@ -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 { PutConfigurationSetDeliveryOptionsRequestFilterSensitiveLog, PutConfigurationSetDeliveryOptionsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1PutConfigurationSetDeliveryOptionsCommand, serializeAws_restJson1PutConfigurationSetDeliveryOptionsCommand, } from "../protocols/Aws_restJson1";
5
- export class PutConfigurationSetDeliveryOptionsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var PutConfigurationSetDeliveryOptionsCommand = (function (_super) {
7
+ __extends(PutConfigurationSetDeliveryOptionsCommand, _super);
8
+ function PutConfigurationSetDeliveryOptionsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ PutConfigurationSetDeliveryOptionsCommand.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 = "PinpointEmailClient";
15
- const commandName = "PutConfigurationSetDeliveryOptionsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "PinpointEmailClient";
18
+ var commandName = "PutConfigurationSetDeliveryOptionsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: PutConfigurationSetDeliveryOptionsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: PutConfigurationSetDeliveryOptionsResponseFilterSensitiveLog,
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
+ PutConfigurationSetDeliveryOptionsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1PutConfigurationSetDeliveryOptionsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ PutConfigurationSetDeliveryOptionsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1PutConfigurationSetDeliveryOptionsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return PutConfigurationSetDeliveryOptionsCommand;
38
+ }($Command));
39
+ export { PutConfigurationSetDeliveryOptionsCommand };