@aws-sdk/client-amplifybackend 3.180.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 (44) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +37 -31
  3. package/dist-es/AmplifyBackend.js +126 -133
  4. package/dist-es/AmplifyBackendClient.js +22 -28
  5. package/dist-es/commands/CloneBackendCommand.js +21 -28
  6. package/dist-es/commands/CreateBackendAPICommand.js +21 -28
  7. package/dist-es/commands/CreateBackendAuthCommand.js +21 -28
  8. package/dist-es/commands/CreateBackendCommand.js +21 -28
  9. package/dist-es/commands/CreateBackendConfigCommand.js +21 -28
  10. package/dist-es/commands/CreateBackendStorageCommand.js +21 -28
  11. package/dist-es/commands/CreateTokenCommand.js +21 -28
  12. package/dist-es/commands/DeleteBackendAPICommand.js +21 -28
  13. package/dist-es/commands/DeleteBackendAuthCommand.js +21 -28
  14. package/dist-es/commands/DeleteBackendCommand.js +21 -28
  15. package/dist-es/commands/DeleteBackendStorageCommand.js +21 -28
  16. package/dist-es/commands/DeleteTokenCommand.js +21 -28
  17. package/dist-es/commands/GenerateBackendAPIModelsCommand.js +21 -28
  18. package/dist-es/commands/GetBackendAPICommand.js +21 -28
  19. package/dist-es/commands/GetBackendAPIModelsCommand.js +21 -28
  20. package/dist-es/commands/GetBackendAuthCommand.js +21 -28
  21. package/dist-es/commands/GetBackendCommand.js +21 -28
  22. package/dist-es/commands/GetBackendJobCommand.js +21 -28
  23. package/dist-es/commands/GetBackendStorageCommand.js +21 -28
  24. package/dist-es/commands/GetTokenCommand.js +21 -28
  25. package/dist-es/commands/ImportBackendAuthCommand.js +21 -28
  26. package/dist-es/commands/ImportBackendStorageCommand.js +21 -28
  27. package/dist-es/commands/ListBackendJobsCommand.js +21 -28
  28. package/dist-es/commands/ListS3BucketsCommand.js +21 -28
  29. package/dist-es/commands/RemoveAllBackendsCommand.js +21 -28
  30. package/dist-es/commands/RemoveBackendConfigCommand.js +21 -28
  31. package/dist-es/commands/UpdateBackendAPICommand.js +21 -28
  32. package/dist-es/commands/UpdateBackendAuthCommand.js +21 -28
  33. package/dist-es/commands/UpdateBackendConfigCommand.js +21 -28
  34. package/dist-es/commands/UpdateBackendJobCommand.js +21 -28
  35. package/dist-es/commands/UpdateBackendStorageCommand.js +21 -28
  36. package/dist-es/endpoints.js +8 -8
  37. package/dist-es/models/AmplifyBackendServiceException.js +5 -10
  38. package/dist-es/models/models_0.js +338 -147
  39. package/dist-es/protocols/Aws_restJson1.js +2787 -3581
  40. package/dist-es/runtimeConfig.browser.js +26 -12
  41. package/dist-es/runtimeConfig.js +30 -12
  42. package/dist-es/runtimeConfig.native.js +8 -5
  43. package/dist-es/runtimeConfig.shared.js +8 -11
  44. 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 { CloneBackendRequestFilterSensitiveLog, CloneBackendResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CloneBackendCommand, serializeAws_restJson1CloneBackendCommand, } from "../protocols/Aws_restJson1";
