@aws-sdk/client-arc-region-switch 3.1060.0 → 3.1062.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.
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/errors.js +14 -14
- package/dist-cjs/schemas/schemas_0.js +37 -5
- package/dist-es/models/enums.js +10 -0
- package/dist-es/models/errors.js +12 -12
- package/dist-es/schemas/schemas_0.js +34 -2
- package/dist-types/commands/CreatePlanCommand.d.ts +144 -4
- package/dist-types/commands/GetPlanCommand.d.ts +72 -2
- package/dist-types/commands/GetPlanExecutionCommand.d.ts +72 -2
- package/dist-types/commands/GetPlanInRegionCommand.d.ts +72 -2
- package/dist-types/commands/ListPlanExecutionEventsCommand.d.ts +1 -1
- package/dist-types/commands/ListRoute53HealthChecksCommand.d.ts +3 -0
- package/dist-types/commands/UpdatePlanCommand.d.ts +144 -4
- package/dist-types/models/enums.d.ts +26 -0
- package/dist-types/models/errors.d.ts +10 -10
- package/dist-types/models/models_0.d.ts +250 -6
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +14 -0
- package/dist-types/ts3.4/models/errors.d.ts +7 -7
- package/dist-types/ts3.4/models/models_0.d.ts +147 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +2 -2
|
@@ -19,6 +19,8 @@ import {
|
|
|
19
19
|
GlobalAuroraUngracefulBehavior,
|
|
20
20
|
LambdaEventSourceMappingUngracefulBehavior,
|
|
21
21
|
LambdaUngracefulBehavior,
|
|
22
|
+
NeptuneDefaultBehavior,
|
|
23
|
+
NeptuneUngracefulBehavior,
|
|
22
24
|
RecoveryApproach,
|
|
23
25
|
RegionToRunIn,
|
|
24
26
|
ResourceWarningStatus,
|
|
@@ -195,6 +197,22 @@ export interface ArcRoutingControlConfiguration {
|
|
|
195
197
|
| Record<string, ArcRoutingControlState[]>
|
|
196
198
|
| undefined;
|
|
197
199
|
}
|
|
200
|
+
export interface AuroraProvisionedScalingConfiguration {
|
|
201
|
+
timeoutMinutes?: number | undefined;
|
|
202
|
+
crossAccountRole?: string | undefined;
|
|
203
|
+
externalId?: string | undefined;
|
|
204
|
+
globalClusterIdentifier: string | undefined;
|
|
205
|
+
regionDatabaseClusterArns: Record<string, string> | undefined;
|
|
206
|
+
instanceArns: Record<string, string> | undefined;
|
|
207
|
+
}
|
|
208
|
+
export interface AuroraServerlessScalingConfiguration {
|
|
209
|
+
timeoutMinutes?: number | undefined;
|
|
210
|
+
crossAccountRole?: string | undefined;
|
|
211
|
+
externalId?: string | undefined;
|
|
212
|
+
globalClusterIdentifier: string | undefined;
|
|
213
|
+
regionDatabaseClusterArns: Record<string, string> | undefined;
|
|
214
|
+
targetPercent?: number | undefined;
|
|
215
|
+
}
|
|
198
216
|
export interface Lambdas {
|
|
199
217
|
crossAccountRole?: string | undefined;
|
|
200
218
|
externalId?: string | undefined;
|
|
@@ -311,6 +329,18 @@ export interface LambdaEventSourceMappingConfiguration {
|
|
|
311
329
|
regionEventSourceMappings: Record<string, EventSourceMapping> | undefined;
|
|
312
330
|
ungraceful?: LambdaEventSourceMappingUngraceful | undefined;
|
|
313
331
|
}
|
|
332
|
+
export interface NeptuneUngraceful {
|
|
333
|
+
ungraceful?: NeptuneUngracefulBehavior | undefined;
|
|
334
|
+
}
|
|
335
|
+
export interface NeptuneGlobalDatabaseConfiguration {
|
|
336
|
+
timeoutMinutes?: number | undefined;
|
|
337
|
+
crossAccountRole?: string | undefined;
|
|
338
|
+
externalId?: string | undefined;
|
|
339
|
+
behavior: NeptuneDefaultBehavior | undefined;
|
|
340
|
+
ungraceful?: NeptuneUngraceful | undefined;
|
|
341
|
+
globalClusterIdentifier: string | undefined;
|
|
342
|
+
regionDatabaseClusterArns: Record<string, string> | undefined;
|
|
343
|
+
}
|
|
314
344
|
export interface RdsCreateCrossRegionReplicaConfiguration {
|
|
315
345
|
timeoutMinutes?: number | undefined;
|
|
316
346
|
crossAccountRole?: string | undefined;
|
|
@@ -483,6 +513,8 @@ export interface UpdatePlanExecutionStepRequest {
|
|
|
483
513
|
export interface UpdatePlanExecutionStepResponse {}
|
|
484
514
|
export type ExecutionBlockConfiguration =
|
|
485
515
|
| ExecutionBlockConfiguration.ArcRoutingControlConfigMember
|
|
516
|
+
| ExecutionBlockConfiguration.AuroraProvisionedScalingConfigMember
|
|
517
|
+
| ExecutionBlockConfiguration.AuroraServerlessScalingConfigMember
|
|
486
518
|
| ExecutionBlockConfiguration.CustomActionLambdaConfigMember
|
|
487
519
|
| ExecutionBlockConfiguration.DocumentDbConfigMember
|
|
488
520
|
| ExecutionBlockConfiguration.Ec2AsgCapacityIncreaseConfigMember
|
|
@@ -491,6 +523,7 @@ export type ExecutionBlockConfiguration =
|
|
|
491
523
|
| ExecutionBlockConfiguration.ExecutionApprovalConfigMember
|
|
492
524
|
| ExecutionBlockConfiguration.GlobalAuroraConfigMember
|
|
493
525
|
| ExecutionBlockConfiguration.LambdaEventSourceMappingConfigMember
|
|
526
|
+
| ExecutionBlockConfiguration.NeptuneGlobalDatabaseConfigMember
|
|
494
527
|
| ExecutionBlockConfiguration.ParallelConfigMember
|
|
495
528
|
| ExecutionBlockConfiguration.RdsCreateCrossRegionReadReplicaConfigMember
|
|
496
529
|
| ExecutionBlockConfiguration.RdsPromoteReadReplicaConfigMember
|
|
@@ -513,6 +546,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
513
546
|
rdsPromoteReadReplicaConfig?: never;
|
|
514
547
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
515
548
|
lambdaEventSourceMappingConfig?: never;
|
|
549
|
+
auroraServerlessScalingConfig?: never;
|
|
550
|
+
auroraProvisionedScalingConfig?: never;
|
|
551
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
516
552
|
$unknown?: never;
|
|
517
553
|
}
|
|
518
554
|
interface Ec2AsgCapacityIncreaseConfigMember {
|
|
@@ -530,6 +566,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
530
566
|
rdsPromoteReadReplicaConfig?: never;
|
|
531
567
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
532
568
|
lambdaEventSourceMappingConfig?: never;
|
|
569
|
+
auroraServerlessScalingConfig?: never;
|
|
570
|
+
auroraProvisionedScalingConfig?: never;
|
|
571
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
533
572
|
$unknown?: never;
|
|
534
573
|
}
|
|
535
574
|
interface ExecutionApprovalConfigMember {
|
|
@@ -547,6 +586,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
547
586
|
rdsPromoteReadReplicaConfig?: never;
|
|
548
587
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
549
588
|
lambdaEventSourceMappingConfig?: never;
|
|
589
|
+
auroraServerlessScalingConfig?: never;
|
|
590
|
+
auroraProvisionedScalingConfig?: never;
|
|
591
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
550
592
|
$unknown?: never;
|
|
551
593
|
}
|
|
552
594
|
interface ArcRoutingControlConfigMember {
|
|
@@ -564,6 +606,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
564
606
|
rdsPromoteReadReplicaConfig?: never;
|
|
565
607
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
566
608
|
lambdaEventSourceMappingConfig?: never;
|
|
609
|
+
auroraServerlessScalingConfig?: never;
|
|
610
|
+
auroraProvisionedScalingConfig?: never;
|
|
611
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
567
612
|
$unknown?: never;
|
|
568
613
|
}
|
|
569
614
|
interface GlobalAuroraConfigMember {
|
|
@@ -581,6 +626,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
581
626
|
rdsPromoteReadReplicaConfig?: never;
|
|
582
627
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
583
628
|
lambdaEventSourceMappingConfig?: never;
|
|
629
|
+
auroraServerlessScalingConfig?: never;
|
|
630
|
+
auroraProvisionedScalingConfig?: never;
|
|
631
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
584
632
|
$unknown?: never;
|
|
585
633
|
}
|
|
586
634
|
interface ParallelConfigMember {
|
|
@@ -598,6 +646,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
598
646
|
rdsPromoteReadReplicaConfig?: never;
|
|
599
647
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
600
648
|
lambdaEventSourceMappingConfig?: never;
|
|
649
|
+
auroraServerlessScalingConfig?: never;
|
|
650
|
+
auroraProvisionedScalingConfig?: never;
|
|
651
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
601
652
|
$unknown?: never;
|
|
602
653
|
}
|
|
603
654
|
interface RegionSwitchPlanConfigMember {
|
|
@@ -615,6 +666,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
615
666
|
rdsPromoteReadReplicaConfig?: never;
|
|
616
667
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
617
668
|
lambdaEventSourceMappingConfig?: never;
|
|
669
|
+
auroraServerlessScalingConfig?: never;
|
|
670
|
+
auroraProvisionedScalingConfig?: never;
|
|
671
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
618
672
|
$unknown?: never;
|
|
619
673
|
}
|
|
620
674
|
interface EcsCapacityIncreaseConfigMember {
|
|
@@ -632,6 +686,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
632
686
|
rdsPromoteReadReplicaConfig?: never;
|
|
633
687
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
634
688
|
lambdaEventSourceMappingConfig?: never;
|
|
689
|
+
auroraServerlessScalingConfig?: never;
|
|
690
|
+
auroraProvisionedScalingConfig?: never;
|
|
691
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
635
692
|
$unknown?: never;
|
|
636
693
|
}
|
|
637
694
|
interface EksResourceScalingConfigMember {
|
|
@@ -649,6 +706,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
649
706
|
rdsPromoteReadReplicaConfig?: never;
|
|
650
707
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
651
708
|
lambdaEventSourceMappingConfig?: never;
|
|
709
|
+
auroraServerlessScalingConfig?: never;
|
|
710
|
+
auroraProvisionedScalingConfig?: never;
|
|
711
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
652
712
|
$unknown?: never;
|
|
653
713
|
}
|
|
654
714
|
interface Route53HealthCheckConfigMember {
|
|
@@ -666,6 +726,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
666
726
|
rdsPromoteReadReplicaConfig?: never;
|
|
667
727
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
668
728
|
lambdaEventSourceMappingConfig?: never;
|
|
729
|
+
auroraServerlessScalingConfig?: never;
|
|
730
|
+
auroraProvisionedScalingConfig?: never;
|
|
731
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
669
732
|
$unknown?: never;
|
|
670
733
|
}
|
|
671
734
|
interface DocumentDbConfigMember {
|
|
@@ -683,6 +746,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
683
746
|
rdsPromoteReadReplicaConfig?: never;
|
|
684
747
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
685
748
|
lambdaEventSourceMappingConfig?: never;
|
|
749
|
+
auroraServerlessScalingConfig?: never;
|
|
750
|
+
auroraProvisionedScalingConfig?: never;
|
|
751
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
686
752
|
$unknown?: never;
|
|
687
753
|
}
|
|
688
754
|
interface RdsPromoteReadReplicaConfigMember {
|
|
@@ -700,6 +766,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
700
766
|
rdsPromoteReadReplicaConfig: RdsPromoteReadReplicaConfiguration;
|
|
701
767
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
702
768
|
lambdaEventSourceMappingConfig?: never;
|
|
769
|
+
auroraServerlessScalingConfig?: never;
|
|
770
|
+
auroraProvisionedScalingConfig?: never;
|
|
771
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
703
772
|
$unknown?: never;
|
|
704
773
|
}
|
|
705
774
|
interface RdsCreateCrossRegionReadReplicaConfigMember {
|
|
@@ -717,6 +786,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
717
786
|
rdsPromoteReadReplicaConfig?: never;
|
|
718
787
|
rdsCreateCrossRegionReadReplicaConfig: RdsCreateCrossRegionReplicaConfiguration;
|
|
719
788
|
lambdaEventSourceMappingConfig?: never;
|
|
789
|
+
auroraServerlessScalingConfig?: never;
|
|
790
|
+
auroraProvisionedScalingConfig?: never;
|
|
791
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
720
792
|
$unknown?: never;
|
|
721
793
|
}
|
|
722
794
|
interface LambdaEventSourceMappingConfigMember {
|
|
@@ -734,6 +806,69 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
734
806
|
rdsPromoteReadReplicaConfig?: never;
|
|
735
807
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
736
808
|
lambdaEventSourceMappingConfig: LambdaEventSourceMappingConfiguration;
|
|
809
|
+
auroraServerlessScalingConfig?: never;
|
|
810
|
+
auroraProvisionedScalingConfig?: never;
|
|
811
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
812
|
+
$unknown?: never;
|
|
813
|
+
}
|
|
814
|
+
interface AuroraServerlessScalingConfigMember {
|
|
815
|
+
customActionLambdaConfig?: never;
|
|
816
|
+
ec2AsgCapacityIncreaseConfig?: never;
|
|
817
|
+
executionApprovalConfig?: never;
|
|
818
|
+
arcRoutingControlConfig?: never;
|
|
819
|
+
globalAuroraConfig?: never;
|
|
820
|
+
parallelConfig?: never;
|
|
821
|
+
regionSwitchPlanConfig?: never;
|
|
822
|
+
ecsCapacityIncreaseConfig?: never;
|
|
823
|
+
eksResourceScalingConfig?: never;
|
|
824
|
+
route53HealthCheckConfig?: never;
|
|
825
|
+
documentDbConfig?: never;
|
|
826
|
+
rdsPromoteReadReplicaConfig?: never;
|
|
827
|
+
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
828
|
+
lambdaEventSourceMappingConfig?: never;
|
|
829
|
+
auroraServerlessScalingConfig: AuroraServerlessScalingConfiguration;
|
|
830
|
+
auroraProvisionedScalingConfig?: never;
|
|
831
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
832
|
+
$unknown?: never;
|
|
833
|
+
}
|
|
834
|
+
interface AuroraProvisionedScalingConfigMember {
|
|
835
|
+
customActionLambdaConfig?: never;
|
|
836
|
+
ec2AsgCapacityIncreaseConfig?: never;
|
|
837
|
+
executionApprovalConfig?: never;
|
|
838
|
+
arcRoutingControlConfig?: never;
|
|
839
|
+
globalAuroraConfig?: never;
|
|
840
|
+
parallelConfig?: never;
|
|
841
|
+
regionSwitchPlanConfig?: never;
|
|
842
|
+
ecsCapacityIncreaseConfig?: never;
|
|
843
|
+
eksResourceScalingConfig?: never;
|
|
844
|
+
route53HealthCheckConfig?: never;
|
|
845
|
+
documentDbConfig?: never;
|
|
846
|
+
rdsPromoteReadReplicaConfig?: never;
|
|
847
|
+
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
848
|
+
lambdaEventSourceMappingConfig?: never;
|
|
849
|
+
auroraServerlessScalingConfig?: never;
|
|
850
|
+
auroraProvisionedScalingConfig: AuroraProvisionedScalingConfiguration;
|
|
851
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
852
|
+
$unknown?: never;
|
|
853
|
+
}
|
|
854
|
+
interface NeptuneGlobalDatabaseConfigMember {
|
|
855
|
+
customActionLambdaConfig?: never;
|
|
856
|
+
ec2AsgCapacityIncreaseConfig?: never;
|
|
857
|
+
executionApprovalConfig?: never;
|
|
858
|
+
arcRoutingControlConfig?: never;
|
|
859
|
+
globalAuroraConfig?: never;
|
|
860
|
+
parallelConfig?: never;
|
|
861
|
+
regionSwitchPlanConfig?: never;
|
|
862
|
+
ecsCapacityIncreaseConfig?: never;
|
|
863
|
+
eksResourceScalingConfig?: never;
|
|
864
|
+
route53HealthCheckConfig?: never;
|
|
865
|
+
documentDbConfig?: never;
|
|
866
|
+
rdsPromoteReadReplicaConfig?: never;
|
|
867
|
+
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
868
|
+
lambdaEventSourceMappingConfig?: never;
|
|
869
|
+
auroraServerlessScalingConfig?: never;
|
|
870
|
+
auroraProvisionedScalingConfig?: never;
|
|
871
|
+
neptuneGlobalDatabaseConfig: NeptuneGlobalDatabaseConfiguration;
|
|
737
872
|
$unknown?: never;
|
|
738
873
|
}
|
|
739
874
|
interface $UnknownMember {
|
|
@@ -751,6 +886,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
751
886
|
rdsPromoteReadReplicaConfig?: never;
|
|
752
887
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
753
888
|
lambdaEventSourceMappingConfig?: never;
|
|
889
|
+
auroraServerlessScalingConfig?: never;
|
|
890
|
+
auroraProvisionedScalingConfig?: never;
|
|
891
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
754
892
|
$unknown: [string, any];
|
|
755
893
|
}
|
|
756
894
|
interface Visitor<T> {
|
|
@@ -776,6 +914,15 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
776
914
|
lambdaEventSourceMappingConfig: (
|
|
777
915
|
value: LambdaEventSourceMappingConfiguration
|
|
778
916
|
) => T;
|
|
917
|
+
auroraServerlessScalingConfig: (
|
|
918
|
+
value: AuroraServerlessScalingConfiguration
|
|
919
|
+
) => T;
|
|
920
|
+
auroraProvisionedScalingConfig: (
|
|
921
|
+
value: AuroraProvisionedScalingConfiguration
|
|
922
|
+
) => T;
|
|
923
|
+
neptuneGlobalDatabaseConfig: (
|
|
924
|
+
value: NeptuneGlobalDatabaseConfiguration
|
|
925
|
+
) => T;
|
|
779
926
|
_: (name: string, value: any) => T;
|
|
780
927
|
}
|
|
781
928
|
}
|
|
@@ -20,6 +20,8 @@ export declare var ArcRoutingControlConfiguration$: StaticStructureSchema;
|
|
|
20
20
|
export declare var ArcRoutingControlState$: StaticStructureSchema;
|
|
21
21
|
export declare var Asg$: StaticStructureSchema;
|
|
22
22
|
export declare var AssociatedAlarm$: StaticStructureSchema;
|
|
23
|
+
export declare var AuroraProvisionedScalingConfiguration$: StaticStructureSchema;
|
|
24
|
+
export declare var AuroraServerlessScalingConfiguration$: StaticStructureSchema;
|
|
23
25
|
export declare var CancelPlanExecutionRequest$: StaticStructureSchema;
|
|
24
26
|
export declare var CancelPlanExecutionResponse$: StaticStructureSchema;
|
|
25
27
|
export declare var CreatePlanRequest$: StaticStructureSchema;
|
|
@@ -72,6 +74,8 @@ export declare var ListRoute53HealthChecksResponse$: StaticStructureSchema;
|
|
|
72
74
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
73
75
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
74
76
|
export declare var MinimalWorkflow$: StaticStructureSchema;
|
|
77
|
+
export declare var NeptuneGlobalDatabaseConfiguration$: StaticStructureSchema;
|
|
78
|
+
export declare var NeptuneUngraceful$: StaticStructureSchema;
|
|
75
79
|
export declare var ParallelExecutionBlockConfiguration$: StaticStructureSchema;
|
|
76
80
|
export declare var Plan$: StaticStructureSchema;
|
|
77
81
|
export declare var RdsCreateCrossRegionReplicaConfiguration$: StaticStructureSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-arc-region-switch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Arc Region Switch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1062.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-arc-region-switch",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
24
|
"@aws-sdk/core": "^3.974.17",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.51",
|
|
26
26
|
"@aws-sdk/types": "^3.973.10",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|