@aws-sdk/client-cloudcontrol 3.300.0 → 3.303.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.
@@ -17,39 +17,36 @@ class AlreadyExistsException extends CloudControlServiceException_1.CloudControl
17
17
  }
18
18
  }
19
19
  exports.AlreadyExistsException = AlreadyExistsException;
20
- var HandlerErrorCode;
21
- (function (HandlerErrorCode) {
22
- HandlerErrorCode["ACCESS_DENIED"] = "AccessDenied";
23
- HandlerErrorCode["ALREADY_EXISTS"] = "AlreadyExists";
24
- HandlerErrorCode["GENERAL_SERVICE_EXCEPTION"] = "GeneralServiceException";
25
- HandlerErrorCode["INTERNAL_FAILURE"] = "InternalFailure";
26
- HandlerErrorCode["INVALID_CREDENTIALS"] = "InvalidCredentials";
27
- HandlerErrorCode["INVALID_REQUEST"] = "InvalidRequest";
28
- HandlerErrorCode["NETWORK_FAILURE"] = "NetworkFailure";
29
- HandlerErrorCode["NOT_FOUND"] = "NotFound";
30
- HandlerErrorCode["NOT_STABILIZED"] = "NotStabilized";
31
- HandlerErrorCode["NOT_UPDATABLE"] = "NotUpdatable";
32
- HandlerErrorCode["RESOURCE_CONFLICT"] = "ResourceConflict";
33
- HandlerErrorCode["SERVICE_INTERNAL_ERROR"] = "ServiceInternalError";
34
- HandlerErrorCode["SERVICE_LIMIT_EXCEEDED"] = "ServiceLimitExceeded";
35
- HandlerErrorCode["SERVICE_TIMEOUT"] = "ServiceTimeout";
36
- HandlerErrorCode["THROTTLING"] = "Throttling";
37
- })(HandlerErrorCode = exports.HandlerErrorCode || (exports.HandlerErrorCode = {}));
38
- var Operation;
39
- (function (Operation) {
40
- Operation["CREATE"] = "CREATE";
41
- Operation["DELETE"] = "DELETE";
42
- Operation["UPDATE"] = "UPDATE";
43
- })(Operation = exports.Operation || (exports.Operation = {}));
44
- var OperationStatus;
45
- (function (OperationStatus) {
46
- OperationStatus["CANCEL_COMPLETE"] = "CANCEL_COMPLETE";
47
- OperationStatus["CANCEL_IN_PROGRESS"] = "CANCEL_IN_PROGRESS";
48
- OperationStatus["FAILED"] = "FAILED";
49
- OperationStatus["IN_PROGRESS"] = "IN_PROGRESS";
50
- OperationStatus["PENDING"] = "PENDING";
51
- OperationStatus["SUCCESS"] = "SUCCESS";
52
- })(OperationStatus = exports.OperationStatus || (exports.OperationStatus = {}));
20
+ exports.HandlerErrorCode = {
21
+ ACCESS_DENIED: "AccessDenied",
22
+ ALREADY_EXISTS: "AlreadyExists",
23
+ GENERAL_SERVICE_EXCEPTION: "GeneralServiceException",
24
+ INTERNAL_FAILURE: "InternalFailure",
25
+ INVALID_CREDENTIALS: "InvalidCredentials",
26
+ INVALID_REQUEST: "InvalidRequest",
27
+ NETWORK_FAILURE: "NetworkFailure",
28
+ NOT_FOUND: "NotFound",
29
+ NOT_STABILIZED: "NotStabilized",
30
+ NOT_UPDATABLE: "NotUpdatable",
31
+ RESOURCE_CONFLICT: "ResourceConflict",
32
+ SERVICE_INTERNAL_ERROR: "ServiceInternalError",
33
+ SERVICE_LIMIT_EXCEEDED: "ServiceLimitExceeded",
34
+ SERVICE_TIMEOUT: "ServiceTimeout",
35
+ THROTTLING: "Throttling",
36
+ };
37
+ exports.Operation = {
38
+ CREATE: "CREATE",
39
+ DELETE: "DELETE",
40
+ UPDATE: "UPDATE",
41
+ };
42
+ exports.OperationStatus = {
43
+ CANCEL_COMPLETE: "CANCEL_COMPLETE",
44
+ CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS",
45
+ FAILED: "FAILED",
46
+ IN_PROGRESS: "IN_PROGRESS",
47
+ PENDING: "PENDING",
48
+ SUCCESS: "SUCCESS",
49
+ };
53
50
  class ConcurrentModificationException extends CloudControlServiceException_1.CloudControlServiceException {
54
51
  constructor(opts) {
55
52
  super({
@@ -13,39 +13,36 @@ export class AlreadyExistsException extends __BaseException {
13
13
  this.Message = opts.Message;
14
14
  }
15
15
  }
16
- export var HandlerErrorCode;
17
- (function (HandlerErrorCode) {
18
- HandlerErrorCode["ACCESS_DENIED"] = "AccessDenied";
19
- HandlerErrorCode["ALREADY_EXISTS"] = "AlreadyExists";
20
- HandlerErrorCode["GENERAL_SERVICE_EXCEPTION"] = "GeneralServiceException";
21
- HandlerErrorCode["INTERNAL_FAILURE"] = "InternalFailure";
22
- HandlerErrorCode["INVALID_CREDENTIALS"] = "InvalidCredentials";
23
- HandlerErrorCode["INVALID_REQUEST"] = "InvalidRequest";
24
- HandlerErrorCode["NETWORK_FAILURE"] = "NetworkFailure";
25
- HandlerErrorCode["NOT_FOUND"] = "NotFound";
26
- HandlerErrorCode["NOT_STABILIZED"] = "NotStabilized";
27
- HandlerErrorCode["NOT_UPDATABLE"] = "NotUpdatable";
28
- HandlerErrorCode["RESOURCE_CONFLICT"] = "ResourceConflict";
29
- HandlerErrorCode["SERVICE_INTERNAL_ERROR"] = "ServiceInternalError";
30
- HandlerErrorCode["SERVICE_LIMIT_EXCEEDED"] = "ServiceLimitExceeded";
31
- HandlerErrorCode["SERVICE_TIMEOUT"] = "ServiceTimeout";
32
- HandlerErrorCode["THROTTLING"] = "Throttling";
33
- })(HandlerErrorCode || (HandlerErrorCode = {}));
34
- export var Operation;
35
- (function (Operation) {
36
- Operation["CREATE"] = "CREATE";
37
- Operation["DELETE"] = "DELETE";
38
- Operation["UPDATE"] = "UPDATE";
39
- })(Operation || (Operation = {}));
40
- export var OperationStatus;
41
- (function (OperationStatus) {
42
- OperationStatus["CANCEL_COMPLETE"] = "CANCEL_COMPLETE";
43
- OperationStatus["CANCEL_IN_PROGRESS"] = "CANCEL_IN_PROGRESS";
44
- OperationStatus["FAILED"] = "FAILED";
45
- OperationStatus["IN_PROGRESS"] = "IN_PROGRESS";
46
- OperationStatus["PENDING"] = "PENDING";
47
- OperationStatus["SUCCESS"] = "SUCCESS";
48
- })(OperationStatus || (OperationStatus = {}));
16
+ export const HandlerErrorCode = {
17
+ ACCESS_DENIED: "AccessDenied",
18
+ ALREADY_EXISTS: "AlreadyExists",
19
+ GENERAL_SERVICE_EXCEPTION: "GeneralServiceException",
20
+ INTERNAL_FAILURE: "InternalFailure",
21
+ INVALID_CREDENTIALS: "InvalidCredentials",
22
+ INVALID_REQUEST: "InvalidRequest",
23
+ NETWORK_FAILURE: "NetworkFailure",
24
+ NOT_FOUND: "NotFound",
25
+ NOT_STABILIZED: "NotStabilized",
26
+ NOT_UPDATABLE: "NotUpdatable",
27
+ RESOURCE_CONFLICT: "ResourceConflict",
28
+ SERVICE_INTERNAL_ERROR: "ServiceInternalError",
29
+ SERVICE_LIMIT_EXCEEDED: "ServiceLimitExceeded",
30
+ SERVICE_TIMEOUT: "ServiceTimeout",
31
+ THROTTLING: "Throttling",
32
+ };
33
+ export const Operation = {
34
+ CREATE: "CREATE",
35
+ DELETE: "DELETE",
36
+ UPDATE: "UPDATE",
37
+ };
38
+ export const OperationStatus = {
39
+ CANCEL_COMPLETE: "CANCEL_COMPLETE",
40
+ CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS",
41
+ FAILED: "FAILED",
42
+ IN_PROGRESS: "IN_PROGRESS",
43
+ PENDING: "PENDING",
44
+ SUCCESS: "SUCCESS",
45
+ };
49
46
  export class ConcurrentModificationException extends __BaseException {
50
47
  constructor(opts) {
51
48
  super({
@@ -29,7 +29,7 @@ export interface CancelResourceRequestCommandOutput extends CancelResourceReques
29
29
  * import { CloudControlClient, CancelResourceRequestCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
30
30
  * // const { CloudControlClient, CancelResourceRequestCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
31
31
  * const client = new CloudControlClient(config);
32
- * const input = {
32
+ * const input = { // CancelResourceRequestInput
33
33
  * RequestToken: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new CancelResourceRequestCommand(input);
@@ -30,7 +30,7 @@ export interface CreateResourceCommandOutput extends CreateResourceOutput, __Met
30
30
  * import { CloudControlClient, CreateResourceCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
31
31
  * // const { CloudControlClient, CreateResourceCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
32
32
  * const client = new CloudControlClient(config);
33
- * const input = {
33
+ * const input = { // CreateResourceInput
34
34
  * TypeName: "STRING_VALUE", // required
35
35
  * TypeVersionId: "STRING_VALUE",
36
36
  * RoleArn: "STRING_VALUE",
@@ -30,7 +30,7 @@ export interface DeleteResourceCommandOutput extends DeleteResourceOutput, __Met
30
30
  * import { CloudControlClient, DeleteResourceCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
31
31
  * // const { CloudControlClient, DeleteResourceCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
32
32
  * const client = new CloudControlClient(config);
33
- * const input = {
33
+ * const input = { // DeleteResourceInput
34
34
  * TypeName: "STRING_VALUE", // required
35
35
  * TypeVersionId: "STRING_VALUE",
36
36
  * RoleArn: "STRING_VALUE",
@@ -29,7 +29,7 @@ export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataB
29
29
  * import { CloudControlClient, GetResourceCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
30
30
  * // const { CloudControlClient, GetResourceCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
31
31
  * const client = new CloudControlClient(config);
32
- * const input = {
32
+ * const input = { // GetResourceInput
33
33
  * TypeName: "STRING_VALUE", // required
34
34
  * TypeVersionId: "STRING_VALUE",
35
35
  * RoleArn: "STRING_VALUE",
@@ -28,7 +28,7 @@ export interface GetResourceRequestStatusCommandOutput extends GetResourceReques
28
28
  * import { CloudControlClient, GetResourceRequestStatusCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
29
29
  * // const { CloudControlClient, GetResourceRequestStatusCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
30
30
  * const client = new CloudControlClient(config);
31
- * const input = {
31
+ * const input = { // GetResourceRequestStatusInput
32
32
  * RequestToken: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new GetResourceRequestStatusCommand(input);
@@ -31,14 +31,14 @@ export interface ListResourceRequestsCommandOutput extends ListResourceRequestsO
31
31
  * import { CloudControlClient, ListResourceRequestsCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
32
32
  * // const { CloudControlClient, ListResourceRequestsCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
33
33
  * const client = new CloudControlClient(config);
34
- * const input = {
34
+ * const input = { // ListResourceRequestsInput
35
35
  * MaxResults: Number("int"),
36
36
  * NextToken: "STRING_VALUE",
37
- * ResourceRequestStatusFilter: {
38
- * Operations: [
37
+ * ResourceRequestStatusFilter: { // ResourceRequestStatusFilter
38
+ * Operations: [ // Operations
39
39
  * "STRING_VALUE",
40
40
  * ],
41
- * OperationStatuses: [
41
+ * OperationStatuses: [ // OperationStatuses
42
42
  * "STRING_VALUE",
43
43
  * ],
44
44
  * },
@@ -28,7 +28,7 @@ export interface ListResourcesCommandOutput extends ListResourcesOutput, __Metad
28
28
  * import { CloudControlClient, ListResourcesCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
29
29
  * // const { CloudControlClient, ListResourcesCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
30
30
  * const client = new CloudControlClient(config);
31
- * const input = {
31
+ * const input = { // ListResourcesInput
32
32
  * TypeName: "STRING_VALUE", // required
33
33
  * TypeVersionId: "STRING_VALUE",
34
34
  * RoleArn: "STRING_VALUE",
@@ -37,7 +37,7 @@ export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __Met
37
37
  * import { CloudControlClient, UpdateResourceCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
38
38
  * // const { CloudControlClient, UpdateResourceCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
39
39
  * const client = new CloudControlClient(config);
40
- * const input = {
40
+ * const input = { // UpdateResourceInput
41
41
  * TypeName: "STRING_VALUE", // required
42
42
  * TypeVersionId: "STRING_VALUE",
43
43
  * RoleArn: "STRING_VALUE",
@@ -25,43 +25,58 @@ export interface CancelResourceRequestInput {
25
25
  }
26
26
  /**
27
27
  * @public
28
+ * @enum
28
29
  */
29
- export declare enum HandlerErrorCode {
30
- ACCESS_DENIED = "AccessDenied",
31
- ALREADY_EXISTS = "AlreadyExists",
32
- GENERAL_SERVICE_EXCEPTION = "GeneralServiceException",
33
- INTERNAL_FAILURE = "InternalFailure",
34
- INVALID_CREDENTIALS = "InvalidCredentials",
35
- INVALID_REQUEST = "InvalidRequest",
36
- NETWORK_FAILURE = "NetworkFailure",
37
- NOT_FOUND = "NotFound",
38
- NOT_STABILIZED = "NotStabilized",
39
- NOT_UPDATABLE = "NotUpdatable",
40
- RESOURCE_CONFLICT = "ResourceConflict",
41
- SERVICE_INTERNAL_ERROR = "ServiceInternalError",
42
- SERVICE_LIMIT_EXCEEDED = "ServiceLimitExceeded",
43
- SERVICE_TIMEOUT = "ServiceTimeout",
44
- THROTTLING = "Throttling"
45
- }
30
+ export declare const HandlerErrorCode: {
31
+ readonly ACCESS_DENIED: "AccessDenied";
32
+ readonly ALREADY_EXISTS: "AlreadyExists";
33
+ readonly GENERAL_SERVICE_EXCEPTION: "GeneralServiceException";
34
+ readonly INTERNAL_FAILURE: "InternalFailure";
35
+ readonly INVALID_CREDENTIALS: "InvalidCredentials";
36
+ readonly INVALID_REQUEST: "InvalidRequest";
37
+ readonly NETWORK_FAILURE: "NetworkFailure";
38
+ readonly NOT_FOUND: "NotFound";
39
+ readonly NOT_STABILIZED: "NotStabilized";
40
+ readonly NOT_UPDATABLE: "NotUpdatable";
41
+ readonly RESOURCE_CONFLICT: "ResourceConflict";
42
+ readonly SERVICE_INTERNAL_ERROR: "ServiceInternalError";
43
+ readonly SERVICE_LIMIT_EXCEEDED: "ServiceLimitExceeded";
44
+ readonly SERVICE_TIMEOUT: "ServiceTimeout";
45
+ readonly THROTTLING: "Throttling";
46
+ };
46
47
  /**
47
48
  * @public
48
49
  */
49
- export declare enum Operation {
50
- CREATE = "CREATE",
51
- DELETE = "DELETE",
52
- UPDATE = "UPDATE"
53
- }
50
+ export type HandlerErrorCode = (typeof HandlerErrorCode)[keyof typeof HandlerErrorCode];
54
51
  /**
55
52
  * @public
53
+ * @enum
56
54
  */
57
- export declare enum OperationStatus {
58
- CANCEL_COMPLETE = "CANCEL_COMPLETE",
59
- CANCEL_IN_PROGRESS = "CANCEL_IN_PROGRESS",
60
- FAILED = "FAILED",
61
- IN_PROGRESS = "IN_PROGRESS",
62
- PENDING = "PENDING",
63
- SUCCESS = "SUCCESS"
64
- }
55
+ export declare const Operation: {
56
+ readonly CREATE: "CREATE";
57
+ readonly DELETE: "DELETE";
58
+ readonly UPDATE: "UPDATE";
59
+ };
60
+ /**
61
+ * @public
62
+ */
63
+ export type Operation = (typeof Operation)[keyof typeof Operation];
64
+ /**
65
+ * @public
66
+ * @enum
67
+ */
68
+ export declare const OperationStatus: {
69
+ readonly CANCEL_COMPLETE: "CANCEL_COMPLETE";
70
+ readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
71
+ readonly FAILED: "FAILED";
72
+ readonly IN_PROGRESS: "IN_PROGRESS";
73
+ readonly PENDING: "PENDING";
74
+ readonly SUCCESS: "SUCCESS";
75
+ };
76
+ /**
77
+ * @public
78
+ */
79
+ export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationStatus];
65
80
  /**
66
81
  * @public
67
82
  * <p>Represents the current status of a resource operation request. For more information, see
@@ -11,36 +11,41 @@ export declare class AlreadyExistsException extends __BaseException {
11
11
  export interface CancelResourceRequestInput {
12
12
  RequestToken: string | undefined;
13
13
  }
14
- export declare enum HandlerErrorCode {
15
- ACCESS_DENIED = "AccessDenied",
16
- ALREADY_EXISTS = "AlreadyExists",
17
- GENERAL_SERVICE_EXCEPTION = "GeneralServiceException",
18
- INTERNAL_FAILURE = "InternalFailure",
19
- INVALID_CREDENTIALS = "InvalidCredentials",
20
- INVALID_REQUEST = "InvalidRequest",
21
- NETWORK_FAILURE = "NetworkFailure",
22
- NOT_FOUND = "NotFound",
23
- NOT_STABILIZED = "NotStabilized",
24
- NOT_UPDATABLE = "NotUpdatable",
25
- RESOURCE_CONFLICT = "ResourceConflict",
26
- SERVICE_INTERNAL_ERROR = "ServiceInternalError",
27
- SERVICE_LIMIT_EXCEEDED = "ServiceLimitExceeded",
28
- SERVICE_TIMEOUT = "ServiceTimeout",
29
- THROTTLING = "Throttling",
30
- }
31
- export declare enum Operation {
32
- CREATE = "CREATE",
33
- DELETE = "DELETE",
34
- UPDATE = "UPDATE",
35
- }
36
- export declare enum OperationStatus {
37
- CANCEL_COMPLETE = "CANCEL_COMPLETE",
38
- CANCEL_IN_PROGRESS = "CANCEL_IN_PROGRESS",
39
- FAILED = "FAILED",
40
- IN_PROGRESS = "IN_PROGRESS",
41
- PENDING = "PENDING",
42
- SUCCESS = "SUCCESS",
43
- }
14
+ export declare const HandlerErrorCode: {
15
+ readonly ACCESS_DENIED: "AccessDenied";
16
+ readonly ALREADY_EXISTS: "AlreadyExists";
17
+ readonly GENERAL_SERVICE_EXCEPTION: "GeneralServiceException";
18
+ readonly INTERNAL_FAILURE: "InternalFailure";
19
+ readonly INVALID_CREDENTIALS: "InvalidCredentials";
20
+ readonly INVALID_REQUEST: "InvalidRequest";
21
+ readonly NETWORK_FAILURE: "NetworkFailure";
22
+ readonly NOT_FOUND: "NotFound";
23
+ readonly NOT_STABILIZED: "NotStabilized";
24
+ readonly NOT_UPDATABLE: "NotUpdatable";
25
+ readonly RESOURCE_CONFLICT: "ResourceConflict";
26
+ readonly SERVICE_INTERNAL_ERROR: "ServiceInternalError";
27
+ readonly SERVICE_LIMIT_EXCEEDED: "ServiceLimitExceeded";
28
+ readonly SERVICE_TIMEOUT: "ServiceTimeout";
29
+ readonly THROTTLING: "Throttling";
30
+ };
31
+ export type HandlerErrorCode =
32
+ (typeof HandlerErrorCode)[keyof typeof HandlerErrorCode];
33
+ export declare const Operation: {
34
+ readonly CREATE: "CREATE";
35
+ readonly DELETE: "DELETE";
36
+ readonly UPDATE: "UPDATE";
37
+ };
38
+ export type Operation = (typeof Operation)[keyof typeof Operation];
39
+ export declare const OperationStatus: {
40
+ readonly CANCEL_COMPLETE: "CANCEL_COMPLETE";
41
+ readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
42
+ readonly FAILED: "FAILED";
43
+ readonly IN_PROGRESS: "IN_PROGRESS";
44
+ readonly PENDING: "PENDING";
45
+ readonly SUCCESS: "SUCCESS";
46
+ };
47
+ export type OperationStatus =
48
+ (typeof OperationStatus)[keyof typeof OperationStatus];
44
49
  export interface ProgressEvent {
45
50
  TypeName?: string;
46
51
  Identifier?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudcontrol",
3
3
  "description": "AWS SDK for JavaScript Cloudcontrol Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.303.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,44 +21,44 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
56
- "@aws-sdk/util-waiter": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-serde": "3.303.0",
37
+ "@aws-sdk/middleware-signing": "3.303.0",
38
+ "@aws-sdk/middleware-stack": "3.303.0",
39
+ "@aws-sdk/middleware-user-agent": "3.303.0",
40
+ "@aws-sdk/node-config-provider": "3.303.0",
41
+ "@aws-sdk/node-http-handler": "3.303.0",
42
+ "@aws-sdk/protocol-http": "3.303.0",
43
+ "@aws-sdk/smithy-client": "3.303.0",
44
+ "@aws-sdk/types": "3.303.0",
45
+ "@aws-sdk/url-parser": "3.303.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
+ "@aws-sdk/util-endpoints": "3.303.0",
52
+ "@aws-sdk/util-retry": "3.303.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
54
+ "@aws-sdk/util-user-agent-node": "3.303.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
+ "@aws-sdk/util-waiter": "3.303.0",
57
57
  "tslib": "^2.5.0",
58
58
  "uuid": "^8.3.2"
59
59
  },
60
60
  "devDependencies": {
61
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
61
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
62
62
  "@tsconfig/node14": "1.0.3",
63
63
  "@types/node": "^14.14.31",
64
64
  "@types/uuid": "^8.3.0",