@aws-sdk/client-sagemaker 3.427.0 → 3.429.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/models/models_0.js +5 -8
- package/dist-cjs/models/models_1.js +4 -1
- package/dist-cjs/models/models_2.js +1 -6
- package/dist-cjs/models/models_3.js +7 -2
- package/dist-es/models/models_0.js +4 -7
- package/dist-es/models/models_1.js +3 -0
- package/dist-es/models/models_2.js +0 -5
- package/dist-es/models/models_3.js +5 -0
- package/dist-types/commands/CreateDataQualityJobDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +6 -0
- package/dist-types/commands/CreateFeatureGroupCommand.d.ts +6 -2
- package/dist-types/commands/CreateUserProfileCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDataQualityJobDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDeviceFleetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFeatureGroupCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +6 -0
- package/dist-types/commands/DescribeUserProfileCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +6 -0
- package/dist-types/commands/UpdateUserProfileCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +156 -138
- package/dist-types/models/models_1.d.ts +90 -89
- package/dist-types/models/models_2.d.ts +123 -133
- package/dist-types/models/models_3.d.ts +241 -337
- package/dist-types/models/models_4.d.ts +163 -33
- package/dist-types/ts3.4/commands/CreateDataQualityJobDefinitionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeleteDataQualityJobDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteDeviceFleetCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +123 -129
- package/dist-types/ts3.4/models/models_1.d.ts +75 -78
- package/dist-types/ts3.4/models/models_2.d.ts +104 -113
- package/dist-types/ts3.4/models/models_3.d.ts +217 -238
- package/dist-types/ts3.4/models/models_4.d.ts +62 -32
- package/package.json +32 -32
|
@@ -37,11 +37,13 @@ import {
|
|
|
37
37
|
InstanceMetadataServiceConfiguration,
|
|
38
38
|
JobType,
|
|
39
39
|
MemberDefinition,
|
|
40
|
+
ModelCardSecurityConfig,
|
|
40
41
|
ModelCardStatus,
|
|
41
42
|
ModelMetrics,
|
|
42
43
|
ModelPackageValidationSpecification,
|
|
43
44
|
ModelVariantConfig,
|
|
44
45
|
MonitoringScheduleConfig,
|
|
46
|
+
MonitoringType,
|
|
45
47
|
NetworkConfig,
|
|
46
48
|
NotebookInstanceAcceleratorType,
|
|
47
49
|
NotebookInstanceLifecycleHook,
|
|
@@ -87,11 +89,13 @@ import {
|
|
|
87
89
|
ModelArtifacts,
|
|
88
90
|
ModelPackageGroupStatus,
|
|
89
91
|
ModelPackageStatusDetails,
|
|
92
|
+
MonitoringExecutionSummary,
|
|
90
93
|
PipelineExecutionStatus,
|
|
91
94
|
PipelineExperimentConfig,
|
|
92
95
|
PipelineStatus,
|
|
93
96
|
ProcessingJobStatus,
|
|
94
97
|
ProjectStatus,
|
|
98
|
+
ScheduleStatus,
|
|
95
99
|
SecondaryStatus,
|
|
96
100
|
SecondaryStatusTransition,
|
|
97
101
|
SelectiveExecutionConfig,
|
|
@@ -115,12 +119,38 @@ import {
|
|
|
115
119
|
Model,
|
|
116
120
|
ModelCard,
|
|
117
121
|
ModelDashboardEndpoint,
|
|
118
|
-
|
|
119
|
-
ModelDashboardMonitoringSchedule,
|
|
122
|
+
MonitoringAlertSummary,
|
|
120
123
|
Parameter,
|
|
121
124
|
ResourceType,
|
|
122
125
|
TransformJob,
|
|
123
126
|
} from "./models_3";
|
|
127
|
+
export interface ModelDashboardModelCard {
|
|
128
|
+
ModelCardArn?: string;
|
|
129
|
+
ModelCardName?: string;
|
|
130
|
+
ModelCardVersion?: number;
|
|
131
|
+
ModelCardStatus?: ModelCardStatus;
|
|
132
|
+
SecurityConfig?: ModelCardSecurityConfig;
|
|
133
|
+
CreationTime?: Date;
|
|
134
|
+
CreatedBy?: UserContext;
|
|
135
|
+
LastModifiedTime?: Date;
|
|
136
|
+
LastModifiedBy?: UserContext;
|
|
137
|
+
Tags?: Tag[];
|
|
138
|
+
ModelId?: string;
|
|
139
|
+
RiskRating?: string;
|
|
140
|
+
}
|
|
141
|
+
export interface ModelDashboardMonitoringSchedule {
|
|
142
|
+
MonitoringScheduleArn?: string;
|
|
143
|
+
MonitoringScheduleName?: string;
|
|
144
|
+
MonitoringScheduleStatus?: ScheduleStatus;
|
|
145
|
+
MonitoringType?: MonitoringType;
|
|
146
|
+
FailureReason?: string;
|
|
147
|
+
CreationTime?: Date;
|
|
148
|
+
LastModifiedTime?: Date;
|
|
149
|
+
MonitoringScheduleConfig?: MonitoringScheduleConfig;
|
|
150
|
+
EndpointName?: string;
|
|
151
|
+
MonitoringAlertSummaries?: MonitoringAlertSummary[];
|
|
152
|
+
LastMonitoringExecutionSummary?: MonitoringExecutionSummary;
|
|
153
|
+
}
|
|
124
154
|
export interface ModelDashboardModel {
|
|
125
155
|
Model?: Model;
|
|
126
156
|
Endpoints?: ModelDashboardEndpoint[];
|
|
@@ -138,10 +168,10 @@ export interface ModelPackage {
|
|
|
138
168
|
InferenceSpecification?: InferenceSpecification;
|
|
139
169
|
SourceAlgorithmSpecification?: SourceAlgorithmSpecification;
|
|
140
170
|
ValidationSpecification?: ModelPackageValidationSpecification;
|
|
141
|
-
ModelPackageStatus?: ModelPackageStatus
|
|
171
|
+
ModelPackageStatus?: ModelPackageStatus;
|
|
142
172
|
ModelPackageStatusDetails?: ModelPackageStatusDetails;
|
|
143
173
|
CertifyForMarketplace?: boolean;
|
|
144
|
-
ModelApprovalStatus?: ModelApprovalStatus
|
|
174
|
+
ModelApprovalStatus?: ModelApprovalStatus;
|
|
145
175
|
CreatedBy?: UserContext;
|
|
146
176
|
MetadataProperties?: MetadataProperties;
|
|
147
177
|
ModelMetrics?: ModelMetrics;
|
|
@@ -155,7 +185,7 @@ export interface ModelPackage {
|
|
|
155
185
|
Tags?: Tag[];
|
|
156
186
|
CustomerMetadataProperties?: Record<string, string>;
|
|
157
187
|
DriftCheckBaselines?: DriftCheckBaselines;
|
|
158
|
-
SkipModelValidation?: SkipModelValidation
|
|
188
|
+
SkipModelValidation?: SkipModelValidation;
|
|
159
189
|
}
|
|
160
190
|
export interface ModelPackageGroup {
|
|
161
191
|
ModelPackageGroupName?: string;
|
|
@@ -163,7 +193,7 @@ export interface ModelPackageGroup {
|
|
|
163
193
|
ModelPackageGroupDescription?: string;
|
|
164
194
|
CreationTime?: Date;
|
|
165
195
|
CreatedBy?: UserContext;
|
|
166
|
-
ModelPackageGroupStatus?: ModelPackageGroupStatus
|
|
196
|
+
ModelPackageGroupStatus?: ModelPackageGroupStatus;
|
|
167
197
|
Tags?: Tag[];
|
|
168
198
|
}
|
|
169
199
|
export declare const ModelVariantAction: {
|
|
@@ -190,7 +220,7 @@ export interface Pipeline {
|
|
|
190
220
|
PipelineDisplayName?: string;
|
|
191
221
|
PipelineDescription?: string;
|
|
192
222
|
RoleArn?: string;
|
|
193
|
-
PipelineStatus?: PipelineStatus
|
|
223
|
+
PipelineStatus?: PipelineStatus;
|
|
194
224
|
CreationTime?: Date;
|
|
195
225
|
LastModifiedTime?: Date;
|
|
196
226
|
LastRunTime?: Date;
|
|
@@ -203,7 +233,7 @@ export interface PipelineExecution {
|
|
|
203
233
|
PipelineArn?: string;
|
|
204
234
|
PipelineExecutionArn?: string;
|
|
205
235
|
PipelineExecutionDisplayName?: string;
|
|
206
|
-
PipelineExecutionStatus?: PipelineExecutionStatus
|
|
236
|
+
PipelineExecutionStatus?: PipelineExecutionStatus;
|
|
207
237
|
PipelineExecutionDescription?: string;
|
|
208
238
|
PipelineExperimentConfig?: PipelineExperimentConfig;
|
|
209
239
|
FailureReason?: string;
|
|
@@ -227,7 +257,7 @@ export interface ProcessingJob {
|
|
|
227
257
|
RoleArn?: string;
|
|
228
258
|
ExperimentConfig?: ExperimentConfig;
|
|
229
259
|
ProcessingJobArn?: string;
|
|
230
|
-
ProcessingJobStatus?: ProcessingJobStatus
|
|
260
|
+
ProcessingJobStatus?: ProcessingJobStatus;
|
|
231
261
|
ExitMessage?: string;
|
|
232
262
|
FailureReason?: string;
|
|
233
263
|
ProcessingEndTime?: Date;
|
|
@@ -252,7 +282,7 @@ export interface Project {
|
|
|
252
282
|
ProjectDescription?: string;
|
|
253
283
|
ServiceCatalogProvisioningDetails?: ServiceCatalogProvisioningDetails;
|
|
254
284
|
ServiceCatalogProvisionedProductDetails?: ServiceCatalogProvisionedProductDetails;
|
|
255
|
-
ProjectStatus?: ProjectStatus
|
|
285
|
+
ProjectStatus?: ProjectStatus;
|
|
256
286
|
CreatedBy?: UserContext;
|
|
257
287
|
CreationTime?: Date;
|
|
258
288
|
Tags?: Tag[];
|
|
@@ -268,7 +298,7 @@ export interface PutModelPackageGroupPolicyOutput {
|
|
|
268
298
|
}
|
|
269
299
|
export interface QueryFilters {
|
|
270
300
|
Types?: string[];
|
|
271
|
-
LineageTypes?:
|
|
301
|
+
LineageTypes?: LineageType[];
|
|
272
302
|
CreatedBefore?: Date;
|
|
273
303
|
CreatedAfter?: Date;
|
|
274
304
|
ModifiedBefore?: Date;
|
|
@@ -277,7 +307,7 @@ export interface QueryFilters {
|
|
|
277
307
|
}
|
|
278
308
|
export interface QueryLineageRequest {
|
|
279
309
|
StartArns?: string[];
|
|
280
|
-
Direction?: Direction
|
|
310
|
+
Direction?: Direction;
|
|
281
311
|
IncludeEdges?: boolean;
|
|
282
312
|
Filters?: QueryFilters;
|
|
283
313
|
MaxDepth?: number;
|
|
@@ -287,7 +317,7 @@ export interface QueryLineageRequest {
|
|
|
287
317
|
export interface Vertex {
|
|
288
318
|
Arn?: string;
|
|
289
319
|
Type?: string;
|
|
290
|
-
LineageType?: LineageType
|
|
320
|
+
LineageType?: LineageType;
|
|
291
321
|
}
|
|
292
322
|
export interface QueryLineageResponse {
|
|
293
323
|
Vertices?: Vertex[];
|
|
@@ -340,8 +370,8 @@ export interface TrainingJob {
|
|
|
340
370
|
LabelingJobArn?: string;
|
|
341
371
|
AutoMLJobArn?: string;
|
|
342
372
|
ModelArtifacts?: ModelArtifacts;
|
|
343
|
-
TrainingJobStatus?: TrainingJobStatus
|
|
344
|
-
SecondaryStatus?: SecondaryStatus
|
|
373
|
+
TrainingJobStatus?: TrainingJobStatus;
|
|
374
|
+
SecondaryStatus?: SecondaryStatus;
|
|
345
375
|
FailureReason?: string;
|
|
346
376
|
HyperParameters?: Record<string, string>;
|
|
347
377
|
AlgorithmSpecification?: AlgorithmSpecification;
|
|
@@ -506,9 +536,9 @@ export interface StopHyperParameterTuningJobRequest {
|
|
|
506
536
|
}
|
|
507
537
|
export interface StopInferenceExperimentRequest {
|
|
508
538
|
Name: string | undefined;
|
|
509
|
-
ModelVariantActions: Record<string, ModelVariantAction
|
|
539
|
+
ModelVariantActions: Record<string, ModelVariantAction> | undefined;
|
|
510
540
|
DesiredModelVariants?: ModelVariantConfig[];
|
|
511
|
-
DesiredState?: InferenceExperimentStopDesiredState
|
|
541
|
+
DesiredState?: InferenceExperimentStopDesiredState;
|
|
512
542
|
Reason?: string;
|
|
513
543
|
}
|
|
514
544
|
export interface StopInferenceExperimentResponse {
|
|
@@ -545,7 +575,7 @@ export interface StopTransformJobRequest {
|
|
|
545
575
|
export interface UpdateActionRequest {
|
|
546
576
|
ActionName: string | undefined;
|
|
547
577
|
Description?: string;
|
|
548
|
-
Status?: ActionStatus
|
|
578
|
+
Status?: ActionStatus;
|
|
549
579
|
Properties?: Record<string, string>;
|
|
550
580
|
PropertiesToRemove?: string[];
|
|
551
581
|
}
|
|
@@ -600,7 +630,7 @@ export interface UpdateDomainRequest {
|
|
|
600
630
|
DefaultUserSettings?: UserSettings;
|
|
601
631
|
DomainSettingsForUpdate?: DomainSettingsForUpdate;
|
|
602
632
|
DefaultSpaceSettings?: DefaultSpaceSettings;
|
|
603
|
-
AppSecurityGroupManagement?: AppSecurityGroupManagement
|
|
633
|
+
AppSecurityGroupManagement?: AppSecurityGroupManagement;
|
|
604
634
|
}
|
|
605
635
|
export interface UpdateDomainResponse {
|
|
606
636
|
DomainArn?: string;
|
|
@@ -613,7 +643,7 @@ export declare const VariantPropertyType: {
|
|
|
613
643
|
export type VariantPropertyType =
|
|
614
644
|
(typeof VariantPropertyType)[keyof typeof VariantPropertyType];
|
|
615
645
|
export interface VariantProperty {
|
|
616
|
-
VariantPropertyType: VariantPropertyType |
|
|
646
|
+
VariantPropertyType: VariantPropertyType | undefined;
|
|
617
647
|
}
|
|
618
648
|
export interface UpdateEndpointInput {
|
|
619
649
|
EndpointName: string | undefined;
|
|
@@ -681,11 +711,11 @@ export interface UpdateImageVersionRequest {
|
|
|
681
711
|
Version?: number;
|
|
682
712
|
AliasesToAdd?: string[];
|
|
683
713
|
AliasesToDelete?: string[];
|
|
684
|
-
VendorGuidance?: VendorGuidance
|
|
685
|
-
JobType?: JobType
|
|
714
|
+
VendorGuidance?: VendorGuidance;
|
|
715
|
+
JobType?: JobType;
|
|
686
716
|
MLFramework?: string;
|
|
687
717
|
ProgrammingLang?: string;
|
|
688
|
-
Processor?: Processor
|
|
718
|
+
Processor?: Processor;
|
|
689
719
|
Horovod?: boolean;
|
|
690
720
|
ReleaseNotes?: string;
|
|
691
721
|
}
|
|
@@ -706,14 +736,14 @@ export interface UpdateInferenceExperimentResponse {
|
|
|
706
736
|
export interface UpdateModelCardRequest {
|
|
707
737
|
ModelCardName: string | undefined;
|
|
708
738
|
Content?: string;
|
|
709
|
-
ModelCardStatus?: ModelCardStatus
|
|
739
|
+
ModelCardStatus?: ModelCardStatus;
|
|
710
740
|
}
|
|
711
741
|
export interface UpdateModelCardResponse {
|
|
712
742
|
ModelCardArn: string | undefined;
|
|
713
743
|
}
|
|
714
744
|
export interface UpdateModelPackageInput {
|
|
715
745
|
ModelPackageArn: string | undefined;
|
|
716
|
-
ModelApprovalStatus?: ModelApprovalStatus
|
|
746
|
+
ModelApprovalStatus?: ModelApprovalStatus;
|
|
717
747
|
ApprovalDescription?: string;
|
|
718
748
|
CustomerMetadataProperties?: Record<string, string>;
|
|
719
749
|
CustomerMetadataPropertiesToRemove?: string[];
|
|
@@ -741,18 +771,18 @@ export interface UpdateMonitoringScheduleResponse {
|
|
|
741
771
|
}
|
|
742
772
|
export interface UpdateNotebookInstanceInput {
|
|
743
773
|
NotebookInstanceName: string | undefined;
|
|
744
|
-
InstanceType?: _InstanceType
|
|
774
|
+
InstanceType?: _InstanceType;
|
|
745
775
|
RoleArn?: string;
|
|
746
776
|
LifecycleConfigName?: string;
|
|
747
777
|
DisassociateLifecycleConfig?: boolean;
|
|
748
778
|
VolumeSizeInGB?: number;
|
|
749
779
|
DefaultCodeRepository?: string;
|
|
750
780
|
AdditionalCodeRepositories?: string[];
|
|
751
|
-
AcceleratorTypes?:
|
|
781
|
+
AcceleratorTypes?: NotebookInstanceAcceleratorType[];
|
|
752
782
|
DisassociateAcceleratorTypes?: boolean;
|
|
753
783
|
DisassociateDefaultCodeRepository?: boolean;
|
|
754
784
|
DisassociateAdditionalCodeRepositories?: boolean;
|
|
755
|
-
RootAccess?: RootAccess
|
|
785
|
+
RootAccess?: RootAccess;
|
|
756
786
|
InstanceMetadataServiceConfiguration?: InstanceMetadataServiceConfiguration;
|
|
757
787
|
}
|
|
758
788
|
export interface UpdateNotebookInstanceOutput {}
|
|
@@ -866,16 +896,16 @@ export interface SearchExpression {
|
|
|
866
896
|
Filters?: Filter[];
|
|
867
897
|
NestedFilters?: NestedFilters[];
|
|
868
898
|
SubExpressions?: SearchExpression[];
|
|
869
|
-
Operator?: BooleanOperator
|
|
899
|
+
Operator?: BooleanOperator;
|
|
870
900
|
}
|
|
871
901
|
export interface SearchRequest {
|
|
872
|
-
Resource: ResourceType |
|
|
902
|
+
Resource: ResourceType | undefined;
|
|
873
903
|
SearchExpression?: SearchExpression;
|
|
874
904
|
SortBy?: string;
|
|
875
|
-
SortOrder?: SearchSortOrder
|
|
905
|
+
SortOrder?: SearchSortOrder;
|
|
876
906
|
NextToken?: string;
|
|
877
907
|
MaxResults?: number;
|
|
878
|
-
CrossAccountFilterOption?: CrossAccountFilterOption
|
|
908
|
+
CrossAccountFilterOption?: CrossAccountFilterOption;
|
|
879
909
|
}
|
|
880
910
|
export declare const SearchRecordFilterSensitiveLog: (obj: SearchRecord) => any;
|
|
881
911
|
export declare const SearchResponseFilterSensitiveLog: (
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.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,41 +21,41 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
|
-
"@smithy/util-waiter": "^2.0.
|
|
58
|
+
"@smithy/util-waiter": "^2.0.11",
|
|
59
59
|
"tslib": "^2.5.0",
|
|
60
60
|
"uuid": "^8.3.2"
|
|
61
61
|
},
|