@aws-sdk/client-sagemaker 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.
- package/dist-cjs/models/models_0.js +876 -960
- package/dist-cjs/models/models_1.js +228 -262
- package/dist-cjs/models/models_2.js +400 -457
- package/dist-cjs/models/models_3.js +232 -283
- package/dist-cjs/models/models_4.js +5 -6
- package/dist-cjs/protocols/Aws_json1_1.js +26 -0
- package/dist-es/models/models_0.js +874 -958
- package/dist-es/models/models_1.js +228 -262
- package/dist-es/models/models_2.js +400 -457
- package/dist-es/models/models_3.js +232 -283
- package/dist-es/models/models_4.js +5 -6
- package/dist-es/protocols/Aws_json1_1.js +26 -0
- package/dist-types/SageMaker.d.ts +3 -9
- package/dist-types/commands/CreateAutoMLJobCommand.d.ts +1 -3
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +2 -6
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +5 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +1379 -966
- package/dist-types/models/models_1.d.ts +429 -245
- package/dist-types/models/models_2.d.ts +693 -464
- package/dist-types/models/models_3.d.ts +550 -248
- package/dist-types/models/models_4.d.ts +26 -9
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateAppImageConfigCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +1035 -875
- package/dist-types/ts3.4/models/models_1.d.ts +292 -230
- package/dist-types/ts3.4/models/models_2.d.ts +504 -415
- package/dist-types/ts3.4/models/models_3.d.ts +341 -238
- package/dist-types/ts3.4/models/models_4.d.ts +13 -6
- package/package.json +35 -35
|
@@ -36,7 +36,6 @@ import {
|
|
|
36
36
|
ContainerDefinition,
|
|
37
37
|
ContextSummary,
|
|
38
38
|
InferenceSpecification,
|
|
39
|
-
KernelGatewayImageConfig,
|
|
40
39
|
MetadataProperties,
|
|
41
40
|
ModelApprovalStatus,
|
|
42
41
|
ModelPackageStatus,
|
|
@@ -62,6 +61,7 @@ import {
|
|
|
62
61
|
HubContentType,
|
|
63
62
|
InferenceExecutionConfig,
|
|
64
63
|
InferenceExperimentType,
|
|
64
|
+
LabelingJobInputConfig,
|
|
65
65
|
ModelCardSecurityConfig,
|
|
66
66
|
ModelCardStatus,
|
|
67
67
|
ModelClientConfig,
|
|
@@ -137,9 +137,10 @@ import {
|
|
|
137
137
|
InferenceExperimentSummary,
|
|
138
138
|
InferenceRecommendationsJob,
|
|
139
139
|
InferenceRecommendationsJobStep,
|
|
140
|
+
LabelCounters,
|
|
140
141
|
LabelingJobForWorkteamSummary,
|
|
142
|
+
LabelingJobOutput,
|
|
141
143
|
LabelingJobStatus,
|
|
142
|
-
LabelingJobSummary,
|
|
143
144
|
MetricData,
|
|
144
145
|
ModelArtifacts,
|
|
145
146
|
ModelCardExportJobStatus,
|
|
@@ -172,6 +173,20 @@ import {
|
|
|
172
173
|
Workforce,
|
|
173
174
|
Workteam,
|
|
174
175
|
} from "./models_2";
|
|
176
|
+
export interface LabelingJobSummary {
|
|
177
|
+
LabelingJobName: string | undefined;
|
|
178
|
+
LabelingJobArn: string | undefined;
|
|
179
|
+
CreationTime: Date | undefined;
|
|
180
|
+
LastModifiedTime: Date | undefined;
|
|
181
|
+
LabelingJobStatus: LabelingJobStatus | string | undefined;
|
|
182
|
+
LabelCounters: LabelCounters | undefined;
|
|
183
|
+
WorkteamArn: string | undefined;
|
|
184
|
+
PreHumanTaskLambdaArn: string | undefined;
|
|
185
|
+
AnnotationConsolidationLambdaArn?: string;
|
|
186
|
+
FailureReason?: string;
|
|
187
|
+
LabelingJobOutput?: LabelingJobOutput;
|
|
188
|
+
InputConfig?: LabelingJobInputConfig;
|
|
189
|
+
}
|
|
175
190
|
export interface LambdaStepMetadata {
|
|
176
191
|
Arn?: string;
|
|
177
192
|
OutputParameters?: OutputParameter[];
|
|
@@ -183,20 +198,23 @@ export interface LineageGroupSummary {
|
|
|
183
198
|
CreationTime?: Date;
|
|
184
199
|
LastModifiedTime?: Date;
|
|
185
200
|
}
|
|
186
|
-
export declare
|
|
187
|
-
ACTION
|
|
188
|
-
ARTIFACT
|
|
189
|
-
CONTEXT
|
|
190
|
-
TRIAL_COMPONENT
|
|
191
|
-
}
|
|
192
|
-
export
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
201
|
+
export declare const LineageType: {
|
|
202
|
+
readonly ACTION: "Action";
|
|
203
|
+
readonly ARTIFACT: "Artifact";
|
|
204
|
+
readonly CONTEXT: "Context";
|
|
205
|
+
readonly TRIAL_COMPONENT: "TrialComponent";
|
|
206
|
+
};
|
|
207
|
+
export type LineageType = (typeof LineageType)[keyof typeof LineageType];
|
|
208
|
+
export declare const SortActionsBy: {
|
|
209
|
+
readonly CREATION_TIME: "CreationTime";
|
|
210
|
+
readonly NAME: "Name";
|
|
211
|
+
};
|
|
212
|
+
export type SortActionsBy = (typeof SortActionsBy)[keyof typeof SortActionsBy];
|
|
213
|
+
export declare const SortOrder: {
|
|
214
|
+
readonly ASCENDING: "Ascending";
|
|
215
|
+
readonly DESCENDING: "Descending";
|
|
216
|
+
};
|
|
217
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
200
218
|
export interface ListActionsRequest {
|
|
201
219
|
SourceUri?: string;
|
|
202
220
|
ActionType?: string;
|
|
@@ -263,9 +281,11 @@ export interface ListAppsResponse {
|
|
|
263
281
|
Apps?: AppDetails[];
|
|
264
282
|
NextToken?: string;
|
|
265
283
|
}
|
|
266
|
-
export declare
|
|
267
|
-
CREATION_TIME
|
|
268
|
-
}
|
|
284
|
+
export declare const SortArtifactsBy: {
|
|
285
|
+
readonly CREATION_TIME: "CreationTime";
|
|
286
|
+
};
|
|
287
|
+
export type SortArtifactsBy =
|
|
288
|
+
(typeof SortArtifactsBy)[keyof typeof SortArtifactsBy];
|
|
269
289
|
export interface ListArtifactsRequest {
|
|
270
290
|
SourceUri?: string;
|
|
271
291
|
ArtifactType?: string;
|
|
@@ -280,13 +300,15 @@ export interface ListArtifactsResponse {
|
|
|
280
300
|
ArtifactSummaries?: ArtifactSummary[];
|
|
281
301
|
NextToken?: string;
|
|
282
302
|
}
|
|
283
|
-
export declare
|
|
284
|
-
CREATION_TIME
|
|
285
|
-
DESTINATION_ARN
|
|
286
|
-
DESTINATION_TYPE
|
|
287
|
-
SOURCE_ARN
|
|
288
|
-
SOURCE_TYPE
|
|
289
|
-
}
|
|
303
|
+
export declare const SortAssociationsBy: {
|
|
304
|
+
readonly CREATION_TIME: "CreationTime";
|
|
305
|
+
readonly DESTINATION_ARN: "DestinationArn";
|
|
306
|
+
readonly DESTINATION_TYPE: "DestinationType";
|
|
307
|
+
readonly SOURCE_ARN: "SourceArn";
|
|
308
|
+
readonly SOURCE_TYPE: "SourceType";
|
|
309
|
+
};
|
|
310
|
+
export type SortAssociationsBy =
|
|
311
|
+
(typeof SortAssociationsBy)[keyof typeof SortAssociationsBy];
|
|
290
312
|
export interface ListAssociationsRequest {
|
|
291
313
|
SourceArn?: string;
|
|
292
314
|
DestinationArn?: string;
|
|
@@ -348,11 +370,13 @@ export interface ListCodeRepositoriesOutput {
|
|
|
348
370
|
CodeRepositorySummaryList: CodeRepositorySummary[] | undefined;
|
|
349
371
|
NextToken?: string;
|
|
350
372
|
}
|
|
351
|
-
export declare
|
|
352
|
-
CREATION_TIME
|
|
353
|
-
NAME
|
|
354
|
-
STATUS
|
|
355
|
-
}
|
|
373
|
+
export declare const ListCompilationJobsSortBy: {
|
|
374
|
+
readonly CREATION_TIME: "CreationTime";
|
|
375
|
+
readonly NAME: "Name";
|
|
376
|
+
readonly STATUS: "Status";
|
|
377
|
+
};
|
|
378
|
+
export type ListCompilationJobsSortBy =
|
|
379
|
+
(typeof ListCompilationJobsSortBy)[keyof typeof ListCompilationJobsSortBy];
|
|
356
380
|
export interface ListCompilationJobsRequest {
|
|
357
381
|
NextToken?: string;
|
|
358
382
|
MaxResults?: number;
|
|
@@ -369,10 +393,12 @@ export interface ListCompilationJobsResponse {
|
|
|
369
393
|
CompilationJobSummaries: CompilationJobSummary[] | undefined;
|
|
370
394
|
NextToken?: string;
|
|
371
395
|
}
|
|
372
|
-
export declare
|
|
373
|
-
CREATION_TIME
|
|
374
|
-
NAME
|
|
375
|
-
}
|
|
396
|
+
export declare const SortContextsBy: {
|
|
397
|
+
readonly CREATION_TIME: "CreationTime";
|
|
398
|
+
readonly NAME: "Name";
|
|
399
|
+
};
|
|
400
|
+
export type SortContextsBy =
|
|
401
|
+
(typeof SortContextsBy)[keyof typeof SortContextsBy];
|
|
376
402
|
export interface ListContextsRequest {
|
|
377
403
|
SourceUri?: string;
|
|
378
404
|
ContextType?: string;
|
|
@@ -387,10 +413,12 @@ export interface ListContextsResponse {
|
|
|
387
413
|
ContextSummaries?: ContextSummary[];
|
|
388
414
|
NextToken?: string;
|
|
389
415
|
}
|
|
390
|
-
export declare
|
|
391
|
-
CREATION_TIME
|
|
392
|
-
NAME
|
|
393
|
-
}
|
|
416
|
+
export declare const MonitoringJobDefinitionSortKey: {
|
|
417
|
+
readonly CREATION_TIME: "CreationTime";
|
|
418
|
+
readonly NAME: "Name";
|
|
419
|
+
};
|
|
420
|
+
export type MonitoringJobDefinitionSortKey =
|
|
421
|
+
(typeof MonitoringJobDefinitionSortKey)[keyof typeof MonitoringJobDefinitionSortKey];
|
|
394
422
|
export interface ListDataQualityJobDefinitionsRequest {
|
|
395
423
|
EndpointName?: string;
|
|
396
424
|
SortBy?: MonitoringJobDefinitionSortKey | string;
|
|
@@ -411,11 +439,13 @@ export interface ListDataQualityJobDefinitionsResponse {
|
|
|
411
439
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
412
440
|
NextToken?: string;
|
|
413
441
|
}
|
|
414
|
-
export declare
|
|
415
|
-
CreationTime
|
|
416
|
-
LastModifiedTime
|
|
417
|
-
Name
|
|
418
|
-
}
|
|
442
|
+
export declare const ListDeviceFleetsSortBy: {
|
|
443
|
+
readonly CreationTime: "CREATION_TIME";
|
|
444
|
+
readonly LastModifiedTime: "LAST_MODIFIED_TIME";
|
|
445
|
+
readonly Name: "NAME";
|
|
446
|
+
};
|
|
447
|
+
export type ListDeviceFleetsSortBy =
|
|
448
|
+
(typeof ListDeviceFleetsSortBy)[keyof typeof ListDeviceFleetsSortBy];
|
|
419
449
|
export interface ListDeviceFleetsRequest {
|
|
420
450
|
NextToken?: string;
|
|
421
451
|
MaxResults?: number;
|
|
@@ -450,12 +480,14 @@ export interface ListDomainsResponse {
|
|
|
450
480
|
Domains?: DomainDetails[];
|
|
451
481
|
NextToken?: string;
|
|
452
482
|
}
|
|
453
|
-
export declare
|
|
454
|
-
CreationTime
|
|
455
|
-
DeviceFleetName
|
|
456
|
-
LastModifiedTime
|
|
457
|
-
Name
|
|
458
|
-
}
|
|
483
|
+
export declare const ListEdgeDeploymentPlansSortBy: {
|
|
484
|
+
readonly CreationTime: "CREATION_TIME";
|
|
485
|
+
readonly DeviceFleetName: "DEVICE_FLEET_NAME";
|
|
486
|
+
readonly LastModifiedTime: "LAST_MODIFIED_TIME";
|
|
487
|
+
readonly Name: "NAME";
|
|
488
|
+
};
|
|
489
|
+
export type ListEdgeDeploymentPlansSortBy =
|
|
490
|
+
(typeof ListEdgeDeploymentPlansSortBy)[keyof typeof ListEdgeDeploymentPlansSortBy];
|
|
459
491
|
export interface ListEdgeDeploymentPlansRequest {
|
|
460
492
|
NextToken?: string;
|
|
461
493
|
MaxResults?: number;
|
|
@@ -472,13 +504,15 @@ export interface ListEdgeDeploymentPlansResponse {
|
|
|
472
504
|
EdgeDeploymentPlanSummaries: EdgeDeploymentPlanSummary[] | undefined;
|
|
473
505
|
NextToken?: string;
|
|
474
506
|
}
|
|
475
|
-
export declare
|
|
476
|
-
CreationTime
|
|
477
|
-
EdgePackagingJobStatus
|
|
478
|
-
LastModifiedTime
|
|
479
|
-
ModelName
|
|
480
|
-
Name
|
|
481
|
-
}
|
|
507
|
+
export declare const ListEdgePackagingJobsSortBy: {
|
|
508
|
+
readonly CreationTime: "CREATION_TIME";
|
|
509
|
+
readonly EdgePackagingJobStatus: "STATUS";
|
|
510
|
+
readonly LastModifiedTime: "LAST_MODIFIED_TIME";
|
|
511
|
+
readonly ModelName: "MODEL_NAME";
|
|
512
|
+
readonly Name: "NAME";
|
|
513
|
+
};
|
|
514
|
+
export type ListEdgePackagingJobsSortBy =
|
|
515
|
+
(typeof ListEdgePackagingJobsSortBy)[keyof typeof ListEdgePackagingJobsSortBy];
|
|
482
516
|
export interface ListEdgePackagingJobsRequest {
|
|
483
517
|
NextToken?: string;
|
|
484
518
|
MaxResults?: number;
|
|
@@ -496,10 +530,11 @@ export interface ListEdgePackagingJobsResponse {
|
|
|
496
530
|
EdgePackagingJobSummaries: EdgePackagingJobSummary[] | undefined;
|
|
497
531
|
NextToken?: string;
|
|
498
532
|
}
|
|
499
|
-
export declare
|
|
500
|
-
Ascending
|
|
501
|
-
Descending
|
|
502
|
-
}
|
|
533
|
+
export declare const OrderKey: {
|
|
534
|
+
readonly Ascending: "Ascending";
|
|
535
|
+
readonly Descending: "Descending";
|
|
536
|
+
};
|
|
537
|
+
export type OrderKey = (typeof OrderKey)[keyof typeof OrderKey];
|
|
503
538
|
export interface ListEndpointConfigsInput {
|
|
504
539
|
SortBy?: EndpointConfigSortKey | string;
|
|
505
540
|
SortOrder?: OrderKey | string;
|
|
@@ -529,10 +564,12 @@ export interface ListEndpointsOutput {
|
|
|
529
564
|
Endpoints: EndpointSummary[] | undefined;
|
|
530
565
|
NextToken?: string;
|
|
531
566
|
}
|
|
532
|
-
export declare
|
|
533
|
-
CREATION_TIME
|
|
534
|
-
NAME
|
|
535
|
-
}
|
|
567
|
+
export declare const SortExperimentsBy: {
|
|
568
|
+
readonly CREATION_TIME: "CreationTime";
|
|
569
|
+
readonly NAME: "Name";
|
|
570
|
+
};
|
|
571
|
+
export type SortExperimentsBy =
|
|
572
|
+
(typeof SortExperimentsBy)[keyof typeof SortExperimentsBy];
|
|
536
573
|
export interface ListExperimentsRequest {
|
|
537
574
|
CreatedAfter?: Date;
|
|
538
575
|
CreatedBefore?: Date;
|
|
@@ -678,11 +715,13 @@ export interface ListImageVersionsResponse {
|
|
|
678
715
|
ImageVersions?: ImageVersion[];
|
|
679
716
|
NextToken?: string;
|
|
680
717
|
}
|
|
681
|
-
export declare
|
|
682
|
-
CREATION_TIME
|
|
683
|
-
NAME
|
|
684
|
-
STATUS
|
|
685
|
-
}
|
|
718
|
+
export declare const SortInferenceExperimentsBy: {
|
|
719
|
+
readonly CREATION_TIME: "CreationTime";
|
|
720
|
+
readonly NAME: "Name";
|
|
721
|
+
readonly STATUS: "Status";
|
|
722
|
+
};
|
|
723
|
+
export type SortInferenceExperimentsBy =
|
|
724
|
+
(typeof SortInferenceExperimentsBy)[keyof typeof SortInferenceExperimentsBy];
|
|
686
725
|
export interface ListInferenceExperimentsRequest {
|
|
687
726
|
NameContains?: string;
|
|
688
727
|
Type?: InferenceExperimentType | string;
|
|
@@ -700,11 +739,13 @@ export interface ListInferenceExperimentsResponse {
|
|
|
700
739
|
InferenceExperiments?: InferenceExperimentSummary[];
|
|
701
740
|
NextToken?: string;
|
|
702
741
|
}
|
|
703
|
-
export declare
|
|
704
|
-
CREATION_TIME
|
|
705
|
-
NAME
|
|
706
|
-
STATUS
|
|
707
|
-
}
|
|
742
|
+
export declare const ListInferenceRecommendationsJobsSortBy: {
|
|
743
|
+
readonly CREATION_TIME: "CreationTime";
|
|
744
|
+
readonly NAME: "Name";
|
|
745
|
+
readonly STATUS: "Status";
|
|
746
|
+
};
|
|
747
|
+
export type ListInferenceRecommendationsJobsSortBy =
|
|
748
|
+
(typeof ListInferenceRecommendationsJobsSortBy)[keyof typeof ListInferenceRecommendationsJobsSortBy];
|
|
708
749
|
export interface ListInferenceRecommendationsJobsRequest {
|
|
709
750
|
CreationTimeAfter?: Date;
|
|
710
751
|
CreationTimeBefore?: Date;
|
|
@@ -732,11 +773,12 @@ export interface ListInferenceRecommendationsJobStepsResponse {
|
|
|
732
773
|
Steps?: InferenceRecommendationsJobStep[];
|
|
733
774
|
NextToken?: string;
|
|
734
775
|
}
|
|
735
|
-
export declare
|
|
736
|
-
CREATION_TIME
|
|
737
|
-
NAME
|
|
738
|
-
STATUS
|
|
739
|
-
}
|
|
776
|
+
export declare const SortBy: {
|
|
777
|
+
readonly CREATION_TIME: "CreationTime";
|
|
778
|
+
readonly NAME: "Name";
|
|
779
|
+
readonly STATUS: "Status";
|
|
780
|
+
};
|
|
781
|
+
export type SortBy = (typeof SortBy)[keyof typeof SortBy];
|
|
740
782
|
export interface ListLabelingJobsRequest {
|
|
741
783
|
CreationTimeAfter?: Date;
|
|
742
784
|
CreationTimeBefore?: Date;
|
|
@@ -753,9 +795,11 @@ export interface ListLabelingJobsResponse {
|
|
|
753
795
|
LabelingJobSummaryList?: LabelingJobSummary[];
|
|
754
796
|
NextToken?: string;
|
|
755
797
|
}
|
|
756
|
-
export declare
|
|
757
|
-
CREATION_TIME
|
|
758
|
-
}
|
|
798
|
+
export declare const ListLabelingJobsForWorkteamSortByOptions: {
|
|
799
|
+
readonly CREATION_TIME: "CreationTime";
|
|
800
|
+
};
|
|
801
|
+
export type ListLabelingJobsForWorkteamSortByOptions =
|
|
802
|
+
(typeof ListLabelingJobsForWorkteamSortByOptions)[keyof typeof ListLabelingJobsForWorkteamSortByOptions];
|
|
759
803
|
export interface ListLabelingJobsForWorkteamRequest {
|
|
760
804
|
WorkteamArn: string | undefined;
|
|
761
805
|
MaxResults?: number;
|
|
@@ -770,10 +814,12 @@ export interface ListLabelingJobsForWorkteamResponse {
|
|
|
770
814
|
LabelingJobSummaryList: LabelingJobForWorkteamSummary[] | undefined;
|
|
771
815
|
NextToken?: string;
|
|
772
816
|
}
|
|
773
|
-
export declare
|
|
774
|
-
CREATION_TIME
|
|
775
|
-
NAME
|
|
776
|
-
}
|
|
817
|
+
export declare const SortLineageGroupsBy: {
|
|
818
|
+
readonly CREATION_TIME: "CreationTime";
|
|
819
|
+
readonly NAME: "Name";
|
|
820
|
+
};
|
|
821
|
+
export type SortLineageGroupsBy =
|
|
822
|
+
(typeof SortLineageGroupsBy)[keyof typeof SortLineageGroupsBy];
|
|
777
823
|
export interface ListLineageGroupsRequest {
|
|
778
824
|
CreatedAfter?: Date;
|
|
779
825
|
CreatedBefore?: Date;
|
|
@@ -800,15 +846,19 @@ export interface ListModelBiasJobDefinitionsResponse {
|
|
|
800
846
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
801
847
|
NextToken?: string;
|
|
802
848
|
}
|
|
803
|
-
export declare
|
|
804
|
-
CREATION_TIME
|
|
805
|
-
NAME
|
|
806
|
-
STATUS
|
|
807
|
-
}
|
|
808
|
-
export
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
849
|
+
export declare const ModelCardExportJobSortBy: {
|
|
850
|
+
readonly CREATION_TIME: "CreationTime";
|
|
851
|
+
readonly NAME: "Name";
|
|
852
|
+
readonly STATUS: "Status";
|
|
853
|
+
};
|
|
854
|
+
export type ModelCardExportJobSortBy =
|
|
855
|
+
(typeof ModelCardExportJobSortBy)[keyof typeof ModelCardExportJobSortBy];
|
|
856
|
+
export declare const ModelCardExportJobSortOrder: {
|
|
857
|
+
readonly ASCENDING: "Ascending";
|
|
858
|
+
readonly DESCENDING: "Descending";
|
|
859
|
+
};
|
|
860
|
+
export type ModelCardExportJobSortOrder =
|
|
861
|
+
(typeof ModelCardExportJobSortOrder)[keyof typeof ModelCardExportJobSortOrder];
|
|
812
862
|
export interface ListModelCardExportJobsRequest {
|
|
813
863
|
ModelCardName: string | undefined;
|
|
814
864
|
ModelCardVersion?: number;
|
|
@@ -834,14 +884,18 @@ export interface ListModelCardExportJobsResponse {
|
|
|
834
884
|
ModelCardExportJobSummaries: ModelCardExportJobSummary[] | undefined;
|
|
835
885
|
NextToken?: string;
|
|
836
886
|
}
|
|
837
|
-
export declare
|
|
838
|
-
CREATION_TIME
|
|
839
|
-
NAME
|
|
840
|
-
}
|
|
841
|
-
export
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
887
|
+
export declare const ModelCardSortBy: {
|
|
888
|
+
readonly CREATION_TIME: "CreationTime";
|
|
889
|
+
readonly NAME: "Name";
|
|
890
|
+
};
|
|
891
|
+
export type ModelCardSortBy =
|
|
892
|
+
(typeof ModelCardSortBy)[keyof typeof ModelCardSortBy];
|
|
893
|
+
export declare const ModelCardSortOrder: {
|
|
894
|
+
readonly ASCENDING: "Ascending";
|
|
895
|
+
readonly DESCENDING: "Descending";
|
|
896
|
+
};
|
|
897
|
+
export type ModelCardSortOrder =
|
|
898
|
+
(typeof ModelCardSortOrder)[keyof typeof ModelCardSortOrder];
|
|
845
899
|
export interface ListModelCardsRequest {
|
|
846
900
|
CreationTimeAfter?: Date;
|
|
847
901
|
CreationTimeBefore?: Date;
|
|
@@ -863,9 +917,11 @@ export interface ListModelCardsResponse {
|
|
|
863
917
|
ModelCardSummaries: ModelCardSummary[] | undefined;
|
|
864
918
|
NextToken?: string;
|
|
865
919
|
}
|
|
866
|
-
export declare
|
|
867
|
-
VERSION
|
|
868
|
-
}
|
|
920
|
+
export declare const ModelCardVersionSortBy: {
|
|
921
|
+
readonly VERSION: "Version";
|
|
922
|
+
};
|
|
923
|
+
export type ModelCardVersionSortBy =
|
|
924
|
+
(typeof ModelCardVersionSortBy)[keyof typeof ModelCardVersionSortBy];
|
|
869
925
|
export interface ListModelCardVersionsRequest {
|
|
870
926
|
CreationTimeAfter?: Date;
|
|
871
927
|
CreationTimeBefore?: Date;
|
|
@@ -902,12 +958,14 @@ export interface ListModelExplainabilityJobDefinitionsResponse {
|
|
|
902
958
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
903
959
|
NextToken?: string;
|
|
904
960
|
}
|
|
905
|
-
export declare
|
|
906
|
-
DOMAIN
|
|
907
|
-
FRAMEWORK
|
|
908
|
-
FRAMEWORKVERSION
|
|
909
|
-
TASK
|
|
910
|
-
}
|
|
961
|
+
export declare const ModelMetadataFilterType: {
|
|
962
|
+
readonly DOMAIN: "Domain";
|
|
963
|
+
readonly FRAMEWORK: "Framework";
|
|
964
|
+
readonly FRAMEWORKVERSION: "FrameworkVersion";
|
|
965
|
+
readonly TASK: "Task";
|
|
966
|
+
};
|
|
967
|
+
export type ModelMetadataFilterType =
|
|
968
|
+
(typeof ModelMetadataFilterType)[keyof typeof ModelMetadataFilterType];
|
|
911
969
|
export interface ModelMetadataFilter {
|
|
912
970
|
Name: ModelMetadataFilterType | string | undefined;
|
|
913
971
|
Value: string | undefined;
|
|
@@ -931,10 +989,12 @@ export interface ListModelMetadataResponse {
|
|
|
931
989
|
ModelMetadataSummaries: ModelMetadataSummary[] | undefined;
|
|
932
990
|
NextToken?: string;
|
|
933
991
|
}
|
|
934
|
-
export declare
|
|
935
|
-
CREATION_TIME
|
|
936
|
-
NAME
|
|
937
|
-
}
|
|
992
|
+
export declare const ModelPackageGroupSortBy: {
|
|
993
|
+
readonly CREATION_TIME: "CreationTime";
|
|
994
|
+
readonly NAME: "Name";
|
|
995
|
+
};
|
|
996
|
+
export type ModelPackageGroupSortBy =
|
|
997
|
+
(typeof ModelPackageGroupSortBy)[keyof typeof ModelPackageGroupSortBy];
|
|
938
998
|
export interface ListModelPackageGroupsInput {
|
|
939
999
|
CreationTimeAfter?: Date;
|
|
940
1000
|
CreationTimeBefore?: Date;
|
|
@@ -955,15 +1015,19 @@ export interface ListModelPackageGroupsOutput {
|
|
|
955
1015
|
ModelPackageGroupSummaryList: ModelPackageGroupSummary[] | undefined;
|
|
956
1016
|
NextToken?: string;
|
|
957
1017
|
}
|
|
958
|
-
export declare
|
|
959
|
-
BOTH
|
|
960
|
-
UNVERSIONED
|
|
961
|
-
VERSIONED
|
|
962
|
-
}
|
|
963
|
-
export
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
1018
|
+
export declare const ModelPackageType: {
|
|
1019
|
+
readonly BOTH: "Both";
|
|
1020
|
+
readonly UNVERSIONED: "Unversioned";
|
|
1021
|
+
readonly VERSIONED: "Versioned";
|
|
1022
|
+
};
|
|
1023
|
+
export type ModelPackageType =
|
|
1024
|
+
(typeof ModelPackageType)[keyof typeof ModelPackageType];
|
|
1025
|
+
export declare const ModelPackageSortBy: {
|
|
1026
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1027
|
+
readonly NAME: "Name";
|
|
1028
|
+
};
|
|
1029
|
+
export type ModelPackageSortBy =
|
|
1030
|
+
(typeof ModelPackageSortBy)[keyof typeof ModelPackageSortBy];
|
|
967
1031
|
export interface ListModelPackagesInput {
|
|
968
1032
|
CreationTimeAfter?: Date;
|
|
969
1033
|
CreationTimeBefore?: Date;
|
|
@@ -1004,10 +1068,11 @@ export interface ListModelQualityJobDefinitionsResponse {
|
|
|
1004
1068
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
1005
1069
|
NextToken?: string;
|
|
1006
1070
|
}
|
|
1007
|
-
export declare
|
|
1008
|
-
CreationTime
|
|
1009
|
-
Name
|
|
1010
|
-
}
|
|
1071
|
+
export declare const ModelSortKey: {
|
|
1072
|
+
readonly CreationTime: "CreationTime";
|
|
1073
|
+
readonly Name: "Name";
|
|
1074
|
+
};
|
|
1075
|
+
export type ModelSortKey = (typeof ModelSortKey)[keyof typeof ModelSortKey];
|
|
1011
1076
|
export interface ListModelsInput {
|
|
1012
1077
|
SortBy?: ModelSortKey | string;
|
|
1013
1078
|
SortOrder?: OrderKey | string;
|
|
@@ -1026,14 +1091,18 @@ export interface ListModelsOutput {
|
|
|
1026
1091
|
Models: ModelSummary[] | undefined;
|
|
1027
1092
|
NextToken?: string;
|
|
1028
1093
|
}
|
|
1029
|
-
export declare
|
|
1030
|
-
CreationTime
|
|
1031
|
-
Status
|
|
1032
|
-
}
|
|
1033
|
-
export
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1094
|
+
export declare const MonitoringAlertHistorySortKey: {
|
|
1095
|
+
readonly CreationTime: "CreationTime";
|
|
1096
|
+
readonly Status: "Status";
|
|
1097
|
+
};
|
|
1098
|
+
export type MonitoringAlertHistorySortKey =
|
|
1099
|
+
(typeof MonitoringAlertHistorySortKey)[keyof typeof MonitoringAlertHistorySortKey];
|
|
1100
|
+
export declare const MonitoringAlertStatus: {
|
|
1101
|
+
readonly IN_ALERT: "InAlert";
|
|
1102
|
+
readonly OK: "OK";
|
|
1103
|
+
};
|
|
1104
|
+
export type MonitoringAlertStatus =
|
|
1105
|
+
(typeof MonitoringAlertStatus)[keyof typeof MonitoringAlertStatus];
|
|
1037
1106
|
export interface ListMonitoringAlertHistoryRequest {
|
|
1038
1107
|
MonitoringScheduleName?: string;
|
|
1039
1108
|
MonitoringAlertName?: string;
|
|
@@ -1079,11 +1148,13 @@ export interface ListMonitoringAlertsResponse {
|
|
|
1079
1148
|
MonitoringAlertSummaries?: MonitoringAlertSummary[];
|
|
1080
1149
|
NextToken?: string;
|
|
1081
1150
|
}
|
|
1082
|
-
export declare
|
|
1083
|
-
CREATION_TIME
|
|
1084
|
-
SCHEDULED_TIME
|
|
1085
|
-
STATUS
|
|
1086
|
-
}
|
|
1151
|
+
export declare const MonitoringExecutionSortKey: {
|
|
1152
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1153
|
+
readonly SCHEDULED_TIME: "ScheduledTime";
|
|
1154
|
+
readonly STATUS: "Status";
|
|
1155
|
+
};
|
|
1156
|
+
export type MonitoringExecutionSortKey =
|
|
1157
|
+
(typeof MonitoringExecutionSortKey)[keyof typeof MonitoringExecutionSortKey];
|
|
1087
1158
|
export interface ListMonitoringExecutionsRequest {
|
|
1088
1159
|
MonitoringScheduleName?: string;
|
|
1089
1160
|
EndpointName?: string;
|
|
@@ -1105,11 +1176,13 @@ export interface ListMonitoringExecutionsResponse {
|
|
|
1105
1176
|
MonitoringExecutionSummaries: MonitoringExecutionSummary[] | undefined;
|
|
1106
1177
|
NextToken?: string;
|
|
1107
1178
|
}
|
|
1108
|
-
export declare
|
|
1109
|
-
CREATION_TIME
|
|
1110
|
-
NAME
|
|
1111
|
-
STATUS
|
|
1112
|
-
}
|
|
1179
|
+
export declare const MonitoringScheduleSortKey: {
|
|
1180
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1181
|
+
readonly NAME: "Name";
|
|
1182
|
+
readonly STATUS: "Status";
|
|
1183
|
+
};
|
|
1184
|
+
export type MonitoringScheduleSortKey =
|
|
1185
|
+
(typeof MonitoringScheduleSortKey)[keyof typeof MonitoringScheduleSortKey];
|
|
1113
1186
|
export interface ListMonitoringSchedulesRequest {
|
|
1114
1187
|
EndpointName?: string;
|
|
1115
1188
|
SortBy?: MonitoringScheduleSortKey | string;
|
|
@@ -1139,15 +1212,19 @@ export interface ListMonitoringSchedulesResponse {
|
|
|
1139
1212
|
MonitoringScheduleSummaries: MonitoringScheduleSummary[] | undefined;
|
|
1140
1213
|
NextToken?: string;
|
|
1141
1214
|
}
|
|
1142
|
-
export declare
|
|
1143
|
-
CREATION_TIME
|
|
1144
|
-
LAST_MODIFIED_TIME
|
|
1145
|
-
NAME
|
|
1146
|
-
}
|
|
1147
|
-
export
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1215
|
+
export declare const NotebookInstanceLifecycleConfigSortKey: {
|
|
1216
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1217
|
+
readonly LAST_MODIFIED_TIME: "LastModifiedTime";
|
|
1218
|
+
readonly NAME: "Name";
|
|
1219
|
+
};
|
|
1220
|
+
export type NotebookInstanceLifecycleConfigSortKey =
|
|
1221
|
+
(typeof NotebookInstanceLifecycleConfigSortKey)[keyof typeof NotebookInstanceLifecycleConfigSortKey];
|
|
1222
|
+
export declare const NotebookInstanceLifecycleConfigSortOrder: {
|
|
1223
|
+
readonly ASCENDING: "Ascending";
|
|
1224
|
+
readonly DESCENDING: "Descending";
|
|
1225
|
+
};
|
|
1226
|
+
export type NotebookInstanceLifecycleConfigSortOrder =
|
|
1227
|
+
(typeof NotebookInstanceLifecycleConfigSortOrder)[keyof typeof NotebookInstanceLifecycleConfigSortOrder];
|
|
1151
1228
|
export interface ListNotebookInstanceLifecycleConfigsInput {
|
|
1152
1229
|
NextToken?: string;
|
|
1153
1230
|
MaxResults?: number;
|
|
@@ -1169,15 +1246,19 @@ export interface ListNotebookInstanceLifecycleConfigsOutput {
|
|
|
1169
1246
|
NextToken?: string;
|
|
1170
1247
|
NotebookInstanceLifecycleConfigs?: NotebookInstanceLifecycleConfigSummary[];
|
|
1171
1248
|
}
|
|
1172
|
-
export declare
|
|
1173
|
-
CREATION_TIME
|
|
1174
|
-
NAME
|
|
1175
|
-
STATUS
|
|
1176
|
-
}
|
|
1177
|
-
export
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1249
|
+
export declare const NotebookInstanceSortKey: {
|
|
1250
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1251
|
+
readonly NAME: "Name";
|
|
1252
|
+
readonly STATUS: "Status";
|
|
1253
|
+
};
|
|
1254
|
+
export type NotebookInstanceSortKey =
|
|
1255
|
+
(typeof NotebookInstanceSortKey)[keyof typeof NotebookInstanceSortKey];
|
|
1256
|
+
export declare const NotebookInstanceSortOrder: {
|
|
1257
|
+
readonly ASCENDING: "Ascending";
|
|
1258
|
+
readonly DESCENDING: "Descending";
|
|
1259
|
+
};
|
|
1260
|
+
export type NotebookInstanceSortOrder =
|
|
1261
|
+
(typeof NotebookInstanceSortOrder)[keyof typeof NotebookInstanceSortOrder];
|
|
1181
1262
|
export interface ListNotebookInstancesInput {
|
|
1182
1263
|
NextToken?: string;
|
|
1183
1264
|
MaxResults?: number;
|
|
@@ -1209,10 +1290,12 @@ export interface ListNotebookInstancesOutput {
|
|
|
1209
1290
|
NextToken?: string;
|
|
1210
1291
|
NotebookInstances?: NotebookInstanceSummary[];
|
|
1211
1292
|
}
|
|
1212
|
-
export declare
|
|
1213
|
-
CREATION_TIME
|
|
1214
|
-
PIPELINE_EXECUTION_ARN
|
|
1215
|
-
}
|
|
1293
|
+
export declare const SortPipelineExecutionsBy: {
|
|
1294
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1295
|
+
readonly PIPELINE_EXECUTION_ARN: "PipelineExecutionArn";
|
|
1296
|
+
};
|
|
1297
|
+
export type SortPipelineExecutionsBy =
|
|
1298
|
+
(typeof SortPipelineExecutionsBy)[keyof typeof SortPipelineExecutionsBy];
|
|
1216
1299
|
export interface ListPipelineExecutionsRequest {
|
|
1217
1300
|
PipelineName: string | undefined;
|
|
1218
1301
|
CreatedAfter?: Date;
|
|
@@ -1286,14 +1369,15 @@ export interface PipelineExecutionStepMetadata {
|
|
|
1286
1369
|
Fail?: FailStepMetadata;
|
|
1287
1370
|
AutoMLJob?: AutoMLJobStepMetadata;
|
|
1288
1371
|
}
|
|
1289
|
-
export declare
|
|
1290
|
-
EXECUTING
|
|
1291
|
-
FAILED
|
|
1292
|
-
STARTING
|
|
1293
|
-
STOPPED
|
|
1294
|
-
STOPPING
|
|
1295
|
-
SUCCEEDED
|
|
1296
|
-
}
|
|
1372
|
+
export declare const StepStatus: {
|
|
1373
|
+
readonly EXECUTING: "Executing";
|
|
1374
|
+
readonly FAILED: "Failed";
|
|
1375
|
+
readonly STARTING: "Starting";
|
|
1376
|
+
readonly STOPPED: "Stopped";
|
|
1377
|
+
readonly STOPPING: "Stopping";
|
|
1378
|
+
readonly SUCCEEDED: "Succeeded";
|
|
1379
|
+
};
|
|
1380
|
+
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
1297
1381
|
export interface PipelineExecutionStep {
|
|
1298
1382
|
StepName?: string;
|
|
1299
1383
|
StepDisplayName?: string;
|
|
@@ -1323,10 +1407,12 @@ export interface ListPipelineParametersForExecutionResponse {
|
|
|
1323
1407
|
PipelineParameters?: Parameter[];
|
|
1324
1408
|
NextToken?: string;
|
|
1325
1409
|
}
|
|
1326
|
-
export declare
|
|
1327
|
-
CREATION_TIME
|
|
1328
|
-
NAME
|
|
1329
|
-
}
|
|
1410
|
+
export declare const SortPipelinesBy: {
|
|
1411
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1412
|
+
readonly NAME: "Name";
|
|
1413
|
+
};
|
|
1414
|
+
export type SortPipelinesBy =
|
|
1415
|
+
(typeof SortPipelinesBy)[keyof typeof SortPipelinesBy];
|
|
1330
1416
|
export interface ListPipelinesRequest {
|
|
1331
1417
|
PipelineNamePrefix?: string;
|
|
1332
1418
|
CreatedAfter?: Date;
|
|
@@ -1376,14 +1462,17 @@ export interface ListProcessingJobsResponse {
|
|
|
1376
1462
|
ProcessingJobSummaries: ProcessingJobSummary[] | undefined;
|
|
1377
1463
|
NextToken?: string;
|
|
1378
1464
|
}
|
|
1379
|
-
export declare
|
|
1380
|
-
CREATION_TIME
|
|
1381
|
-
NAME
|
|
1382
|
-
}
|
|
1383
|
-
export
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1465
|
+
export declare const ProjectSortBy: {
|
|
1466
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1467
|
+
readonly NAME: "Name";
|
|
1468
|
+
};
|
|
1469
|
+
export type ProjectSortBy = (typeof ProjectSortBy)[keyof typeof ProjectSortBy];
|
|
1470
|
+
export declare const ProjectSortOrder: {
|
|
1471
|
+
readonly ASCENDING: "Ascending";
|
|
1472
|
+
readonly DESCENDING: "Descending";
|
|
1473
|
+
};
|
|
1474
|
+
export type ProjectSortOrder =
|
|
1475
|
+
(typeof ProjectSortOrder)[keyof typeof ProjectSortOrder];
|
|
1387
1476
|
export interface ListProjectsInput {
|
|
1388
1477
|
CreationTimeAfter?: Date;
|
|
1389
1478
|
CreationTimeBefore?: Date;
|
|
@@ -1405,10 +1494,11 @@ export interface ListProjectsOutput {
|
|
|
1405
1494
|
ProjectSummaryList: ProjectSummary[] | undefined;
|
|
1406
1495
|
NextToken?: string;
|
|
1407
1496
|
}
|
|
1408
|
-
export declare
|
|
1409
|
-
CreationTime
|
|
1410
|
-
LastModifiedTime
|
|
1411
|
-
}
|
|
1497
|
+
export declare const SpaceSortKey: {
|
|
1498
|
+
readonly CreationTime: "CreationTime";
|
|
1499
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
1500
|
+
};
|
|
1501
|
+
export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
|
|
1412
1502
|
export interface ListSpacesRequest {
|
|
1413
1503
|
NextToken?: string;
|
|
1414
1504
|
MaxResults?: number;
|
|
@@ -1439,11 +1529,13 @@ export interface ListStageDevicesResponse {
|
|
|
1439
1529
|
DeviceDeploymentSummaries: DeviceDeploymentSummary[] | undefined;
|
|
1440
1530
|
NextToken?: string;
|
|
1441
1531
|
}
|
|
1442
|
-
export declare
|
|
1443
|
-
CreationTime
|
|
1444
|
-
LastModifiedTime
|
|
1445
|
-
Name
|
|
1446
|
-
}
|
|
1532
|
+
export declare const StudioLifecycleConfigSortKey: {
|
|
1533
|
+
readonly CreationTime: "CreationTime";
|
|
1534
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
1535
|
+
readonly Name: "Name";
|
|
1536
|
+
};
|
|
1537
|
+
export type StudioLifecycleConfigSortKey =
|
|
1538
|
+
(typeof StudioLifecycleConfigSortKey)[keyof typeof StudioLifecycleConfigSortKey];
|
|
1447
1539
|
export interface ListStudioLifecycleConfigsRequest {
|
|
1448
1540
|
MaxResults?: number;
|
|
1449
1541
|
NextToken?: string;
|
|
@@ -1511,12 +1603,14 @@ export interface ListTrainingJobsResponse {
|
|
|
1511
1603
|
TrainingJobSummaries: TrainingJobSummary[] | undefined;
|
|
1512
1604
|
NextToken?: string;
|
|
1513
1605
|
}
|
|
1514
|
-
export declare
|
|
1515
|
-
CreationTime
|
|
1516
|
-
FinalObjectiveMetricValue
|
|
1517
|
-
Name
|
|
1518
|
-
Status
|
|
1519
|
-
}
|
|
1606
|
+
export declare const TrainingJobSortByOptions: {
|
|
1607
|
+
readonly CreationTime: "CreationTime";
|
|
1608
|
+
readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
|
|
1609
|
+
readonly Name: "Name";
|
|
1610
|
+
readonly Status: "Status";
|
|
1611
|
+
};
|
|
1612
|
+
export type TrainingJobSortByOptions =
|
|
1613
|
+
(typeof TrainingJobSortByOptions)[keyof typeof TrainingJobSortByOptions];
|
|
1520
1614
|
export interface ListTrainingJobsForHyperParameterTuningJobRequest {
|
|
1521
1615
|
HyperParameterTuningJobName: string | undefined;
|
|
1522
1616
|
NextToken?: string;
|
|
@@ -1554,10 +1648,12 @@ export interface ListTransformJobsResponse {
|
|
|
1554
1648
|
TransformJobSummaries: TransformJobSummary[] | undefined;
|
|
1555
1649
|
NextToken?: string;
|
|
1556
1650
|
}
|
|
1557
|
-
export declare
|
|
1558
|
-
CREATION_TIME
|
|
1559
|
-
NAME
|
|
1560
|
-
}
|
|
1651
|
+
export declare const SortTrialComponentsBy: {
|
|
1652
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1653
|
+
readonly NAME: "Name";
|
|
1654
|
+
};
|
|
1655
|
+
export type SortTrialComponentsBy =
|
|
1656
|
+
(typeof SortTrialComponentsBy)[keyof typeof SortTrialComponentsBy];
|
|
1561
1657
|
export interface ListTrialComponentsRequest {
|
|
1562
1658
|
ExperimentName?: string;
|
|
1563
1659
|
TrialName?: string;
|
|
@@ -1586,10 +1682,11 @@ export interface ListTrialComponentsResponse {
|
|
|
1586
1682
|
TrialComponentSummaries?: TrialComponentSummary[];
|
|
1587
1683
|
NextToken?: string;
|
|
1588
1684
|
}
|
|
1589
|
-
export declare
|
|
1590
|
-
CREATION_TIME
|
|
1591
|
-
NAME
|
|
1592
|
-
}
|
|
1685
|
+
export declare const SortTrialsBy: {
|
|
1686
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1687
|
+
readonly NAME: "Name";
|
|
1688
|
+
};
|
|
1689
|
+
export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
|
|
1593
1690
|
export interface ListTrialsRequest {
|
|
1594
1691
|
ExperimentName?: string;
|
|
1595
1692
|
TrialComponentName?: string;
|
|
@@ -1612,10 +1709,12 @@ export interface ListTrialsResponse {
|
|
|
1612
1709
|
TrialSummaries?: TrialSummary[];
|
|
1613
1710
|
NextToken?: string;
|
|
1614
1711
|
}
|
|
1615
|
-
export declare
|
|
1616
|
-
CreationTime
|
|
1617
|
-
LastModifiedTime
|
|
1618
|
-
}
|
|
1712
|
+
export declare const UserProfileSortKey: {
|
|
1713
|
+
readonly CreationTime: "CreationTime";
|
|
1714
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
1715
|
+
};
|
|
1716
|
+
export type UserProfileSortKey =
|
|
1717
|
+
(typeof UserProfileSortKey)[keyof typeof UserProfileSortKey];
|
|
1619
1718
|
export interface ListUserProfilesRequest {
|
|
1620
1719
|
NextToken?: string;
|
|
1621
1720
|
MaxResults?: number;
|
|
@@ -1635,10 +1734,12 @@ export interface ListUserProfilesResponse {
|
|
|
1635
1734
|
UserProfiles?: UserProfileDetails[];
|
|
1636
1735
|
NextToken?: string;
|
|
1637
1736
|
}
|
|
1638
|
-
export declare
|
|
1639
|
-
CreateDate
|
|
1640
|
-
Name
|
|
1641
|
-
}
|
|
1737
|
+
export declare const ListWorkforcesSortByOptions: {
|
|
1738
|
+
readonly CreateDate: "CreateDate";
|
|
1739
|
+
readonly Name: "Name";
|
|
1740
|
+
};
|
|
1741
|
+
export type ListWorkforcesSortByOptions =
|
|
1742
|
+
(typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
|
|
1642
1743
|
export interface ListWorkforcesRequest {
|
|
1643
1744
|
SortBy?: ListWorkforcesSortByOptions | string;
|
|
1644
1745
|
SortOrder?: SortOrder | string;
|
|
@@ -1650,10 +1751,12 @@ export interface ListWorkforcesResponse {
|
|
|
1650
1751
|
Workforces: Workforce[] | undefined;
|
|
1651
1752
|
NextToken?: string;
|
|
1652
1753
|
}
|
|
1653
|
-
export declare
|
|
1654
|
-
CreateDate
|
|
1655
|
-
Name
|
|
1656
|
-
}
|
|
1754
|
+
export declare const ListWorkteamsSortByOptions: {
|
|
1755
|
+
readonly CreateDate: "CreateDate";
|
|
1756
|
+
readonly Name: "Name";
|
|
1757
|
+
};
|
|
1758
|
+
export type ListWorkteamsSortByOptions =
|
|
1759
|
+
(typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
|
|
1657
1760
|
export interface ListWorkteamsRequest {
|
|
1658
1761
|
SortBy?: ListWorkteamsSortByOptions | string;
|
|
1659
1762
|
SortOrder?: SortOrder | string;
|
|
@@ -1793,11 +1896,13 @@ export interface ModelPackageGroup {
|
|
|
1793
1896
|
ModelPackageGroupStatus?: ModelPackageGroupStatus | string;
|
|
1794
1897
|
Tags?: Tag[];
|
|
1795
1898
|
}
|
|
1796
|
-
export declare
|
|
1797
|
-
PROMOTE
|
|
1798
|
-
REMOVE
|
|
1799
|
-
RETAIN
|
|
1800
|
-
}
|
|
1899
|
+
export declare const ModelVariantAction: {
|
|
1900
|
+
readonly PROMOTE: "Promote";
|
|
1901
|
+
readonly REMOVE: "Remove";
|
|
1902
|
+
readonly RETAIN: "Retain";
|
|
1903
|
+
};
|
|
1904
|
+
export type ModelVariantAction =
|
|
1905
|
+
(typeof ModelVariantAction)[keyof typeof ModelVariantAction];
|
|
1801
1906
|
export interface NestedFilters {
|
|
1802
1907
|
NestedPropertyName: string | undefined;
|
|
1803
1908
|
Filters: Filter[] | undefined;
|
|
@@ -1948,10 +2053,12 @@ export interface RetryPipelineExecutionRequest {
|
|
|
1948
2053
|
export interface RetryPipelineExecutionResponse {
|
|
1949
2054
|
PipelineExecutionArn?: string;
|
|
1950
2055
|
}
|
|
1951
|
-
export declare
|
|
1952
|
-
ASCENDING
|
|
1953
|
-
DESCENDING
|
|
1954
|
-
}
|
|
2056
|
+
export declare const SearchSortOrder: {
|
|
2057
|
+
readonly ASCENDING: "Ascending";
|
|
2058
|
+
readonly DESCENDING: "Descending";
|
|
2059
|
+
};
|
|
2060
|
+
export type SearchSortOrder =
|
|
2061
|
+
(typeof SearchSortOrder)[keyof typeof SearchSortOrder];
|
|
1955
2062
|
export interface TrainingJob {
|
|
1956
2063
|
TrainingJobName?: string;
|
|
1957
2064
|
TrainingJobArn?: string;
|
|
@@ -2169,10 +2276,6 @@ export interface UpdateActionRequest {
|
|
|
2169
2276
|
export interface UpdateActionResponse {
|
|
2170
2277
|
ActionArn?: string;
|
|
2171
2278
|
}
|
|
2172
|
-
export interface UpdateAppImageConfigRequest {
|
|
2173
|
-
AppImageConfigName: string | undefined;
|
|
2174
|
-
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
2175
|
-
}
|
|
2176
2279
|
export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
|
|
2177
2280
|
export declare const SearchRecordFilterSensitiveLog: (obj: SearchRecord) => any;
|
|
2178
2281
|
export declare const SearchResponseFilterSensitiveLog: (
|