6
- var CloneBackendCommand = (function (_super) {
7
- __extends(CloneBackendCommand, _super);
8
- function CloneBackendCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CloneBackendCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CloneBackendCommand.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 = "AmplifyBackendClient";
18
- var commandName = "CloneBackendCommand";
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 = "AmplifyBackendClient";
15
+ const commandName = "CloneBackendCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CloneBackendRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CloneBackendResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CloneBackendCommand.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_restJson1CloneBackendCommand(input, context);
33
- };
34
- CloneBackendCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CloneBackendCommand(output, context);
36
- };
37
- return CloneBackendCommand;
38
- }($Command));
39
- export { CloneBackendCommand };
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 { CreateBackendAPIRequestFilterSensitiveLog, CreateBackendAPIResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreateBackendAPICommand, serializeAws_restJson1CreateBackendAPICommand, } from "../protocols/Aws_restJson1";
6
- var CreateBackendAPICommand = (function (_super) {
7
- __extends(CreateBackendAPICommand, _super);
8
- function CreateBackendAPICommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateBackendAPICommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateBackendAPICommand.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 = "AmplifyBackendClient";
18
- var commandName = "CreateBackendAPICommand";
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 = "AmplifyBackendClient";
15
+ const commandName = "CreateBackendAPICommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateBackendAPIRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateBackendAPIResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateBackendAPICommand.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_restJson1CreateBackendAPICommand(input, context);
33
- };
34
- CreateBackendAPICommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreateBackendAPICommand(output, context);
36
- };
37
- return CreateBackendAPICommand;
38
- }($Command));
39
- export { CreateBackendAPICommand };
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 { CreateBackendAuthRequestFilterSensitiveLog, CreateBackendAuthResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreateBackendAuthCommand, serializeAws_restJson1CreateBackendAuthCommand, } from "../protocols/Aws_restJson1";
6
- var CreateBackendAuthCommand = (function (_super) {
7
- __extends(CreateBackendAuthCommand, _super);
8
- function CreateBackendAuthCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateBackendAuthCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateBackendAuthCommand.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 = "AmplifyBackendClient";
18
- var commandName = "CreateBackendAuthCommand";
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 = "AmplifyBackendClient";
15
+ const commandName = "CreateBackendAuthCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateBackendAuthRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateBackendAuthResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateBackendAuthCommand.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_restJson1CreateBackendAuthCommand(input, context);
33
- };
34
- CreateBackendAuthCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreateBackendAuthCommand(output, context);
36
- };
37
- return CreateBackendAuthCommand;
38
- }($Command));
39
- export { CreateBackendAuthCommand };
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 { CreateBackendRequestFilterSensitiveLog, CreateBackendResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreateBackendCommand, serializeAws_restJson1CreateBackendCommand, } from "../protocols/Aws_restJson1";
6
- var CreateBackendCommand = (function (_super) {
7
- __extends(CreateBackendCommand, _super);
8
- function CreateBackendCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateBackendCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateBackendCommand.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 = "AmplifyBackendClient";
18
- var commandName = "CreateBackendCommand";
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 = "AmplifyBackendClient";
15
+ const commandName = "CreateBackendCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateBackendRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateBackendResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateBackendCommand.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_restJson1CreateBackendCommand(input, context);
33
- };
34
- CreateBackendCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreateBackendCommand(output, context);
36
- };
37
- return CreateBackendCommand;
38
- }($Command));
39
- export { CreateBackendCommand };
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 { CreateBackendConfigRequestFilterSensitiveLog, CreateBackendConfigResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreateBackendConfigCommand, serializeAws_restJson1CreateBackendConfigCommand, } from "../protocols/Aws_restJson1";
6
- var CreateBackendConfigCommand = (function (_super) {
7
- __extends(CreateBackendConfigCommand, _super);
8
- function CreateBackendConfigCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateBackendConfigCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateBackendConfigCommand.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 = "AmplifyBackendClient";
18
- var commandName = "CreateBackendConfigCommand";
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 = "AmplifyBackendClient";
15
+ const commandName = "CreateBackendConfigCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateBackendConfigRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateBackendConfigResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateBackendConfigCommand.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_restJson1CreateBackendConfigCommand(input, context);
33
- };
34
- CreateBackendConfigCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreateBackendConfigCommand(output, context);
36
- };
37
- return CreateBackendConfigCommand;
38
- }($Command));
39
- export { CreateBackendConfigCommand };
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 { CreateBackendStorageRequestFilterSensitiveLog, CreateBackendStorageResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreateBackendStorageCommand, serializeAws_restJson1CreateBackendStorageCommand, } from "../protocols/Aws_restJson1";
6
- var CreateBackendStorageCommand = (function (_super) {
7
- __extends(CreateBackendStorageCommand, _super);
8
- function CreateBackendStorageCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateBackendStorageCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateBackendStorageCommand.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 = "AmplifyBackendClient";
18
- var commandName = "CreateBackendStorageCommand";
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 = "AmplifyBackendClient";
15
+ const commandName = "CreateBackendStorageCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateBackendStorageRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateBackendStorageResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateBackendStorageCommand.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_restJson1CreateBackendStorageCommand(input, context);
33
- };
34
- CreateBackendStorageCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreateBackendStorageCommand(output, context);
36
- };
37
- return CreateBackendStorageCommand;
38
- }($Command));
39
- export { CreateBackendStorageCommand };
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 { CreateTokenRequestFilterSensitiveLog, CreateTokenResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreateTokenCommand, serializeAws_restJson1CreateTokenCommand, } from "../protocols/Aws_restJson1";
6
- var CreateTokenCommand = (function (_super) {
7
- __extends(CreateTokenCommand, _super);
8
- function CreateTokenCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateTokenCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateTokenCommand.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 = "AmplifyBackendClient";
18
- var commandName = "CreateTokenCommand";
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 = "AmplifyBackendClient";
15
+ const commandName = "CreateTokenCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateTokenRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateTokenResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateTokenCommand.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_restJson1CreateTokenCommand(input, context);
33
- };
34
- CreateTokenCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreateTokenCommand(output, context);
36
- };
37
- return CreateTokenCommand;
38
- }($Command));
39
- export { CreateTokenCommand };
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 { DeleteBackendAPIRequestFilterSensitiveLog, DeleteBackendAPIResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1DeleteBackendAPICommand, serializeAws_restJson1DeleteBackendAPICommand, } from "../protocols/Aws_restJson1";
6
- var DeleteBackendAPICommand = (function (_super) {
7
- __extends(DeleteBackendAPICommand, _super);
8
- function DeleteBackendAPICommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteBackendAPICommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteBackendAPICommand.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 = "AmplifyBackendClient";
18
- var commandName = "DeleteBackendAPICommand";
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 = "AmplifyBackendClient";
15
+ const commandName = "DeleteBackendAPICommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteBackendAPIRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteBackendAPIResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteBackendAPICommand.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_restJson1DeleteBackendAPICommand(input, context);
33
- };
34
- DeleteBackendAPICommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1DeleteBackendAPICommand(output, context);
36
- };
37
- return DeleteBackendAPICommand;
38
- }($Command));
39
- export { DeleteBackendAPICommand };
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 { DeleteBackendAuthRequestFilterSensitiveLog, DeleteBackendAuthResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1DeleteBackendAuthCommand, serializeAws_restJson1DeleteBackendAuthCommand, } from "../protocols/Aws_restJson1";
6
- var DeleteBackendAuthCommand = (function (_super) {
7
- __extends(DeleteBackendAuthCommand, _super);
8
- function DeleteBackendAuthCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteBackendAuthCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteBackendAuthCommand.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 = "AmplifyBackendClient";
18
- var commandName = "DeleteBackendAuthCommand";
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 = "AmplifyBackendClient";
15
+ const commandName = "DeleteBackendAuthCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteBackendAuthRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteBackendAuthResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteBackendAuthCommand.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_restJson1DeleteBackendAuthCommand(input, context);
33
- };
34
- DeleteBackendAuthCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1DeleteBackendAuthCommand(output, context);
36
- };
37
- return DeleteBackendAuthCommand;
38
- }($Command));
39
- export { DeleteBackendAuthCommand };
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 { DeleteBackendRequestFilterSensitiveLog, DeleteBackendResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1DeleteBackendCommand, serializeAws_restJson1DeleteBackendCommand, } from "../protocols/Aws_restJson1";
6
- var DeleteBackendCommand = (function (_super) {
7
- __extends(DeleteBackendCommand, _super);
8
- function DeleteBackendCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteBackendCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteBackendCommand.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 = "AmplifyBackendClient";
18
- var commandName = "DeleteBackendCommand";
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 = "AmplifyBackendClient";
15
+ const commandName = "DeleteBackendCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteBackendRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteBackendResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteBackendCommand.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_restJson1DeleteBackendCommand(input, context);
33
- };
34
- DeleteBackendCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1DeleteBackendCommand(output, context);
36
- };
37
- return DeleteBackendCommand;
38
- }($Command));
39
- export { DeleteBackendCommand };
31
+ }
32
+ }