@aws-sdk/client-detective 3.301.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.
@@ -2,12 +2,11 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.TooManyRequestsException = exports.MemberStatus = exports.InvitationType = exports.MemberDisabledReason = exports.ServiceQuotaExceededException = exports.DatasourcePackageIngestState = exports.DatasourcePackage = exports.ValidationException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = exports.ErrorCode = void 0;
4
4
  const DetectiveServiceException_1 = require("./DetectiveServiceException");
5
- var ErrorCode;
6
- (function (ErrorCode) {
7
- ErrorCode["InternalError"] = "INTERNAL_ERROR";
8
- ErrorCode["InvalidGraphArn"] = "INVALID_GRAPH_ARN";
9
- ErrorCode["InvalidRequestBody"] = "INVALID_REQUEST_BODY";
10
- })(ErrorCode = exports.ErrorCode || (exports.ErrorCode = {}));
5
+ exports.ErrorCode = {
6
+ InternalError: "INTERNAL_ERROR",
7
+ InvalidGraphArn: "INVALID_GRAPH_ARN",
8
+ InvalidRequestBody: "INVALID_REQUEST_BODY",
9
+ };
11
10
  class AccessDeniedException extends DetectiveServiceException_1.DetectiveServiceException {
12
11
  constructor(opts) {
13
12
  super({
@@ -84,17 +83,15 @@ class ValidationException extends DetectiveServiceException_1.DetectiveServiceEx
84
83
  }
85
84
  }
86
85
  exports.ValidationException = ValidationException;
87
- var DatasourcePackage;
88
- (function (DatasourcePackage) {
89
- DatasourcePackage["DETECTIVE_CORE"] = "DETECTIVE_CORE";
90
- DatasourcePackage["EKS_AUDIT"] = "EKS_AUDIT";
91
- })(DatasourcePackage = exports.DatasourcePackage || (exports.DatasourcePackage = {}));
92
- var DatasourcePackageIngestState;
93
- (function (DatasourcePackageIngestState) {
94
- DatasourcePackageIngestState["DISABLED"] = "DISABLED";
95
- DatasourcePackageIngestState["STARTED"] = "STARTED";
96
- DatasourcePackageIngestState["STOPPED"] = "STOPPED";
97
- })(DatasourcePackageIngestState = exports.DatasourcePackageIngestState || (exports.DatasourcePackageIngestState = {}));
86
+ exports.DatasourcePackage = {
87
+ DETECTIVE_CORE: "DETECTIVE_CORE",
88
+ EKS_AUDIT: "EKS_AUDIT",
89
+ };
90
+ exports.DatasourcePackageIngestState = {
91
+ DISABLED: "DISABLED",
92
+ STARTED: "STARTED",
93
+ STOPPED: "STOPPED",
94
+ };
98
95
  class ServiceQuotaExceededException extends DetectiveServiceException_1.DetectiveServiceException {
99
96
  constructor(opts) {
100
97
  super({
@@ -110,24 +107,21 @@ class ServiceQuotaExceededException extends DetectiveServiceException_1.Detectiv
110
107
  }
111
108
  }
112
109
  exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
113
- var MemberDisabledReason;
114
- (function (MemberDisabledReason) {
115
- MemberDisabledReason["VOLUME_TOO_HIGH"] = "VOLUME_TOO_HIGH";
116
- MemberDisabledReason["VOLUME_UNKNOWN"] = "VOLUME_UNKNOWN";
117
- })(MemberDisabledReason = exports.MemberDisabledReason || (exports.MemberDisabledReason = {}));
118
- var InvitationType;
119
- (function (InvitationType) {
120
- InvitationType["INVITATION"] = "INVITATION";
121
- InvitationType["ORGANIZATION"] = "ORGANIZATION";
122
- })(InvitationType = exports.InvitationType || (exports.InvitationType = {}));
123
- var MemberStatus;
124
- (function (MemberStatus) {
125
- MemberStatus["ACCEPTED_BUT_DISABLED"] = "ACCEPTED_BUT_DISABLED";
126
- MemberStatus["ENABLED"] = "ENABLED";
127
- MemberStatus["INVITED"] = "INVITED";
128
- MemberStatus["VERIFICATION_FAILED"] = "VERIFICATION_FAILED";
129
- MemberStatus["VERIFICATION_IN_PROGRESS"] = "VERIFICATION_IN_PROGRESS";
130
- })(MemberStatus = exports.MemberStatus || (exports.MemberStatus = {}));
110
+ exports.MemberDisabledReason = {
111
+ VOLUME_TOO_HIGH: "VOLUME_TOO_HIGH",
112
+ VOLUME_UNKNOWN: "VOLUME_UNKNOWN",
113
+ };
114
+ exports.InvitationType = {
115
+ INVITATION: "INVITATION",
116
+ ORGANIZATION: "ORGANIZATION",
117
+ };
118
+ exports.MemberStatus = {
119
+ ACCEPTED_BUT_DISABLED: "ACCEPTED_BUT_DISABLED",
120
+ ENABLED: "ENABLED",
121
+ INVITED: "INVITED",
122
+ VERIFICATION_FAILED: "VERIFICATION_FAILED",
123
+ VERIFICATION_IN_PROGRESS: "VERIFICATION_IN_PROGRESS",
124
+ };
131
125
  class TooManyRequestsException extends DetectiveServiceException_1.DetectiveServiceException {
132
126
  constructor(opts) {
133
127
  super({
@@ -1,10 +1,9 @@
1
1
  import { DetectiveServiceException as __BaseException } from "./DetectiveServiceException";
2
- export var ErrorCode;
3
- (function (ErrorCode) {
4
- ErrorCode["InternalError"] = "INTERNAL_ERROR";
5
- ErrorCode["InvalidGraphArn"] = "INVALID_GRAPH_ARN";
6
- ErrorCode["InvalidRequestBody"] = "INVALID_REQUEST_BODY";
7
- })(ErrorCode || (ErrorCode = {}));
2
+ export const ErrorCode = {
3
+ InternalError: "INTERNAL_ERROR",
4
+ InvalidGraphArn: "INVALID_GRAPH_ARN",
5
+ InvalidRequestBody: "INVALID_REQUEST_BODY",
6
+ };
8
7
  export class AccessDeniedException extends __BaseException {
9
8
  constructor(opts) {
10
9
  super({
@@ -76,17 +75,15 @@ export class ValidationException extends __BaseException {
76
75
  this.ErrorCodeReason = opts.ErrorCodeReason;
77
76
  }
78
77
  }
79
- export var DatasourcePackage;
80
- (function (DatasourcePackage) {
81
- DatasourcePackage["DETECTIVE_CORE"] = "DETECTIVE_CORE";
82
- DatasourcePackage["EKS_AUDIT"] = "EKS_AUDIT";
83
- })(DatasourcePackage || (DatasourcePackage = {}));
84
- export var DatasourcePackageIngestState;
85
- (function (DatasourcePackageIngestState) {
86
- DatasourcePackageIngestState["DISABLED"] = "DISABLED";
87
- DatasourcePackageIngestState["STARTED"] = "STARTED";
88
- DatasourcePackageIngestState["STOPPED"] = "STOPPED";
89
- })(DatasourcePackageIngestState || (DatasourcePackageIngestState = {}));
78
+ export const DatasourcePackage = {
79
+ DETECTIVE_CORE: "DETECTIVE_CORE",
80
+ EKS_AUDIT: "EKS_AUDIT",
81
+ };
82
+ export const DatasourcePackageIngestState = {
83
+ DISABLED: "DISABLED",
84
+ STARTED: "STARTED",
85
+ STOPPED: "STOPPED",
86
+ };
90
87
  export class ServiceQuotaExceededException extends __BaseException {
91
88
  constructor(opts) {
92
89
  super({
@@ -101,24 +98,21 @@ export class ServiceQuotaExceededException extends __BaseException {
101
98
  this.Resources = opts.Resources;
102
99
  }
103
100
  }
104
- export var MemberDisabledReason;
105
- (function (MemberDisabledReason) {
106
- MemberDisabledReason["VOLUME_TOO_HIGH"] = "VOLUME_TOO_HIGH";
107
- MemberDisabledReason["VOLUME_UNKNOWN"] = "VOLUME_UNKNOWN";
108
- })(MemberDisabledReason || (MemberDisabledReason = {}));
109
- export var InvitationType;
110
- (function (InvitationType) {
111
- InvitationType["INVITATION"] = "INVITATION";
112
- InvitationType["ORGANIZATION"] = "ORGANIZATION";
113
- })(InvitationType || (InvitationType = {}));
114
- export var MemberStatus;
115
- (function (MemberStatus) {
116
- MemberStatus["ACCEPTED_BUT_DISABLED"] = "ACCEPTED_BUT_DISABLED";
117
- MemberStatus["ENABLED"] = "ENABLED";
118
- MemberStatus["INVITED"] = "INVITED";
119
- MemberStatus["VERIFICATION_FAILED"] = "VERIFICATION_FAILED";
120
- MemberStatus["VERIFICATION_IN_PROGRESS"] = "VERIFICATION_IN_PROGRESS";
121
- })(MemberStatus || (MemberStatus = {}));
101
+ export const MemberDisabledReason = {
102
+ VOLUME_TOO_HIGH: "VOLUME_TOO_HIGH",
103
+ VOLUME_UNKNOWN: "VOLUME_UNKNOWN",
104
+ };
105
+ export const InvitationType = {
106
+ INVITATION: "INVITATION",
107
+ ORGANIZATION: "ORGANIZATION",
108
+ };
109
+ export const MemberStatus = {
110
+ ACCEPTED_BUT_DISABLED: "ACCEPTED_BUT_DISABLED",
111
+ ENABLED: "ENABLED",
112
+ INVITED: "INVITED",
113
+ VERIFICATION_FAILED: "VERIFICATION_FAILED",
114
+ VERIFICATION_IN_PROGRESS: "VERIFICATION_IN_PROGRESS",
115
+ };
122
116
  export class TooManyRequestsException extends __BaseException {
123
117
  constructor(opts) {
124
118
  super({
@@ -13,12 +13,17 @@ export interface AcceptInvitationRequest {
13
13
  }
14
14
  /**
15
15
  * @public
16
+ * @enum
16
17
  */
17
- export declare enum ErrorCode {
18
- InternalError = "INTERNAL_ERROR",
19
- InvalidGraphArn = "INVALID_GRAPH_ARN",
20
- InvalidRequestBody = "INVALID_REQUEST_BODY"
21
- }
18
+ export declare const ErrorCode: {
19
+ readonly InternalError: "INTERNAL_ERROR";
20
+ readonly InvalidGraphArn: "INVALID_GRAPH_ARN";
21
+ readonly InvalidRequestBody: "INVALID_REQUEST_BODY";
22
+ };
23
+ /**
24
+ * @public
25
+ */
26
+ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
22
27
  /**
23
28
  * @public
24
29
  * <p>The request issuer does not have permission to access this resource or perform this
@@ -163,19 +168,29 @@ export interface BatchGetGraphMemberDatasourcesRequest {
163
168
  }
164
169
  /**
165
170
  * @public
171
+ * @enum
166
172
  */
167
- export declare enum DatasourcePackage {
168
- DETECTIVE_CORE = "DETECTIVE_CORE",
169
- EKS_AUDIT = "EKS_AUDIT"
170
- }
173
+ export declare const DatasourcePackage: {
174
+ readonly DETECTIVE_CORE: "DETECTIVE_CORE";
175
+ readonly EKS_AUDIT: "EKS_AUDIT";
176
+ };
171
177
  /**
172
178
  * @public
173
179
  */
174
- export declare enum DatasourcePackageIngestState {
175
- DISABLED = "DISABLED",
176
- STARTED = "STARTED",
177
- STOPPED = "STOPPED"
178
- }
180
+ export type DatasourcePackage = (typeof DatasourcePackage)[keyof typeof DatasourcePackage];
181
+ /**
182
+ * @public
183
+ * @enum
184
+ */
185
+ export declare const DatasourcePackageIngestState: {
186
+ readonly DISABLED: "DISABLED";
187
+ readonly STARTED: "STARTED";
188
+ readonly STOPPED: "STOPPED";
189
+ };
190
+ /**
191
+ * @public
192
+ */
193
+ export type DatasourcePackageIngestState = (typeof DatasourcePackageIngestState)[keyof typeof DatasourcePackageIngestState];
179
194
  /**
180
195
  * @public
181
196
  * <p>Details on when data collection began for a source package.</p>
@@ -355,28 +370,43 @@ export interface CreateMembersRequest {
355
370
  }
356
371
  /**
357
372
  * @public
373
+ * @enum
358
374
  */
359
- export declare enum MemberDisabledReason {
360
- VOLUME_TOO_HIGH = "VOLUME_TOO_HIGH",
361
- VOLUME_UNKNOWN = "VOLUME_UNKNOWN"
362
- }
375
+ export declare const MemberDisabledReason: {
376
+ readonly VOLUME_TOO_HIGH: "VOLUME_TOO_HIGH";
377
+ readonly VOLUME_UNKNOWN: "VOLUME_UNKNOWN";
378
+ };
363
379
  /**
364
380
  * @public
365
381
  */
366
- export declare enum InvitationType {
367
- INVITATION = "INVITATION",
368
- ORGANIZATION = "ORGANIZATION"
369
- }
382
+ export type MemberDisabledReason = (typeof MemberDisabledReason)[keyof typeof MemberDisabledReason];
370
383
  /**
371
384
  * @public
385
+ * @enum
372
386
  */
373
- export declare enum MemberStatus {
374
- ACCEPTED_BUT_DISABLED = "ACCEPTED_BUT_DISABLED",
375
- ENABLED = "ENABLED",
376
- INVITED = "INVITED",
377
- VERIFICATION_FAILED = "VERIFICATION_FAILED",
378
- VERIFICATION_IN_PROGRESS = "VERIFICATION_IN_PROGRESS"
379
- }
387
+ export declare const InvitationType: {
388
+ readonly INVITATION: "INVITATION";
389
+ readonly ORGANIZATION: "ORGANIZATION";
390
+ };
391
+ /**
392
+ * @public
393
+ */
394
+ export type InvitationType = (typeof InvitationType)[keyof typeof InvitationType];
395
+ /**
396
+ * @public
397
+ * @enum
398
+ */
399
+ export declare const MemberStatus: {
400
+ readonly ACCEPTED_BUT_DISABLED: "ACCEPTED_BUT_DISABLED";
401
+ readonly ENABLED: "ENABLED";
402
+ readonly INVITED: "INVITED";
403
+ readonly VERIFICATION_FAILED: "VERIFICATION_FAILED";
404
+ readonly VERIFICATION_IN_PROGRESS: "VERIFICATION_IN_PROGRESS";
405
+ };
406
+ /**
407
+ * @public
408
+ */
409
+ export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
380
410
  /**
381
411
  * @public
382
412
  * <p>Information on the usage of a data source package in the behavior graph.</p>
@@ -3,11 +3,12 @@ import { DetectiveServiceException as __BaseException } from "./DetectiveService
3
3
  export interface AcceptInvitationRequest {
4
4
  GraphArn: string | undefined;
5
5
  }
6
- export declare enum ErrorCode {
7
- InternalError = "INTERNAL_ERROR",
8
- InvalidGraphArn = "INVALID_GRAPH_ARN",
9
- InvalidRequestBody = "INVALID_REQUEST_BODY",
10
- }
6
+ export declare const ErrorCode: {
7
+ readonly InternalError: "INTERNAL_ERROR";
8
+ readonly InvalidGraphArn: "INVALID_GRAPH_ARN";
9
+ readonly InvalidRequestBody: "INVALID_REQUEST_BODY";
10
+ };
11
+ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
11
12
  export declare class AccessDeniedException extends __BaseException {
12
13
  readonly name: "AccessDeniedException";
13
14
  readonly $fault: "client";
@@ -65,15 +66,19 @@ export interface BatchGetGraphMemberDatasourcesRequest {
65
66
  GraphArn: string | undefined;
66
67
  AccountIds: string[] | undefined;
67
68
  }
68
- export declare enum DatasourcePackage {
69
- DETECTIVE_CORE = "DETECTIVE_CORE",
70
- EKS_AUDIT = "EKS_AUDIT",
71
- }
72
- export declare enum DatasourcePackageIngestState {
73
- DISABLED = "DISABLED",
74
- STARTED = "STARTED",
75
- STOPPED = "STOPPED",
76
- }
69
+ export declare const DatasourcePackage: {
70
+ readonly DETECTIVE_CORE: "DETECTIVE_CORE";
71
+ readonly EKS_AUDIT: "EKS_AUDIT";
72
+ };
73
+ export type DatasourcePackage =
74
+ (typeof DatasourcePackage)[keyof typeof DatasourcePackage];
75
+ export declare const DatasourcePackageIngestState: {
76
+ readonly DISABLED: "DISABLED";
77
+ readonly STARTED: "STARTED";
78
+ readonly STOPPED: "STOPPED";
79
+ };
80
+ export type DatasourcePackageIngestState =
81
+ (typeof DatasourcePackageIngestState)[keyof typeof DatasourcePackageIngestState];
77
82
  export interface TimestampForCollection {
78
83
  Timestamp?: Date;
79
84
  }
@@ -125,21 +130,26 @@ export interface CreateMembersRequest {
125
130
  DisableEmailNotification?: boolean;
126
131
  Accounts: Account[] | undefined;
127
132
  }
128
- export declare enum MemberDisabledReason {
129
- VOLUME_TOO_HIGH = "VOLUME_TOO_HIGH",
130
- VOLUME_UNKNOWN = "VOLUME_UNKNOWN",
131
- }
132
- export declare enum InvitationType {
133
- INVITATION = "INVITATION",
134
- ORGANIZATION = "ORGANIZATION",
135
- }
136
- export declare enum MemberStatus {
137
- ACCEPTED_BUT_DISABLED = "ACCEPTED_BUT_DISABLED",
138
- ENABLED = "ENABLED",
139
- INVITED = "INVITED",
140
- VERIFICATION_FAILED = "VERIFICATION_FAILED",
141
- VERIFICATION_IN_PROGRESS = "VERIFICATION_IN_PROGRESS",
142
- }
133
+ export declare const MemberDisabledReason: {
134
+ readonly VOLUME_TOO_HIGH: "VOLUME_TOO_HIGH";
135
+ readonly VOLUME_UNKNOWN: "VOLUME_UNKNOWN";
136
+ };
137
+ export type MemberDisabledReason =
138
+ (typeof MemberDisabledReason)[keyof typeof MemberDisabledReason];
139
+ export declare const InvitationType: {
140
+ readonly INVITATION: "INVITATION";
141
+ readonly ORGANIZATION: "ORGANIZATION";
142
+ };
143
+ export type InvitationType =
144
+ (typeof InvitationType)[keyof typeof InvitationType];
145
+ export declare const MemberStatus: {
146
+ readonly ACCEPTED_BUT_DISABLED: "ACCEPTED_BUT_DISABLED";
147
+ readonly ENABLED: "ENABLED";
148
+ readonly INVITED: "INVITED";
149
+ readonly VERIFICATION_FAILED: "VERIFICATION_FAILED";
150
+ readonly VERIFICATION_IN_PROGRESS: "VERIFICATION_IN_PROGRESS";
151
+ };
152
+ export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
143
153
  export interface DatasourcePackageUsageInfo {
144
154
  VolumeUsageInBytes?: number;
145
155
  VolumeUsageUpdateTime?: Date;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-detective",
3
3
  "description": "AWS SDK for JavaScript Detective Client for Node.js, Browser and React Native",
4
- "version": "3.301.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,42 +21,42 @@
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.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.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",
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
56
  "tslib": "^2.5.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
59
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
60
60
  "@tsconfig/node14": "1.0.3",
61
61
  "@types/node": "^14.14.31",
62
62
  "concurrently": "7.0.0",