@aws-sdk/client-route53resolver 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.
@@ -8,15 +8,18 @@ export declare class AccessDeniedException extends __BaseException {
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
10
10
  }
11
- export declare enum Action {
12
- ALERT = "ALERT",
13
- ALLOW = "ALLOW",
14
- BLOCK = "BLOCK",
15
- }
16
- export declare enum MutationProtectionStatus {
17
- DISABLED = "DISABLED",
18
- ENABLED = "ENABLED",
19
- }
11
+ export declare const Action: {
12
+ readonly ALERT: "ALERT";
13
+ readonly ALLOW: "ALLOW";
14
+ readonly BLOCK: "BLOCK";
15
+ };
16
+ export type Action = (typeof Action)[keyof typeof Action];
17
+ export declare const MutationProtectionStatus: {
18
+ readonly DISABLED: "DISABLED";
19
+ readonly ENABLED: "ENABLED";
20
+ };
21
+ export type MutationProtectionStatus =
22
+ (typeof MutationProtectionStatus)[keyof typeof MutationProtectionStatus];
20
23
  export interface Tag {
21
24
  Key: string | undefined;
22
25
  Value: string | undefined;
@@ -30,11 +33,13 @@ export interface AssociateFirewallRuleGroupRequest {
30
33
  MutationProtection?: MutationProtectionStatus | string;
31
34
  Tags?: Tag[];
32
35
  }
33
- export declare enum FirewallRuleGroupAssociationStatus {
34
- COMPLETE = "COMPLETE",
35
- DELETING = "DELETING",
36
- UPDATING = "UPDATING",
37
- }
36
+ export declare const FirewallRuleGroupAssociationStatus: {
37
+ readonly COMPLETE: "COMPLETE";
38
+ readonly DELETING: "DELETING";
39
+ readonly UPDATING: "UPDATING";
40
+ };
41
+ export type FirewallRuleGroupAssociationStatus =
42
+ (typeof FirewallRuleGroupAssociationStatus)[keyof typeof FirewallRuleGroupAssociationStatus];
38
43
  export interface FirewallRuleGroupAssociation {
39
44
  Id?: string;
40
45
  Arn?: string;
@@ -111,23 +116,29 @@ export interface AssociateResolverEndpointIpAddressRequest {
111
116
  ResolverEndpointId: string | undefined;
112
117
  IpAddress: IpAddressUpdate | undefined;
113
118
  }
114
- export declare enum ResolverEndpointDirection {
115
- Inbound = "INBOUND",
116
- Outbound = "OUTBOUND",
117
- }
118
- export declare enum ResolverEndpointType {
119
- DUALSTACK = "DUALSTACK",
120
- IPV4 = "IPV4",
121
- IPV6 = "IPV6",
122
- }
123
- export declare enum ResolverEndpointStatus {
124
- ActionNeeded = "ACTION_NEEDED",
125
- AutoRecovering = "AUTO_RECOVERING",
126
- Creating = "CREATING",
127
- Deleting = "DELETING",
128
- Operational = "OPERATIONAL",
129
- Updating = "UPDATING",
130
- }
119
+ export declare const ResolverEndpointDirection: {
120
+ readonly Inbound: "INBOUND";
121
+ readonly Outbound: "OUTBOUND";
122
+ };
123
+ export type ResolverEndpointDirection =
124
+ (typeof ResolverEndpointDirection)[keyof typeof ResolverEndpointDirection];
125
+ export declare const ResolverEndpointType: {
126
+ readonly DUALSTACK: "DUALSTACK";
127
+ readonly IPV4: "IPV4";
128
+ readonly IPV6: "IPV6";
129
+ };
130
+ export type ResolverEndpointType =
131
+ (typeof ResolverEndpointType)[keyof typeof ResolverEndpointType];
132
+ export declare const ResolverEndpointStatus: {
133
+ readonly ActionNeeded: "ACTION_NEEDED";
134
+ readonly AutoRecovering: "AUTO_RECOVERING";
135
+ readonly Creating: "CREATING";
136
+ readonly Deleting: "DELETING";
137
+ readonly Operational: "OPERATIONAL";
138
+ readonly Updating: "UPDATING";
139
+ };
140
+ export type ResolverEndpointStatus =
141
+ (typeof ResolverEndpointStatus)[keyof typeof ResolverEndpointStatus];
131
142
  export interface ResolverEndpoint {
132
143
  Id?: string;
133
144
  CreatorRequestId?: string;
@@ -176,19 +187,23 @@ export interface AssociateResolverQueryLogConfigRequest {
176
187
  ResolverQueryLogConfigId: string | undefined;
177
188
  ResourceId: string | undefined;
178
189
  }
179
- export declare enum ResolverQueryLogConfigAssociationError {
180
- AccessDenied = "ACCESS_DENIED",
181
- DestinationNotFound = "DESTINATION_NOT_FOUND",
182
- InternalServiceError = "INTERNAL_SERVICE_ERROR",
183
- None = "NONE",
184
- }
185
- export declare enum ResolverQueryLogConfigAssociationStatus {
186
- ActionNeeded = "ACTION_NEEDED",
187
- Active = "ACTIVE",
188
- Creating = "CREATING",
189
- Deleting = "DELETING",
190
- Failed = "FAILED",
191
- }
190
+ export declare const ResolverQueryLogConfigAssociationError: {
191
+ readonly AccessDenied: "ACCESS_DENIED";
192
+ readonly DestinationNotFound: "DESTINATION_NOT_FOUND";
193
+ readonly InternalServiceError: "INTERNAL_SERVICE_ERROR";
194
+ readonly None: "NONE";
195
+ };
196
+ export type ResolverQueryLogConfigAssociationError =
197
+ (typeof ResolverQueryLogConfigAssociationError)[keyof typeof ResolverQueryLogConfigAssociationError];
198
+ export declare const ResolverQueryLogConfigAssociationStatus: {
199
+ readonly ActionNeeded: "ACTION_NEEDED";
200
+ readonly Active: "ACTIVE";
201
+ readonly Creating: "CREATING";
202
+ readonly Deleting: "DELETING";
203
+ readonly Failed: "FAILED";
204
+ };
205
+ export type ResolverQueryLogConfigAssociationStatus =
206
+ (typeof ResolverQueryLogConfigAssociationStatus)[keyof typeof ResolverQueryLogConfigAssociationStatus];
192
207
  export interface ResolverQueryLogConfigAssociation {
193
208
  Id?: string;
194
209
  ResolverQueryLogConfigId?: string;
@@ -206,13 +221,15 @@ export interface AssociateResolverRuleRequest {
206
221
  Name?: string;
207
222
  VPCId: string | undefined;
208
223
  }
209
- export declare enum ResolverRuleAssociationStatus {
210
- Complete = "COMPLETE",
211
- Creating = "CREATING",
212
- Deleting = "DELETING",
213
- Failed = "FAILED",
214
- Overridden = "OVERRIDDEN",
215
- }
224
+ export declare const ResolverRuleAssociationStatus: {
225
+ readonly Complete: "COMPLETE";
226
+ readonly Creating: "CREATING";
227
+ readonly Deleting: "DELETING";
228
+ readonly Failed: "FAILED";
229
+ readonly Overridden: "OVERRIDDEN";
230
+ };
231
+ export type ResolverRuleAssociationStatus =
232
+ (typeof ResolverRuleAssociationStatus)[keyof typeof ResolverRuleAssociationStatus];
216
233
  export interface ResolverRuleAssociation {
217
234
  Id?: string;
218
235
  ResolverRuleId?: string;
@@ -233,31 +250,38 @@ export declare class ResourceUnavailableException extends __BaseException {
233
250
  opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
234
251
  );
235
252
  }
236
- export declare enum AutodefinedReverseFlag {
237
- DISABLE = "DISABLE",
238
- ENABLE = "ENABLE",
239
- USE_LOCAL_RESOURCE_SETTING = "USE_LOCAL_RESOURCE_SETTING",
240
- }
241
- export declare enum BlockOverrideDnsType {
242
- CNAME = "CNAME",
243
- }
244
- export declare enum BlockResponse {
245
- NODATA = "NODATA",
246
- NXDOMAIN = "NXDOMAIN",
247
- OVERRIDE = "OVERRIDE",
248
- }
253
+ export declare const AutodefinedReverseFlag: {
254
+ readonly DISABLE: "DISABLE";
255
+ readonly ENABLE: "ENABLE";
256
+ readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
257
+ };
258
+ export type AutodefinedReverseFlag =
259
+ (typeof AutodefinedReverseFlag)[keyof typeof AutodefinedReverseFlag];
260
+ export declare const BlockOverrideDnsType: {
261
+ readonly CNAME: "CNAME";
262
+ };
263
+ export type BlockOverrideDnsType =
264
+ (typeof BlockOverrideDnsType)[keyof typeof BlockOverrideDnsType];
265
+ export declare const BlockResponse: {
266
+ readonly NODATA: "NODATA";
267
+ readonly NXDOMAIN: "NXDOMAIN";
268
+ readonly OVERRIDE: "OVERRIDE";
269
+ };
270
+ export type BlockResponse = (typeof BlockResponse)[keyof typeof BlockResponse];
249
271
  export interface CreateFirewallDomainListRequest {
250
272
  CreatorRequestId?: string;
251
273
  Name: string | undefined;
252
274
  Tags?: Tag[];
253
275
  }
254
- export declare enum FirewallDomainListStatus {
255
- COMPLETE = "COMPLETE",
256
- COMPLETE_IMPORT_FAILED = "COMPLETE_IMPORT_FAILED",
257
- DELETING = "DELETING",
258
- IMPORTING = "IMPORTING",
259
- UPDATING = "UPDATING",
260
- }
276
+ export declare const FirewallDomainListStatus: {
277
+ readonly COMPLETE: "COMPLETE";
278
+ readonly COMPLETE_IMPORT_FAILED: "COMPLETE_IMPORT_FAILED";
279
+ readonly DELETING: "DELETING";
280
+ readonly IMPORTING: "IMPORTING";
281
+ readonly UPDATING: "UPDATING";
282
+ };
283
+ export type FirewallDomainListStatus =
284
+ (typeof FirewallDomainListStatus)[keyof typeof FirewallDomainListStatus];
261
285
  export interface FirewallDomainList {
262
286
  Id?: string;
263
287
  Arn?: string;
@@ -307,16 +331,19 @@ export interface CreateFirewallRuleGroupRequest {
307
331
  Name: string | undefined;
308
332
  Tags?: Tag[];
309
333
  }
310
- export declare enum ShareStatus {
311
- NotShared = "NOT_SHARED",
312
- SharedByMe = "SHARED_BY_ME",
313
- SharedWithMe = "SHARED_WITH_ME",
314
- }
315
- export declare enum FirewallRuleGroupStatus {
316
- COMPLETE = "COMPLETE",
317
- DELETING = "DELETING",
318
- UPDATING = "UPDATING",
319
- }
334
+ export declare const ShareStatus: {
335
+ readonly NotShared: "NOT_SHARED";
336
+ readonly SharedByMe: "SHARED_BY_ME";
337
+ readonly SharedWithMe: "SHARED_WITH_ME";
338
+ };
339
+ export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
340
+ export declare const FirewallRuleGroupStatus: {
341
+ readonly COMPLETE: "COMPLETE";
342
+ readonly DELETING: "DELETING";
343
+ readonly UPDATING: "UPDATING";
344
+ };
345
+ export type FirewallRuleGroupStatus =
346
+ (typeof FirewallRuleGroupStatus)[keyof typeof FirewallRuleGroupStatus];
320
347
  export interface FirewallRuleGroup {
321
348
  Id?: string;
322
349
  Arn?: string;
@@ -356,12 +383,14 @@ export interface CreateResolverQueryLogConfigRequest {
356
383
  CreatorRequestId?: string;
357
384
  Tags?: Tag[];
358
385
  }
359
- export declare enum ResolverQueryLogConfigStatus {
360
- Created = "CREATED",
361
- Creating = "CREATING",
362
- Deleting = "DELETING",
363
- Failed = "FAILED",
364
- }
386
+ export declare const ResolverQueryLogConfigStatus: {
387
+ readonly Created: "CREATED";
388
+ readonly Creating: "CREATING";
389
+ readonly Deleting: "DELETING";
390
+ readonly Failed: "FAILED";
391
+ };
392
+ export type ResolverQueryLogConfigStatus =
393
+ (typeof ResolverQueryLogConfigStatus)[keyof typeof ResolverQueryLogConfigStatus];
365
394
  export interface ResolverQueryLogConfig {
366
395
  Id?: string;
367
396
  OwnerId?: string;
@@ -377,11 +406,13 @@ export interface ResolverQueryLogConfig {
377
406
  export interface CreateResolverQueryLogConfigResponse {
378
407
  ResolverQueryLogConfig?: ResolverQueryLogConfig;
379
408
  }
380
- export declare enum RuleTypeOption {
381
- Forward = "FORWARD",
382
- Recursive = "RECURSIVE",
383
- System = "SYSTEM",
384
- }
409
+ export declare const RuleTypeOption: {
410
+ readonly Forward: "FORWARD";
411
+ readonly Recursive: "RECURSIVE";
412
+ readonly System: "SYSTEM";
413
+ };
414
+ export type RuleTypeOption =
415
+ (typeof RuleTypeOption)[keyof typeof RuleTypeOption];
385
416
  export interface TargetAddress {
386
417
  Ip?: string;
387
418
  Port?: number;
@@ -396,12 +427,14 @@ export interface CreateResolverRuleRequest {
396
427
  ResolverEndpointId?: string;
397
428
  Tags?: Tag[];
398
429
  }
399
- export declare enum ResolverRuleStatus {
400
- Complete = "COMPLETE",
401
- Deleting = "DELETING",
402
- Failed = "FAILED",
403
- Updating = "UPDATING",
404
- }
430
+ export declare const ResolverRuleStatus: {
431
+ readonly Complete: "COMPLETE";
432
+ readonly Deleting: "DELETING";
433
+ readonly Failed: "FAILED";
434
+ readonly Updating: "UPDATING";
435
+ };
436
+ export type ResolverRuleStatus =
437
+ (typeof ResolverRuleStatus)[keyof typeof ResolverRuleStatus];
405
438
  export interface ResolverRule {
406
439
  Id?: string;
407
440
  CreatorRequestId?: string;
@@ -498,20 +531,24 @@ export interface Filter {
498
531
  Name?: string;
499
532
  Values?: string[];
500
533
  }
501
- export declare enum FirewallFailOpenStatus {
502
- DISABLED = "DISABLED",
503
- ENABLED = "ENABLED",
504
- USE_LOCAL_RESOURCE_SETTING = "USE_LOCAL_RESOURCE_SETTING",
505
- }
534
+ export declare const FirewallFailOpenStatus: {
535
+ readonly DISABLED: "DISABLED";
536
+ readonly ENABLED: "ENABLED";
537
+ readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
538
+ };
539
+ export type FirewallFailOpenStatus =
540
+ (typeof FirewallFailOpenStatus)[keyof typeof FirewallFailOpenStatus];
506
541
  export interface FirewallConfig {
507
542
  Id?: string;
508
543
  ResourceId?: string;
509
544
  OwnerId?: string;
510
545
  FirewallFailOpen?: FirewallFailOpenStatus | string;
511
546
  }
512
- export declare enum FirewallDomainImportOperation {
513
- REPLACE = "REPLACE",
514
- }
547
+ export declare const FirewallDomainImportOperation: {
548
+ readonly REPLACE: "REPLACE";
549
+ };
550
+ export type FirewallDomainImportOperation =
551
+ (typeof FirewallDomainImportOperation)[keyof typeof FirewallDomainImportOperation];
515
552
  export interface FirewallDomainListMetadata {
516
553
  Id?: string;
517
554
  Arn?: string;
@@ -519,11 +556,13 @@ export interface FirewallDomainListMetadata {
519
556
  CreatorRequestId?: string;
520
557
  ManagedOwnerName?: string;
521
558
  }
522
- export declare enum FirewallDomainUpdateOperation {
523
- ADD = "ADD",
524
- REMOVE = "REMOVE",
525
- REPLACE = "REPLACE",
526
- }
559
+ export declare const FirewallDomainUpdateOperation: {
560
+ readonly ADD: "ADD";
561
+ readonly REMOVE: "REMOVE";
562
+ readonly REPLACE: "REPLACE";
563
+ };
564
+ export type FirewallDomainUpdateOperation =
565
+ (typeof FirewallDomainUpdateOperation)[keyof typeof FirewallDomainUpdateOperation];
527
566
  export interface FirewallRuleGroupMetadata {
528
567
  Id?: string;
529
568
  Arn?: string;
@@ -565,14 +604,16 @@ export interface GetFirewallRuleGroupPolicyResponse {
565
604
  export interface GetResolverConfigRequest {
566
605
  ResourceId: string | undefined;
567
606
  }
568
- export declare enum ResolverAutodefinedReverseStatus {
569
- Disabled = "DISABLED",
570
- Disabling = "DISABLING",
571
- Enabled = "ENABLED",
572
- Enabling = "ENABLING",
573
- UpdatingToUseLocalResourceSetting = "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING",
574
- UseLocalResourceSetting = "USE_LOCAL_RESOURCE_SETTING",
575
- }
607
+ export declare const ResolverAutodefinedReverseStatus: {
608
+ readonly Disabled: "DISABLED";
609
+ readonly Disabling: "DISABLING";
610
+ readonly Enabled: "ENABLED";
611
+ readonly Enabling: "ENABLING";
612
+ readonly UpdatingToUseLocalResourceSetting: "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING";
613
+ readonly UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING";
614
+ };
615
+ export type ResolverAutodefinedReverseStatus =
616
+ (typeof ResolverAutodefinedReverseStatus)[keyof typeof ResolverAutodefinedReverseStatus];
576
617
  export interface ResolverConfig {
577
618
  Id?: string;
578
619
  ResourceId?: string;
@@ -585,14 +626,16 @@ export interface GetResolverConfigResponse {
585
626
  export interface GetResolverDnssecConfigRequest {
586
627
  ResourceId: string | undefined;
587
628
  }
588
- export declare enum ResolverDNSSECValidationStatus {
589
- Disabled = "DISABLED",
590
- Disabling = "DISABLING",
591
- Enabled = "ENABLED",
592
- Enabling = "ENABLING",
593
- UpdateToUseLocalResourceSetting = "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING",
594
- UseLocalResourceSetting = "USE_LOCAL_RESOURCE_SETTING",
595
- }
629
+ export declare const ResolverDNSSECValidationStatus: {
630
+ readonly Disabled: "DISABLED";
631
+ readonly Disabling: "DISABLING";
632
+ readonly Enabled: "ENABLED";
633
+ readonly Enabling: "ENABLING";
634
+ readonly UpdateToUseLocalResourceSetting: "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING";
635
+ readonly UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING";
636
+ };
637
+ export type ResolverDNSSECValidationStatus =
638
+ (typeof ResolverDNSSECValidationStatus)[keyof typeof ResolverDNSSECValidationStatus];
596
639
  export interface ResolverDnssecConfig {
597
640
  Id?: string;
598
641
  OwnerId?: string;
@@ -687,19 +730,21 @@ export declare class InvalidTagException extends __BaseException {
687
730
  opts: __ExceptionOptionType<InvalidTagException, __BaseException>
688
731
  );
689
732
  }
690
- export declare enum IpAddressStatus {
691
- Attached = "ATTACHED",
692
- Attaching = "ATTACHING",
693
- Creating = "CREATING",
694
- DeleteFailedFasExpired = "DELETE_FAILED_FAS_EXPIRED",
695
- Deleting = "DELETING",
696
- Detaching = "DETACHING",
697
- FailedCreation = "FAILED_CREATION",
698
- FailedResourceGone = "FAILED_RESOURCE_GONE",
699
- RemapAttaching = "REMAP_ATTACHING",
700
- RemapDetaching = "REMAP_DETACHING",
701
- Updating = "UPDATING",
702
- }
733
+ export declare const IpAddressStatus: {
734
+ readonly Attached: "ATTACHED";
735
+ readonly Attaching: "ATTACHING";
736
+ readonly Creating: "CREATING";
737
+ readonly DeleteFailedFasExpired: "DELETE_FAILED_FAS_EXPIRED";
738
+ readonly Deleting: "DELETING";
739
+ readonly Detaching: "DETACHING";
740
+ readonly FailedCreation: "FAILED_CREATION";
741
+ readonly FailedResourceGone: "FAILED_RESOURCE_GONE";
742
+ readonly RemapAttaching: "REMAP_ATTACHING";
743
+ readonly RemapDetaching: "REMAP_DETACHING";
744
+ readonly Updating: "UPDATING";
745
+ };
746
+ export type IpAddressStatus =
747
+ (typeof IpAddressStatus)[keyof typeof IpAddressStatus];
703
748
  export interface IpAddressResponse {
704
749
  IpId?: string;
705
750
  SubnetId?: string;
@@ -803,10 +848,11 @@ export interface ListResolverEndpointsResponse {
803
848
  MaxResults?: number;
804
849
  ResolverEndpoints?: ResolverEndpoint[];
805
850
  }
806
- export declare enum SortOrder {
807
- Ascending = "ASCENDING",
808
- Descending = "DESCENDING",
809
- }
851
+ export declare const SortOrder: {
852
+ readonly Ascending: "ASCENDING";
853
+ readonly Descending: "DESCENDING";
854
+ };
855
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
810
856
  export interface ListResolverQueryLogConfigAssociationsRequest {
811
857
  MaxResults?: number;
812
858
  NextToken?: string;
@@ -946,11 +992,12 @@ export interface UpdateResolverConfigRequest {
946
992
  export interface UpdateResolverConfigResponse {
947
993
  ResolverConfig?: ResolverConfig;
948
994
  }
949
- export declare enum Validation {
950
- DISABLE = "DISABLE",
951
- ENABLE = "ENABLE",
952
- USE_LOCAL_RESOURCE_SETTING = "USE_LOCAL_RESOURCE_SETTING",
953
- }
995
+ export declare const Validation: {
996
+ readonly DISABLE: "DISABLE";
997
+ readonly ENABLE: "ENABLE";
998
+ readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
999
+ };
1000
+ export type Validation = (typeof Validation)[keyof typeof Validation];
954
1001
  export interface UpdateResolverDnssecConfigRequest {
955
1002
  ResourceId: string | undefined;
956
1003
  Validation: Validation | string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-route53resolver",
3
3
  "description": "AWS SDK for JavaScript Route53resolver 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,43 +21,43 @@
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
  "uuid": "^8.3.2"
58
58
  },
59
59
  "devDependencies": {
60
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
60
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
61
61
  "@tsconfig/node14": "1.0.3",
62
62
  "@types/node": "^14.14.31",
63
63
  "@types/uuid": "^8.3.0",