@aws-sdk/client-iotfleetwise 3.301.0 → 3.306.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.
@@ -7,35 +7,36 @@ export declare class AccessDeniedException extends __BaseException {
7
7
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
8
  );
9
9
  }
10
- export declare enum NodeDataType {
11
- BOOLEAN = "BOOLEAN",
12
- BOOLEAN_ARRAY = "BOOLEAN_ARRAY",
13
- DOUBLE = "DOUBLE",
14
- DOUBLE_ARRAY = "DOUBLE_ARRAY",
15
- FLOAT = "FLOAT",
16
- FLOAT_ARRAY = "FLOAT_ARRAY",
17
- INT16 = "INT16",
18
- INT16_ARRAY = "INT16_ARRAY",
19
- INT32 = "INT32",
20
- INT32_ARRAY = "INT32_ARRAY",
21
- INT64 = "INT64",
22
- INT64_ARRAY = "INT64_ARRAY",
23
- INT8 = "INT8",
24
- INT8_ARRAY = "INT8_ARRAY",
25
- STRING = "STRING",
26
- STRING_ARRAY = "STRING_ARRAY",
27
- UINT16 = "UINT16",
28
- UINT16_ARRAY = "UINT16_ARRAY",
29
- UINT32 = "UINT32",
30
- UINT32_ARRAY = "UINT32_ARRAY",
31
- UINT64 = "UINT64",
32
- UINT64_ARRAY = "UINT64_ARRAY",
33
- UINT8 = "UINT8",
34
- UINT8_ARRAY = "UINT8_ARRAY",
35
- UNIX_TIMESTAMP = "UNIX_TIMESTAMP",
36
- UNIX_TIMESTAMP_ARRAY = "UNIX_TIMESTAMP_ARRAY",
37
- UNKNOWN = "UNKNOWN",
38
- }
10
+ export declare const NodeDataType: {
11
+ readonly BOOLEAN: "BOOLEAN";
12
+ readonly BOOLEAN_ARRAY: "BOOLEAN_ARRAY";
13
+ readonly DOUBLE: "DOUBLE";
14
+ readonly DOUBLE_ARRAY: "DOUBLE_ARRAY";
15
+ readonly FLOAT: "FLOAT";
16
+ readonly FLOAT_ARRAY: "FLOAT_ARRAY";
17
+ readonly INT16: "INT16";
18
+ readonly INT16_ARRAY: "INT16_ARRAY";
19
+ readonly INT32: "INT32";
20
+ readonly INT32_ARRAY: "INT32_ARRAY";
21
+ readonly INT64: "INT64";
22
+ readonly INT64_ARRAY: "INT64_ARRAY";
23
+ readonly INT8: "INT8";
24
+ readonly INT8_ARRAY: "INT8_ARRAY";
25
+ readonly STRING: "STRING";
26
+ readonly STRING_ARRAY: "STRING_ARRAY";
27
+ readonly UINT16: "UINT16";
28
+ readonly UINT16_ARRAY: "UINT16_ARRAY";
29
+ readonly UINT32: "UINT32";
30
+ readonly UINT32_ARRAY: "UINT32_ARRAY";
31
+ readonly UINT64: "UINT64";
32
+ readonly UINT64_ARRAY: "UINT64_ARRAY";
33
+ readonly UINT8: "UINT8";
34
+ readonly UINT8_ARRAY: "UINT8_ARRAY";
35
+ readonly UNIX_TIMESTAMP: "UNIX_TIMESTAMP";
36
+ readonly UNIX_TIMESTAMP_ARRAY: "UNIX_TIMESTAMP_ARRAY";
37
+ readonly UNKNOWN: "UNKNOWN";
38
+ };
39
+ export type NodeDataType = (typeof NodeDataType)[keyof typeof NodeDataType];
39
40
  export interface Actuator {
40
41
  fullyQualifiedName: string | undefined;
41
42
  dataType: NodeDataType | string | undefined;
@@ -82,12 +83,14 @@ export interface ValidationExceptionField {
82
83
  name: string | undefined;
83
84
  message: string | undefined;
84
85
  }
85
- export declare enum ValidationExceptionReason {
86
- CANNOT_PARSE = "cannotParse",
87
- FIELD_VALIDATION_FAILED = "fieldValidationFailed",
88
- OTHER = "other",
89
- UNKNOWN_OPERATION = "unknownOperation",
90
- }
86
+ export declare const ValidationExceptionReason: {
87
+ readonly CANNOT_PARSE: "cannotParse";
88
+ readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
89
+ readonly OTHER: "other";
90
+ readonly UNKNOWN_OPERATION: "unknownOperation";
91
+ };
92
+ export type ValidationExceptionReason =
93
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
91
94
  export declare class ValidationException extends __BaseException {
92
95
  readonly name: "ValidationException";
93
96
  readonly $fault: "client";
@@ -108,10 +111,12 @@ export interface Attribute {
108
111
  assignedValue?: string;
109
112
  defaultValue?: string;
110
113
  }
111
- export declare enum VehicleAssociationBehavior {
112
- CREATE_IOT_THING = "CreateIotThing",
113
- VALIDATE_IOT_THING_EXISTS = "ValidateIotThingExists",
114
- }
114
+ export declare const VehicleAssociationBehavior: {
115
+ readonly CREATE_IOT_THING: "CreateIotThing";
116
+ readonly VALIDATE_IOT_THING_EXISTS: "ValidateIotThingExists";
117
+ };
118
+ export type VehicleAssociationBehavior =
119
+ (typeof VehicleAssociationBehavior)[keyof typeof VehicleAssociationBehavior];
115
120
  export interface Tag {
116
121
  Key: string | undefined;
117
122
  Value: string | undefined;
@@ -150,10 +155,11 @@ export declare class LimitExceededException extends __BaseException {
150
155
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
151
156
  );
152
157
  }
153
- export declare enum UpdateMode {
154
- MERGE = "Merge",
155
- OVERWRITE = "Overwrite",
156
- }
158
+ export declare const UpdateMode: {
159
+ readonly MERGE: "Merge";
160
+ readonly OVERWRITE: "Overwrite";
161
+ };
162
+ export type UpdateMode = (typeof UpdateMode)[keyof typeof UpdateMode];
157
163
  export interface UpdateVehicleRequestItem {
158
164
  vehicleName: string | undefined;
159
165
  modelManifestArn?: string;
@@ -188,10 +194,11 @@ export declare class ConflictException extends __BaseException {
188
194
  resourceType: string | undefined;
189
195
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
190
196
  }
191
- export declare enum TriggerMode {
192
- ALWAYS = "ALWAYS",
193
- RISING_EDGE = "RISING_EDGE",
194
- }
197
+ export declare const TriggerMode: {
198
+ readonly ALWAYS: "ALWAYS";
199
+ readonly RISING_EDGE: "RISING_EDGE";
200
+ };
201
+ export type TriggerMode = (typeof TriggerMode)[keyof typeof TriggerMode];
195
202
  export interface ConditionBasedCollectionScheme {
196
203
  expression: string | undefined;
197
204
  minimumTriggerIntervalMs?: number;
@@ -230,23 +237,27 @@ export declare namespace CollectionScheme {
230
237
  }
231
238
  const visit: <T>(value: CollectionScheme, visitor: Visitor<T>) => T;
232
239
  }
233
- export declare enum Compression {
234
- OFF = "OFF",
235
- SNAPPY = "SNAPPY",
236
- }
237
- export declare enum DiagnosticsMode {
238
- OFF = "OFF",
239
- SEND_ACTIVE_DTCS = "SEND_ACTIVE_DTCS",
240
- }
240
+ export declare const Compression: {
241
+ readonly OFF: "OFF";
242
+ readonly SNAPPY: "SNAPPY";
243
+ };
244
+ export type Compression = (typeof Compression)[keyof typeof Compression];
245
+ export declare const DiagnosticsMode: {
246
+ readonly OFF: "OFF";
247
+ readonly SEND_ACTIVE_DTCS: "SEND_ACTIVE_DTCS";
248
+ };
249
+ export type DiagnosticsMode =
250
+ (typeof DiagnosticsMode)[keyof typeof DiagnosticsMode];
241
251
  export interface SignalInformation {
242
252
  name: string | undefined;
243
253
  maxSampleCount?: number;
244
254
  minimumSamplingIntervalMs?: number;
245
255
  }
246
- export declare enum SpoolingMode {
247
- OFF = "OFF",
248
- TO_DISK = "TO_DISK",
249
- }
256
+ export declare const SpoolingMode: {
257
+ readonly OFF: "OFF";
258
+ readonly TO_DISK: "TO_DISK";
259
+ };
260
+ export type SpoolingMode = (typeof SpoolingMode)[keyof typeof SpoolingMode];
250
261
  export interface CreateCampaignRequest {
251
262
  name: string | undefined;
252
263
  description?: string;
@@ -278,12 +289,14 @@ export interface DeleteCampaignResponse {
278
289
  export interface GetCampaignRequest {
279
290
  name: string | undefined;
280
291
  }
281
- export declare enum CampaignStatus {
282
- CREATING = "CREATING",
283
- RUNNING = "RUNNING",
284
- SUSPENDED = "SUSPENDED",
285
- WAITING_FOR_APPROVAL = "WAITING_FOR_APPROVAL",
286
- }
292
+ export declare const CampaignStatus: {
293
+ readonly CREATING: "CREATING";
294
+ readonly RUNNING: "RUNNING";
295
+ readonly SUSPENDED: "SUSPENDED";
296
+ readonly WAITING_FOR_APPROVAL: "WAITING_FOR_APPROVAL";
297
+ };
298
+ export type CampaignStatus =
299
+ (typeof CampaignStatus)[keyof typeof CampaignStatus];
287
300
  export interface GetCampaignResponse {
288
301
  name?: string;
289
302
  arn?: string;
@@ -323,12 +336,14 @@ export interface ListCampaignsResponse {
323
336
  campaignSummaries?: CampaignSummary[];
324
337
  nextToken?: string;
325
338
  }
326
- export declare enum UpdateCampaignAction {
327
- APPROVE = "APPROVE",
328
- RESUME = "RESUME",
329
- SUSPEND = "SUSPEND",
330
- UPDATE = "UPDATE",
331
- }
339
+ export declare const UpdateCampaignAction: {
340
+ readonly APPROVE: "APPROVE";
341
+ readonly RESUME: "RESUME";
342
+ readonly SUSPEND: "SUSPEND";
343
+ readonly UPDATE: "UPDATE";
344
+ };
345
+ export type UpdateCampaignAction =
346
+ (typeof UpdateCampaignAction)[keyof typeof UpdateCampaignAction];
332
347
  export interface UpdateCampaignRequest {
333
348
  name: string | undefined;
334
349
  description?: string;
@@ -360,10 +375,11 @@ export interface CanSignal {
360
375
  length: number | undefined;
361
376
  name?: string;
362
377
  }
363
- export declare enum LogType {
364
- ERROR = "ERROR",
365
- OFF = "OFF",
366
- }
378
+ export declare const LogType: {
379
+ readonly ERROR: "ERROR";
380
+ readonly OFF: "OFF";
381
+ };
382
+ export type LogType = (typeof LogType)[keyof typeof LogType];
367
383
  export interface CloudWatchLogDeliveryOptions {
368
384
  logType: LogType | string | undefined;
369
385
  logGroupName?: string;
@@ -377,10 +393,12 @@ export interface ObdInterface {
377
393
  useExtendedIds?: boolean;
378
394
  hasTransmissionEcu?: boolean;
379
395
  }
380
- export declare enum NetworkInterfaceType {
381
- CAN_INTERFACE = "CAN_INTERFACE",
382
- OBD_INTERFACE = "OBD_INTERFACE",
383
- }
396
+ export declare const NetworkInterfaceType: {
397
+ readonly CAN_INTERFACE: "CAN_INTERFACE";
398
+ readonly OBD_INTERFACE: "OBD_INTERFACE";
399
+ };
400
+ export type NetworkInterfaceType =
401
+ (typeof NetworkInterfaceType)[keyof typeof NetworkInterfaceType];
384
402
  export interface NetworkInterface {
385
403
  interfaceId: string | undefined;
386
404
  type: NetworkInterfaceType | string | undefined;
@@ -398,10 +416,12 @@ export interface ObdSignal {
398
416
  bitRightShift?: number;
399
417
  bitMaskLength?: number;
400
418
  }
401
- export declare enum SignalDecoderType {
402
- CAN_SIGNAL = "CAN_SIGNAL",
403
- OBD_SIGNAL = "OBD_SIGNAL",
404
- }
419
+ export declare const SignalDecoderType: {
420
+ readonly CAN_SIGNAL: "CAN_SIGNAL";
421
+ readonly OBD_SIGNAL: "OBD_SIGNAL";
422
+ };
423
+ export type SignalDecoderType =
424
+ (typeof SignalDecoderType)[keyof typeof SignalDecoderType];
405
425
  export interface SignalDecoder {
406
426
  fullyQualifiedName: string | undefined;
407
427
  type: SignalDecoderType | string | undefined;
@@ -421,29 +441,33 @@ export interface CreateDecoderManifestResponse {
421
441
  name: string | undefined;
422
442
  arn: string | undefined;
423
443
  }
424
- export declare enum NetworkInterfaceFailureReason {
425
- CAN_NETWORK_INTERFACE_INFO_IS_NULL = "CAN_NETWORK_INTERFACE_INFO_IS_NULL",
426
- CONFLICTING_NETWORK_INTERFACE = "CONFLICTING_NETWORK_INTERFACE",
427
- DUPLICATE_INTERFACE = "DUPLICATE_NETWORK_INTERFACE",
428
- NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS = "NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS",
429
- NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS = "NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS",
430
- OBD_NETWORK_INTERFACE_INFO_IS_NULL = "OBD_NETWORK_INTERFACE_INFO_IS_NULL",
431
- }
444
+ export declare const NetworkInterfaceFailureReason: {
445
+ readonly CAN_NETWORK_INTERFACE_INFO_IS_NULL: "CAN_NETWORK_INTERFACE_INFO_IS_NULL";
446
+ readonly CONFLICTING_NETWORK_INTERFACE: "CONFLICTING_NETWORK_INTERFACE";
447
+ readonly DUPLICATE_INTERFACE: "DUPLICATE_NETWORK_INTERFACE";
448
+ readonly NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS: "NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS";
449
+ readonly NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS: "NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS";
450
+ readonly OBD_NETWORK_INTERFACE_INFO_IS_NULL: "OBD_NETWORK_INTERFACE_INFO_IS_NULL";
451
+ };
452
+ export type NetworkInterfaceFailureReason =
453
+ (typeof NetworkInterfaceFailureReason)[keyof typeof NetworkInterfaceFailureReason];
432
454
  export interface InvalidNetworkInterface {
433
455
  interfaceId?: string;
434
456
  reason?: NetworkInterfaceFailureReason | string;
435
457
  }
436
- export declare enum SignalDecoderFailureReason {
437
- CAN_SIGNAL_INFO_IS_NULL = "CAN_SIGNAL_INFO_IS_NULL",
438
- CONFLICTING_SIGNAL = "CONFLICTING_SIGNAL",
439
- DUPLICATE_SIGNAL = "DUPLICATE_SIGNAL",
440
- NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE = "NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE",
441
- NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL = "NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL",
442
- OBD_SIGNAL_INFO_IS_NULL = "OBD_SIGNAL_INFO_IS_NULL",
443
- SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE = "SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE",
444
- SIGNAL_NOT_IN_MODEL = "SIGNAL_NOT_IN_MODEL",
445
- SIGNAL_TO_ADD_ALREADY_EXISTS = "SIGNAL_TO_ADD_ALREADY_EXISTS",
446
- }
458
+ export declare const SignalDecoderFailureReason: {
459
+ readonly CAN_SIGNAL_INFO_IS_NULL: "CAN_SIGNAL_INFO_IS_NULL";
460
+ readonly CONFLICTING_SIGNAL: "CONFLICTING_SIGNAL";
461
+ readonly DUPLICATE_SIGNAL: "DUPLICATE_SIGNAL";
462
+ readonly NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE: "NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE";
463
+ readonly NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL: "NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL";
464
+ readonly OBD_SIGNAL_INFO_IS_NULL: "OBD_SIGNAL_INFO_IS_NULL";
465
+ readonly SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE: "SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE";
466
+ readonly SIGNAL_NOT_IN_MODEL: "SIGNAL_NOT_IN_MODEL";
467
+ readonly SIGNAL_TO_ADD_ALREADY_EXISTS: "SIGNAL_TO_ADD_ALREADY_EXISTS";
468
+ };
469
+ export type SignalDecoderFailureReason =
470
+ (typeof SignalDecoderFailureReason)[keyof typeof SignalDecoderFailureReason];
447
471
  export interface InvalidSignalDecoder {
448
472
  name?: string;
449
473
  reason?: SignalDecoderFailureReason | string;
@@ -595,10 +619,12 @@ export interface DeleteDecoderManifestResponse {
595
619
  export interface GetDecoderManifestRequest {
596
620
  name: string | undefined;
597
621
  }
598
- export declare enum ManifestStatus {
599
- ACTIVE = "ACTIVE",
600
- DRAFT = "DRAFT",
601
- }
622
+ export declare const ManifestStatus: {
623
+ readonly ACTIVE: "ACTIVE";
624
+ readonly DRAFT: "DRAFT";
625
+ };
626
+ export type ManifestStatus =
627
+ (typeof ManifestStatus)[keyof typeof ManifestStatus];
602
628
  export interface GetDecoderManifestResponse {
603
629
  name: string | undefined;
604
630
  arn: string | undefined;
@@ -806,11 +832,13 @@ export interface GetModelManifestResponse {
806
832
  lastModificationTime: Date | undefined;
807
833
  }
808
834
  export interface GetRegisterAccountStatusRequest {}
809
- export declare enum RegistrationStatus {
810
- REGISTRATION_FAILURE = "REGISTRATION_FAILURE",
811
- REGISTRATION_PENDING = "REGISTRATION_PENDING",
812
- REGISTRATION_SUCCESS = "REGISTRATION_SUCCESS",
813
- }
835
+ export declare const RegistrationStatus: {
836
+ readonly REGISTRATION_FAILURE: "REGISTRATION_FAILURE";
837
+ readonly REGISTRATION_PENDING: "REGISTRATION_PENDING";
838
+ readonly REGISTRATION_SUCCESS: "REGISTRATION_SUCCESS";
839
+ };
840
+ export type RegistrationStatus =
841
+ (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
814
842
  export interface IamRegistrationResponse {
815
843
  roleArn: string | undefined;
816
844
  registrationStatus: RegistrationStatus | string | undefined;
@@ -867,13 +895,14 @@ export interface GetVehicleStatusRequest {
867
895
  maxResults?: number;
868
896
  vehicleName: string | undefined;
869
897
  }
870
- export declare enum VehicleState {
871
- CREATED = "CREATED",
872
- DELETING = "DELETING",
873
- HEALTHY = "HEALTHY",
874
- READY = "READY",
875
- SUSPENDED = "SUSPENDED",
876
- }
898
+ export declare const VehicleState: {
899
+ readonly CREATED: "CREATED";
900
+ readonly DELETING: "DELETING";
901
+ readonly HEALTHY: "HEALTHY";
902
+ readonly READY: "READY";
903
+ readonly SUSPENDED: "SUSPENDED";
904
+ };
905
+ export type VehicleState = (typeof VehicleState)[keyof typeof VehicleState];
877
906
  export interface VehicleStatus {
878
907
  campaignName?: string;
879
908
  vehicleName?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iotfleetwise",
3
3
  "description": "AWS SDK for JavaScript Iotfleetwise Client for Node.js, Browser and React Native",
4
- "version": "3.301.0",
4
+ "version": "3.306.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.306.0",
25
+ "@aws-sdk/config-resolver": "3.306.0",
26
+ "@aws-sdk/credential-provider-node": "3.306.0",
27
+ "@aws-sdk/fetch-http-handler": "3.306.0",
28
+ "@aws-sdk/hash-node": "3.306.0",
29
+ "@aws-sdk/invalid-dependency": "3.306.0",
30
+ "@aws-sdk/middleware-content-length": "3.306.0",
31
+ "@aws-sdk/middleware-endpoint": "3.306.0",
32
+ "@aws-sdk/middleware-host-header": "3.306.0",
33
+ "@aws-sdk/middleware-logger": "3.306.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.306.0",
35
+ "@aws-sdk/middleware-retry": "3.306.0",
36
+ "@aws-sdk/middleware-serde": "3.306.0",
37
+ "@aws-sdk/middleware-signing": "3.306.0",
38
+ "@aws-sdk/middleware-stack": "3.306.0",
39
+ "@aws-sdk/middleware-user-agent": "3.306.0",
40
+ "@aws-sdk/node-config-provider": "3.306.0",
41
+ "@aws-sdk/node-http-handler": "3.306.0",
42
+ "@aws-sdk/protocol-http": "3.306.0",
43
+ "@aws-sdk/smithy-client": "3.306.0",
44
+ "@aws-sdk/types": "3.306.0",
45
+ "@aws-sdk/url-parser": "3.306.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.306.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.306.0",
51
+ "@aws-sdk/util-endpoints": "3.306.0",
52
+ "@aws-sdk/util-retry": "3.306.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.306.0",
54
+ "@aws-sdk/util-user-agent-node": "3.306.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",