@aws-sdk/client-sagemaker 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.
- package/dist-cjs/models/models_0.js +870 -958
- 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-es/models/models_0.js +870 -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-types/models/models_0.d.ts +1320 -880
- package/dist-types/models/models_1.d.ts +402 -232
- package/dist-types/models/models_2.d.ts +685 -400
- package/dist-types/models/models_3.d.ts +487 -232
- package/dist-types/models/models_4.d.ts +10 -5
- package/dist-types/ts3.4/models/models_0.d.ts +1026 -870
- package/dist-types/ts3.4/models/models_1.d.ts +286 -228
- package/dist-types/ts3.4/models/models_2.d.ts +502 -400
- package/dist-types/ts3.4/models/models_3.d.ts +324 -232
- package/dist-types/ts3.4/models/models_4.d.ts +7 -5
- package/package.json +35 -35
|
@@ -44,27 +44,42 @@ export interface LineageGroupSummary {
|
|
|
44
44
|
}
|
|
45
45
|
/**
|
|
46
46
|
* @public
|
|
47
|
+
* @enum
|
|
47
48
|
*/
|
|
48
|
-
export declare
|
|
49
|
-
ACTION
|
|
50
|
-
ARTIFACT
|
|
51
|
-
CONTEXT
|
|
52
|
-
TRIAL_COMPONENT
|
|
53
|
-
}
|
|
49
|
+
export declare const LineageType: {
|
|
50
|
+
readonly ACTION: "Action";
|
|
51
|
+
readonly ARTIFACT: "Artifact";
|
|
52
|
+
readonly CONTEXT: "Context";
|
|
53
|
+
readonly TRIAL_COMPONENT: "TrialComponent";
|
|
54
|
+
};
|
|
54
55
|
/**
|
|
55
56
|
* @public
|
|
56
57
|
*/
|
|
57
|
-
export
|
|
58
|
-
CREATION_TIME = "CreationTime",
|
|
59
|
-
NAME = "Name"
|
|
60
|
-
}
|
|
58
|
+
export type LineageType = (typeof LineageType)[keyof typeof LineageType];
|
|
61
59
|
/**
|
|
62
60
|
* @public
|
|
61
|
+
* @enum
|
|
63
62
|
*/
|
|
64
|
-
export declare
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
}
|
|
63
|
+
export declare const SortActionsBy: {
|
|
64
|
+
readonly CREATION_TIME: "CreationTime";
|
|
65
|
+
readonly NAME: "Name";
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
export type SortActionsBy = (typeof SortActionsBy)[keyof typeof SortActionsBy];
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
* @enum
|
|
74
|
+
*/
|
|
75
|
+
export declare const SortOrder: {
|
|
76
|
+
readonly ASCENDING: "Ascending";
|
|
77
|
+
readonly DESCENDING: "Descending";
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
68
83
|
/**
|
|
69
84
|
* @public
|
|
70
85
|
*/
|
|
@@ -315,10 +330,15 @@ export interface ListAppsResponse {
|
|
|
315
330
|
}
|
|
316
331
|
/**
|
|
317
332
|
* @public
|
|
333
|
+
* @enum
|
|
318
334
|
*/
|
|
319
|
-
export declare
|
|
320
|
-
CREATION_TIME
|
|
321
|
-
}
|
|
335
|
+
export declare const SortArtifactsBy: {
|
|
336
|
+
readonly CREATION_TIME: "CreationTime";
|
|
337
|
+
};
|
|
338
|
+
/**
|
|
339
|
+
* @public
|
|
340
|
+
*/
|
|
341
|
+
export type SortArtifactsBy = (typeof SortArtifactsBy)[keyof typeof SortArtifactsBy];
|
|
322
342
|
/**
|
|
323
343
|
* @public
|
|
324
344
|
*/
|
|
@@ -372,14 +392,19 @@ export interface ListArtifactsResponse {
|
|
|
372
392
|
}
|
|
373
393
|
/**
|
|
374
394
|
* @public
|
|
395
|
+
* @enum
|
|
375
396
|
*/
|
|
376
|
-
export declare
|
|
377
|
-
CREATION_TIME
|
|
378
|
-
DESTINATION_ARN
|
|
379
|
-
DESTINATION_TYPE
|
|
380
|
-
SOURCE_ARN
|
|
381
|
-
SOURCE_TYPE
|
|
382
|
-
}
|
|
397
|
+
export declare const SortAssociationsBy: {
|
|
398
|
+
readonly CREATION_TIME: "CreationTime";
|
|
399
|
+
readonly DESTINATION_ARN: "DestinationArn";
|
|
400
|
+
readonly DESTINATION_TYPE: "DestinationType";
|
|
401
|
+
readonly SOURCE_ARN: "SourceArn";
|
|
402
|
+
readonly SOURCE_TYPE: "SourceType";
|
|
403
|
+
};
|
|
404
|
+
/**
|
|
405
|
+
* @public
|
|
406
|
+
*/
|
|
407
|
+
export type SortAssociationsBy = (typeof SortAssociationsBy)[keyof typeof SortAssociationsBy];
|
|
383
408
|
/**
|
|
384
409
|
* @public
|
|
385
410
|
*/
|
|
@@ -637,12 +662,17 @@ export interface ListCodeRepositoriesOutput {
|
|
|
637
662
|
}
|
|
638
663
|
/**
|
|
639
664
|
* @public
|
|
665
|
+
* @enum
|
|
640
666
|
*/
|
|
641
|
-
export declare
|
|
642
|
-
CREATION_TIME
|
|
643
|
-
NAME
|
|
644
|
-
STATUS
|
|
645
|
-
}
|
|
667
|
+
export declare const ListCompilationJobsSortBy: {
|
|
668
|
+
readonly CREATION_TIME: "CreationTime";
|
|
669
|
+
readonly NAME: "Name";
|
|
670
|
+
readonly STATUS: "Status";
|
|
671
|
+
};
|
|
672
|
+
/**
|
|
673
|
+
* @public
|
|
674
|
+
*/
|
|
675
|
+
export type ListCompilationJobsSortBy = (typeof ListCompilationJobsSortBy)[keyof typeof ListCompilationJobsSortBy];
|
|
646
676
|
/**
|
|
647
677
|
* @public
|
|
648
678
|
*/
|
|
@@ -712,11 +742,16 @@ export interface ListCompilationJobsResponse {
|
|
|
712
742
|
}
|
|
713
743
|
/**
|
|
714
744
|
* @public
|
|
745
|
+
* @enum
|
|
715
746
|
*/
|
|
716
|
-
export declare
|
|
717
|
-
CREATION_TIME
|
|
718
|
-
NAME
|
|
719
|
-
}
|
|
747
|
+
export declare const SortContextsBy: {
|
|
748
|
+
readonly CREATION_TIME: "CreationTime";
|
|
749
|
+
readonly NAME: "Name";
|
|
750
|
+
};
|
|
751
|
+
/**
|
|
752
|
+
* @public
|
|
753
|
+
*/
|
|
754
|
+
export type SortContextsBy = (typeof SortContextsBy)[keyof typeof SortContextsBy];
|
|
720
755
|
/**
|
|
721
756
|
* @public
|
|
722
757
|
*/
|
|
@@ -770,11 +805,16 @@ export interface ListContextsResponse {
|
|
|
770
805
|
}
|
|
771
806
|
/**
|
|
772
807
|
* @public
|
|
808
|
+
* @enum
|
|
773
809
|
*/
|
|
774
|
-
export declare
|
|
775
|
-
CREATION_TIME
|
|
776
|
-
NAME
|
|
777
|
-
}
|
|
810
|
+
export declare const MonitoringJobDefinitionSortKey: {
|
|
811
|
+
readonly CREATION_TIME: "CreationTime";
|
|
812
|
+
readonly NAME: "Name";
|
|
813
|
+
};
|
|
814
|
+
/**
|
|
815
|
+
* @public
|
|
816
|
+
*/
|
|
817
|
+
export type MonitoringJobDefinitionSortKey = (typeof MonitoringJobDefinitionSortKey)[keyof typeof MonitoringJobDefinitionSortKey];
|
|
778
818
|
/**
|
|
779
819
|
* @public
|
|
780
820
|
*/
|
|
@@ -858,12 +898,17 @@ export interface ListDataQualityJobDefinitionsResponse {
|
|
|
858
898
|
}
|
|
859
899
|
/**
|
|
860
900
|
* @public
|
|
901
|
+
* @enum
|
|
861
902
|
*/
|
|
862
|
-
export declare
|
|
863
|
-
CreationTime
|
|
864
|
-
LastModifiedTime
|
|
865
|
-
Name
|
|
866
|
-
}
|
|
903
|
+
export declare const ListDeviceFleetsSortBy: {
|
|
904
|
+
readonly CreationTime: "CREATION_TIME";
|
|
905
|
+
readonly LastModifiedTime: "LAST_MODIFIED_TIME";
|
|
906
|
+
readonly Name: "NAME";
|
|
907
|
+
};
|
|
908
|
+
/**
|
|
909
|
+
* @public
|
|
910
|
+
*/
|
|
911
|
+
export type ListDeviceFleetsSortBy = (typeof ListDeviceFleetsSortBy)[keyof typeof ListDeviceFleetsSortBy];
|
|
867
912
|
/**
|
|
868
913
|
* @public
|
|
869
914
|
*/
|
|
@@ -986,13 +1031,18 @@ export interface ListDomainsResponse {
|
|
|
986
1031
|
}
|
|
987
1032
|
/**
|
|
988
1033
|
* @public
|
|
1034
|
+
* @enum
|
|
989
1035
|
*/
|
|
990
|
-
export declare
|
|
991
|
-
CreationTime
|
|
992
|
-
DeviceFleetName
|
|
993
|
-
LastModifiedTime
|
|
994
|
-
Name
|
|
995
|
-
}
|
|
1036
|
+
export declare const ListEdgeDeploymentPlansSortBy: {
|
|
1037
|
+
readonly CreationTime: "CREATION_TIME";
|
|
1038
|
+
readonly DeviceFleetName: "DEVICE_FLEET_NAME";
|
|
1039
|
+
readonly LastModifiedTime: "LAST_MODIFIED_TIME";
|
|
1040
|
+
readonly Name: "NAME";
|
|
1041
|
+
};
|
|
1042
|
+
/**
|
|
1043
|
+
* @public
|
|
1044
|
+
*/
|
|
1045
|
+
export type ListEdgeDeploymentPlansSortBy = (typeof ListEdgeDeploymentPlansSortBy)[keyof typeof ListEdgeDeploymentPlansSortBy];
|
|
996
1046
|
/**
|
|
997
1047
|
* @public
|
|
998
1048
|
*/
|
|
@@ -1053,14 +1103,19 @@ export interface ListEdgeDeploymentPlansResponse {
|
|
|
1053
1103
|
}
|
|
1054
1104
|
/**
|
|
1055
1105
|
* @public
|
|
1106
|
+
* @enum
|
|
1056
1107
|
*/
|
|
1057
|
-
export declare
|
|
1058
|
-
CreationTime
|
|
1059
|
-
EdgePackagingJobStatus
|
|
1060
|
-
LastModifiedTime
|
|
1061
|
-
ModelName
|
|
1062
|
-
Name
|
|
1063
|
-
}
|
|
1108
|
+
export declare const ListEdgePackagingJobsSortBy: {
|
|
1109
|
+
readonly CreationTime: "CREATION_TIME";
|
|
1110
|
+
readonly EdgePackagingJobStatus: "STATUS";
|
|
1111
|
+
readonly LastModifiedTime: "LAST_MODIFIED_TIME";
|
|
1112
|
+
readonly ModelName: "MODEL_NAME";
|
|
1113
|
+
readonly Name: "NAME";
|
|
1114
|
+
};
|
|
1115
|
+
/**
|
|
1116
|
+
* @public
|
|
1117
|
+
*/
|
|
1118
|
+
export type ListEdgePackagingJobsSortBy = (typeof ListEdgePackagingJobsSortBy)[keyof typeof ListEdgePackagingJobsSortBy];
|
|
1064
1119
|
/**
|
|
1065
1120
|
* @public
|
|
1066
1121
|
*/
|
|
@@ -1125,11 +1180,16 @@ export interface ListEdgePackagingJobsResponse {
|
|
|
1125
1180
|
}
|
|
1126
1181
|
/**
|
|
1127
1182
|
* @public
|
|
1183
|
+
* @enum
|
|
1128
1184
|
*/
|
|
1129
|
-
export declare
|
|
1130
|
-
Ascending
|
|
1131
|
-
Descending
|
|
1132
|
-
}
|
|
1185
|
+
export declare const OrderKey: {
|
|
1186
|
+
readonly Ascending: "Ascending";
|
|
1187
|
+
readonly Descending: "Descending";
|
|
1188
|
+
};
|
|
1189
|
+
/**
|
|
1190
|
+
* @public
|
|
1191
|
+
*/
|
|
1192
|
+
export type OrderKey = (typeof OrderKey)[keyof typeof OrderKey];
|
|
1133
1193
|
/**
|
|
1134
1194
|
* @public
|
|
1135
1195
|
*/
|
|
@@ -1251,11 +1311,16 @@ export interface ListEndpointsOutput {
|
|
|
1251
1311
|
}
|
|
1252
1312
|
/**
|
|
1253
1313
|
* @public
|
|
1314
|
+
* @enum
|
|
1254
1315
|
*/
|
|
1255
|
-
export declare
|
|
1256
|
-
CREATION_TIME
|
|
1257
|
-
NAME
|
|
1258
|
-
}
|
|
1316
|
+
export declare const SortExperimentsBy: {
|
|
1317
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1318
|
+
readonly NAME: "Name";
|
|
1319
|
+
};
|
|
1320
|
+
/**
|
|
1321
|
+
* @public
|
|
1322
|
+
*/
|
|
1323
|
+
export type SortExperimentsBy = (typeof SortExperimentsBy)[keyof typeof SortExperimentsBy];
|
|
1259
1324
|
/**
|
|
1260
1325
|
* @public
|
|
1261
1326
|
*/
|
|
@@ -1791,12 +1856,17 @@ export interface ListImageVersionsResponse {
|
|
|
1791
1856
|
}
|
|
1792
1857
|
/**
|
|
1793
1858
|
* @public
|
|
1859
|
+
* @enum
|
|
1794
1860
|
*/
|
|
1795
|
-
export declare
|
|
1796
|
-
CREATION_TIME
|
|
1797
|
-
NAME
|
|
1798
|
-
STATUS
|
|
1799
|
-
}
|
|
1861
|
+
export declare const SortInferenceExperimentsBy: {
|
|
1862
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1863
|
+
readonly NAME: "Name";
|
|
1864
|
+
readonly STATUS: "Status";
|
|
1865
|
+
};
|
|
1866
|
+
/**
|
|
1867
|
+
* @public
|
|
1868
|
+
*/
|
|
1869
|
+
export type SortInferenceExperimentsBy = (typeof SortInferenceExperimentsBy)[keyof typeof SortInferenceExperimentsBy];
|
|
1800
1870
|
/**
|
|
1801
1871
|
* @public
|
|
1802
1872
|
*/
|
|
@@ -1867,12 +1937,17 @@ export interface ListInferenceExperimentsResponse {
|
|
|
1867
1937
|
}
|
|
1868
1938
|
/**
|
|
1869
1939
|
* @public
|
|
1940
|
+
* @enum
|
|
1870
1941
|
*/
|
|
1871
|
-
export declare
|
|
1872
|
-
CREATION_TIME
|
|
1873
|
-
NAME
|
|
1874
|
-
STATUS
|
|
1875
|
-
}
|
|
1942
|
+
export declare const ListInferenceRecommendationsJobsSortBy: {
|
|
1943
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1944
|
+
readonly NAME: "Name";
|
|
1945
|
+
readonly STATUS: "Status";
|
|
1946
|
+
};
|
|
1947
|
+
/**
|
|
1948
|
+
* @public
|
|
1949
|
+
*/
|
|
1950
|
+
export type ListInferenceRecommendationsJobsSortBy = (typeof ListInferenceRecommendationsJobsSortBy)[keyof typeof ListInferenceRecommendationsJobsSortBy];
|
|
1876
1951
|
/**
|
|
1877
1952
|
* @public
|
|
1878
1953
|
*/
|
|
@@ -1975,12 +2050,17 @@ export interface ListInferenceRecommendationsJobStepsResponse {
|
|
|
1975
2050
|
}
|
|
1976
2051
|
/**
|
|
1977
2052
|
* @public
|
|
2053
|
+
* @enum
|
|
1978
2054
|
*/
|
|
1979
|
-
export declare
|
|
1980
|
-
CREATION_TIME
|
|
1981
|
-
NAME
|
|
1982
|
-
STATUS
|
|
1983
|
-
}
|
|
2055
|
+
export declare const SortBy: {
|
|
2056
|
+
readonly CREATION_TIME: "CreationTime";
|
|
2057
|
+
readonly NAME: "Name";
|
|
2058
|
+
readonly STATUS: "Status";
|
|
2059
|
+
};
|
|
2060
|
+
/**
|
|
2061
|
+
* @public
|
|
2062
|
+
*/
|
|
2063
|
+
export type SortBy = (typeof SortBy)[keyof typeof SortBy];
|
|
1984
2064
|
/**
|
|
1985
2065
|
* @public
|
|
1986
2066
|
*/
|
|
@@ -2050,10 +2130,15 @@ export interface ListLabelingJobsResponse {
|
|
|
2050
2130
|
}
|
|
2051
2131
|
/**
|
|
2052
2132
|
* @public
|
|
2133
|
+
* @enum
|
|
2053
2134
|
*/
|
|
2054
|
-
export declare
|
|
2055
|
-
CREATION_TIME
|
|
2056
|
-
}
|
|
2135
|
+
export declare const ListLabelingJobsForWorkteamSortByOptions: {
|
|
2136
|
+
readonly CREATION_TIME: "CreationTime";
|
|
2137
|
+
};
|
|
2138
|
+
/**
|
|
2139
|
+
* @public
|
|
2140
|
+
*/
|
|
2141
|
+
export type ListLabelingJobsForWorkteamSortByOptions = (typeof ListLabelingJobsForWorkteamSortByOptions)[keyof typeof ListLabelingJobsForWorkteamSortByOptions];
|
|
2057
2142
|
/**
|
|
2058
2143
|
* @public
|
|
2059
2144
|
*/
|
|
@@ -2114,11 +2199,16 @@ export interface ListLabelingJobsForWorkteamResponse {
|
|
|
2114
2199
|
}
|
|
2115
2200
|
/**
|
|
2116
2201
|
* @public
|
|
2202
|
+
* @enum
|
|
2117
2203
|
*/
|
|
2118
|
-
export declare
|
|
2119
|
-
CREATION_TIME
|
|
2120
|
-
NAME
|
|
2121
|
-
}
|
|
2204
|
+
export declare const SortLineageGroupsBy: {
|
|
2205
|
+
readonly CREATION_TIME: "CreationTime";
|
|
2206
|
+
readonly NAME: "Name";
|
|
2207
|
+
};
|
|
2208
|
+
/**
|
|
2209
|
+
* @public
|
|
2210
|
+
*/
|
|
2211
|
+
export type SortLineageGroupsBy = (typeof SortLineageGroupsBy)[keyof typeof SortLineageGroupsBy];
|
|
2122
2212
|
/**
|
|
2123
2213
|
* @public
|
|
2124
2214
|
*/
|
|
@@ -2222,19 +2312,29 @@ export interface ListModelBiasJobDefinitionsResponse {
|
|
|
2222
2312
|
}
|
|
2223
2313
|
/**
|
|
2224
2314
|
* @public
|
|
2315
|
+
* @enum
|
|
2225
2316
|
*/
|
|
2226
|
-
export declare
|
|
2227
|
-
CREATION_TIME
|
|
2228
|
-
NAME
|
|
2229
|
-
STATUS
|
|
2230
|
-
}
|
|
2317
|
+
export declare const ModelCardExportJobSortBy: {
|
|
2318
|
+
readonly CREATION_TIME: "CreationTime";
|
|
2319
|
+
readonly NAME: "Name";
|
|
2320
|
+
readonly STATUS: "Status";
|
|
2321
|
+
};
|
|
2231
2322
|
/**
|
|
2232
2323
|
* @public
|
|
2233
2324
|
*/
|
|
2234
|
-
export
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2325
|
+
export type ModelCardExportJobSortBy = (typeof ModelCardExportJobSortBy)[keyof typeof ModelCardExportJobSortBy];
|
|
2326
|
+
/**
|
|
2327
|
+
* @public
|
|
2328
|
+
* @enum
|
|
2329
|
+
*/
|
|
2330
|
+
export declare const ModelCardExportJobSortOrder: {
|
|
2331
|
+
readonly ASCENDING: "Ascending";
|
|
2332
|
+
readonly DESCENDING: "Descending";
|
|
2333
|
+
};
|
|
2334
|
+
/**
|
|
2335
|
+
* @public
|
|
2336
|
+
*/
|
|
2337
|
+
export type ModelCardExportJobSortOrder = (typeof ModelCardExportJobSortOrder)[keyof typeof ModelCardExportJobSortOrder];
|
|
2238
2338
|
/**
|
|
2239
2339
|
* @public
|
|
2240
2340
|
*/
|
|
@@ -2332,18 +2432,28 @@ export interface ListModelCardExportJobsResponse {
|
|
|
2332
2432
|
}
|
|
2333
2433
|
/**
|
|
2334
2434
|
* @public
|
|
2435
|
+
* @enum
|
|
2335
2436
|
*/
|
|
2336
|
-
export declare
|
|
2337
|
-
CREATION_TIME
|
|
2338
|
-
NAME
|
|
2339
|
-
}
|
|
2437
|
+
export declare const ModelCardSortBy: {
|
|
2438
|
+
readonly CREATION_TIME: "CreationTime";
|
|
2439
|
+
readonly NAME: "Name";
|
|
2440
|
+
};
|
|
2340
2441
|
/**
|
|
2341
2442
|
* @public
|
|
2342
2443
|
*/
|
|
2343
|
-
export
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2444
|
+
export type ModelCardSortBy = (typeof ModelCardSortBy)[keyof typeof ModelCardSortBy];
|
|
2445
|
+
/**
|
|
2446
|
+
* @public
|
|
2447
|
+
* @enum
|
|
2448
|
+
*/
|
|
2449
|
+
export declare const ModelCardSortOrder: {
|
|
2450
|
+
readonly ASCENDING: "Ascending";
|
|
2451
|
+
readonly DESCENDING: "Descending";
|
|
2452
|
+
};
|
|
2453
|
+
/**
|
|
2454
|
+
* @public
|
|
2455
|
+
*/
|
|
2456
|
+
export type ModelCardSortOrder = (typeof ModelCardSortOrder)[keyof typeof ModelCardSortOrder];
|
|
2347
2457
|
/**
|
|
2348
2458
|
* @public
|
|
2349
2459
|
*/
|
|
@@ -2444,10 +2554,15 @@ export interface ListModelCardsResponse {
|
|
|
2444
2554
|
}
|
|
2445
2555
|
/**
|
|
2446
2556
|
* @public
|
|
2557
|
+
* @enum
|
|
2447
2558
|
*/
|
|
2448
|
-
export declare
|
|
2449
|
-
VERSION
|
|
2450
|
-
}
|
|
2559
|
+
export declare const ModelCardVersionSortBy: {
|
|
2560
|
+
readonly VERSION: "Version";
|
|
2561
|
+
};
|
|
2562
|
+
/**
|
|
2563
|
+
* @public
|
|
2564
|
+
*/
|
|
2565
|
+
export type ModelCardVersionSortBy = (typeof ModelCardVersionSortBy)[keyof typeof ModelCardVersionSortBy];
|
|
2451
2566
|
/**
|
|
2452
2567
|
* @public
|
|
2453
2568
|
*/
|
|
@@ -2608,13 +2723,18 @@ export interface ListModelExplainabilityJobDefinitionsResponse {
|
|
|
2608
2723
|
}
|
|
2609
2724
|
/**
|
|
2610
2725
|
* @public
|
|
2726
|
+
* @enum
|
|
2611
2727
|
*/
|
|
2612
|
-
export declare
|
|
2613
|
-
DOMAIN
|
|
2614
|
-
FRAMEWORK
|
|
2615
|
-
FRAMEWORKVERSION
|
|
2616
|
-
TASK
|
|
2617
|
-
}
|
|
2728
|
+
export declare const ModelMetadataFilterType: {
|
|
2729
|
+
readonly DOMAIN: "Domain";
|
|
2730
|
+
readonly FRAMEWORK: "Framework";
|
|
2731
|
+
readonly FRAMEWORKVERSION: "FrameworkVersion";
|
|
2732
|
+
readonly TASK: "Task";
|
|
2733
|
+
};
|
|
2734
|
+
/**
|
|
2735
|
+
* @public
|
|
2736
|
+
*/
|
|
2737
|
+
export type ModelMetadataFilterType = (typeof ModelMetadataFilterType)[keyof typeof ModelMetadataFilterType];
|
|
2618
2738
|
/**
|
|
2619
2739
|
* @public
|
|
2620
2740
|
* <p>Part of the search expression. You can specify the name and value
|
|
@@ -2705,11 +2825,16 @@ export interface ListModelMetadataResponse {
|
|
|
2705
2825
|
}
|
|
2706
2826
|
/**
|
|
2707
2827
|
* @public
|
|
2828
|
+
* @enum
|
|
2708
2829
|
*/
|
|
2709
|
-
export declare
|
|
2710
|
-
CREATION_TIME
|
|
2711
|
-
NAME
|
|
2712
|
-
}
|
|
2830
|
+
export declare const ModelPackageGroupSortBy: {
|
|
2831
|
+
readonly CREATION_TIME: "CreationTime";
|
|
2832
|
+
readonly NAME: "Name";
|
|
2833
|
+
};
|
|
2834
|
+
/**
|
|
2835
|
+
* @public
|
|
2836
|
+
*/
|
|
2837
|
+
export type ModelPackageGroupSortBy = (typeof ModelPackageGroupSortBy)[keyof typeof ModelPackageGroupSortBy];
|
|
2713
2838
|
/**
|
|
2714
2839
|
* @public
|
|
2715
2840
|
*/
|
|
@@ -2788,19 +2913,29 @@ export interface ListModelPackageGroupsOutput {
|
|
|
2788
2913
|
}
|
|
2789
2914
|
/**
|
|
2790
2915
|
* @public
|
|
2916
|
+
* @enum
|
|
2791
2917
|
*/
|
|
2792
|
-
export declare
|
|
2793
|
-
BOTH
|
|
2794
|
-
UNVERSIONED
|
|
2795
|
-
VERSIONED
|
|
2796
|
-
}
|
|
2918
|
+
export declare const ModelPackageType: {
|
|
2919
|
+
readonly BOTH: "Both";
|
|
2920
|
+
readonly UNVERSIONED: "Unversioned";
|
|
2921
|
+
readonly VERSIONED: "Versioned";
|
|
2922
|
+
};
|
|
2797
2923
|
/**
|
|
2798
2924
|
* @public
|
|
2799
2925
|
*/
|
|
2800
|
-
export
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2926
|
+
export type ModelPackageType = (typeof ModelPackageType)[keyof typeof ModelPackageType];
|
|
2927
|
+
/**
|
|
2928
|
+
* @public
|
|
2929
|
+
* @enum
|
|
2930
|
+
*/
|
|
2931
|
+
export declare const ModelPackageSortBy: {
|
|
2932
|
+
readonly CREATION_TIME: "CreationTime";
|
|
2933
|
+
readonly NAME: "Name";
|
|
2934
|
+
};
|
|
2935
|
+
/**
|
|
2936
|
+
* @public
|
|
2937
|
+
*/
|
|
2938
|
+
export type ModelPackageSortBy = (typeof ModelPackageSortBy)[keyof typeof ModelPackageSortBy];
|
|
2804
2939
|
/**
|
|
2805
2940
|
* @public
|
|
2806
2941
|
*/
|
|
@@ -2998,11 +3133,16 @@ export interface ListModelQualityJobDefinitionsResponse {
|
|
|
2998
3133
|
}
|
|
2999
3134
|
/**
|
|
3000
3135
|
* @public
|
|
3136
|
+
* @enum
|
|
3001
3137
|
*/
|
|
3002
|
-
export declare
|
|
3003
|
-
CreationTime
|
|
3004
|
-
Name
|
|
3005
|
-
}
|
|
3138
|
+
export declare const ModelSortKey: {
|
|
3139
|
+
readonly CreationTime: "CreationTime";
|
|
3140
|
+
readonly Name: "Name";
|
|
3141
|
+
};
|
|
3142
|
+
/**
|
|
3143
|
+
* @public
|
|
3144
|
+
*/
|
|
3145
|
+
export type ModelSortKey = (typeof ModelSortKey)[keyof typeof ModelSortKey];
|
|
3006
3146
|
/**
|
|
3007
3147
|
* @public
|
|
3008
3148
|
*/
|
|
@@ -3076,18 +3216,28 @@ export interface ListModelsOutput {
|
|
|
3076
3216
|
}
|
|
3077
3217
|
/**
|
|
3078
3218
|
* @public
|
|
3219
|
+
* @enum
|
|
3079
3220
|
*/
|
|
3080
|
-
export declare
|
|
3081
|
-
CreationTime
|
|
3082
|
-
Status
|
|
3083
|
-
}
|
|
3221
|
+
export declare const MonitoringAlertHistorySortKey: {
|
|
3222
|
+
readonly CreationTime: "CreationTime";
|
|
3223
|
+
readonly Status: "Status";
|
|
3224
|
+
};
|
|
3084
3225
|
/**
|
|
3085
3226
|
* @public
|
|
3086
3227
|
*/
|
|
3087
|
-
export
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3228
|
+
export type MonitoringAlertHistorySortKey = (typeof MonitoringAlertHistorySortKey)[keyof typeof MonitoringAlertHistorySortKey];
|
|
3229
|
+
/**
|
|
3230
|
+
* @public
|
|
3231
|
+
* @enum
|
|
3232
|
+
*/
|
|
3233
|
+
export declare const MonitoringAlertStatus: {
|
|
3234
|
+
readonly IN_ALERT: "InAlert";
|
|
3235
|
+
readonly OK: "OK";
|
|
3236
|
+
};
|
|
3237
|
+
/**
|
|
3238
|
+
* @public
|
|
3239
|
+
*/
|
|
3240
|
+
export type MonitoringAlertStatus = (typeof MonitoringAlertStatus)[keyof typeof MonitoringAlertStatus];
|
|
3091
3241
|
/**
|
|
3092
3242
|
* @public
|
|
3093
3243
|
*/
|
|
@@ -3265,12 +3415,17 @@ export interface ListMonitoringAlertsResponse {
|
|
|
3265
3415
|
}
|
|
3266
3416
|
/**
|
|
3267
3417
|
* @public
|
|
3418
|
+
* @enum
|
|
3268
3419
|
*/
|
|
3269
|
-
export declare
|
|
3270
|
-
CREATION_TIME
|
|
3271
|
-
SCHEDULED_TIME
|
|
3272
|
-
STATUS
|
|
3273
|
-
}
|
|
3420
|
+
export declare const MonitoringExecutionSortKey: {
|
|
3421
|
+
readonly CREATION_TIME: "CreationTime";
|
|
3422
|
+
readonly SCHEDULED_TIME: "ScheduledTime";
|
|
3423
|
+
readonly STATUS: "Status";
|
|
3424
|
+
};
|
|
3425
|
+
/**
|
|
3426
|
+
* @public
|
|
3427
|
+
*/
|
|
3428
|
+
export type MonitoringExecutionSortKey = (typeof MonitoringExecutionSortKey)[keyof typeof MonitoringExecutionSortKey];
|
|
3274
3429
|
/**
|
|
3275
3430
|
* @public
|
|
3276
3431
|
*/
|
|
@@ -3357,12 +3512,17 @@ export interface ListMonitoringExecutionsResponse {
|
|
|
3357
3512
|
}
|
|
3358
3513
|
/**
|
|
3359
3514
|
* @public
|
|
3515
|
+
* @enum
|
|
3360
3516
|
*/
|
|
3361
|
-
export declare
|
|
3362
|
-
CREATION_TIME
|
|
3363
|
-
NAME
|
|
3364
|
-
STATUS
|
|
3365
|
-
}
|
|
3517
|
+
export declare const MonitoringScheduleSortKey: {
|
|
3518
|
+
readonly CREATION_TIME: "CreationTime";
|
|
3519
|
+
readonly NAME: "Name";
|
|
3520
|
+
readonly STATUS: "Status";
|
|
3521
|
+
};
|
|
3522
|
+
/**
|
|
3523
|
+
* @public
|
|
3524
|
+
*/
|
|
3525
|
+
export type MonitoringScheduleSortKey = (typeof MonitoringScheduleSortKey)[keyof typeof MonitoringScheduleSortKey];
|
|
3366
3526
|
/**
|
|
3367
3527
|
* @public
|
|
3368
3528
|
*/
|
|
@@ -3479,19 +3639,29 @@ export interface ListMonitoringSchedulesResponse {
|
|
|
3479
3639
|
}
|
|
3480
3640
|
/**
|
|
3481
3641
|
* @public
|
|
3642
|
+
* @enum
|
|
3482
3643
|
*/
|
|
3483
|
-
export declare
|
|
3484
|
-
CREATION_TIME
|
|
3485
|
-
LAST_MODIFIED_TIME
|
|
3486
|
-
NAME
|
|
3487
|
-
}
|
|
3644
|
+
export declare const NotebookInstanceLifecycleConfigSortKey: {
|
|
3645
|
+
readonly CREATION_TIME: "CreationTime";
|
|
3646
|
+
readonly LAST_MODIFIED_TIME: "LastModifiedTime";
|
|
3647
|
+
readonly NAME: "Name";
|
|
3648
|
+
};
|
|
3488
3649
|
/**
|
|
3489
3650
|
* @public
|
|
3490
3651
|
*/
|
|
3491
|
-
export
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3652
|
+
export type NotebookInstanceLifecycleConfigSortKey = (typeof NotebookInstanceLifecycleConfigSortKey)[keyof typeof NotebookInstanceLifecycleConfigSortKey];
|
|
3653
|
+
/**
|
|
3654
|
+
* @public
|
|
3655
|
+
* @enum
|
|
3656
|
+
*/
|
|
3657
|
+
export declare const NotebookInstanceLifecycleConfigSortOrder: {
|
|
3658
|
+
readonly ASCENDING: "Ascending";
|
|
3659
|
+
readonly DESCENDING: "Descending";
|
|
3660
|
+
};
|
|
3661
|
+
/**
|
|
3662
|
+
* @public
|
|
3663
|
+
*/
|
|
3664
|
+
export type NotebookInstanceLifecycleConfigSortOrder = (typeof NotebookInstanceLifecycleConfigSortOrder)[keyof typeof NotebookInstanceLifecycleConfigSortOrder];
|
|
3495
3665
|
/**
|
|
3496
3666
|
* @public
|
|
3497
3667
|
*/
|
|
@@ -3579,19 +3749,29 @@ export interface ListNotebookInstanceLifecycleConfigsOutput {
|
|
|
3579
3749
|
}
|
|
3580
3750
|
/**
|
|
3581
3751
|
* @public
|
|
3752
|
+
* @enum
|
|
3582
3753
|
*/
|
|
3583
|
-
export declare
|
|
3584
|
-
CREATION_TIME
|
|
3585
|
-
NAME
|
|
3586
|
-
STATUS
|
|
3587
|
-
}
|
|
3754
|
+
export declare const NotebookInstanceSortKey: {
|
|
3755
|
+
readonly CREATION_TIME: "CreationTime";
|
|
3756
|
+
readonly NAME: "Name";
|
|
3757
|
+
readonly STATUS: "Status";
|
|
3758
|
+
};
|
|
3588
3759
|
/**
|
|
3589
3760
|
* @public
|
|
3590
3761
|
*/
|
|
3591
|
-
export
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3762
|
+
export type NotebookInstanceSortKey = (typeof NotebookInstanceSortKey)[keyof typeof NotebookInstanceSortKey];
|
|
3763
|
+
/**
|
|
3764
|
+
* @public
|
|
3765
|
+
* @enum
|
|
3766
|
+
*/
|
|
3767
|
+
export declare const NotebookInstanceSortOrder: {
|
|
3768
|
+
readonly ASCENDING: "Ascending";
|
|
3769
|
+
readonly DESCENDING: "Descending";
|
|
3770
|
+
};
|
|
3771
|
+
/**
|
|
3772
|
+
* @public
|
|
3773
|
+
*/
|
|
3774
|
+
export type NotebookInstanceSortOrder = (typeof NotebookInstanceSortOrder)[keyof typeof NotebookInstanceSortOrder];
|
|
3595
3775
|
/**
|
|
3596
3776
|
* @public
|
|
3597
3777
|
*/
|
|
@@ -3745,11 +3925,16 @@ export interface ListNotebookInstancesOutput {
|
|
|
3745
3925
|
}
|
|
3746
3926
|
/**
|
|
3747
3927
|
* @public
|
|
3928
|
+
* @enum
|
|
3748
3929
|
*/
|
|
3749
|
-
export declare
|
|
3750
|
-
CREATION_TIME
|
|
3751
|
-
PIPELINE_EXECUTION_ARN
|
|
3752
|
-
}
|
|
3930
|
+
export declare const SortPipelineExecutionsBy: {
|
|
3931
|
+
readonly CREATION_TIME: "CreationTime";
|
|
3932
|
+
readonly PIPELINE_EXECUTION_ARN: "PipelineExecutionArn";
|
|
3933
|
+
};
|
|
3934
|
+
/**
|
|
3935
|
+
* @public
|
|
3936
|
+
*/
|
|
3937
|
+
export type SortPipelineExecutionsBy = (typeof SortPipelineExecutionsBy)[keyof typeof SortPipelineExecutionsBy];
|
|
3753
3938
|
/**
|
|
3754
3939
|
* @public
|
|
3755
3940
|
*/
|
|
@@ -4088,15 +4273,20 @@ export interface PipelineExecutionStepMetadata {
|
|
|
4088
4273
|
}
|
|
4089
4274
|
/**
|
|
4090
4275
|
* @public
|
|
4276
|
+
* @enum
|
|
4091
4277
|
*/
|
|
4092
|
-
export declare
|
|
4093
|
-
EXECUTING
|
|
4094
|
-
FAILED
|
|
4095
|
-
STARTING
|
|
4096
|
-
STOPPED
|
|
4097
|
-
STOPPING
|
|
4098
|
-
SUCCEEDED
|
|
4099
|
-
}
|
|
4278
|
+
export declare const StepStatus: {
|
|
4279
|
+
readonly EXECUTING: "Executing";
|
|
4280
|
+
readonly FAILED: "Failed";
|
|
4281
|
+
readonly STARTING: "Starting";
|
|
4282
|
+
readonly STOPPED: "Stopped";
|
|
4283
|
+
readonly STOPPING: "Stopping";
|
|
4284
|
+
readonly SUCCEEDED: "Succeeded";
|
|
4285
|
+
};
|
|
4286
|
+
/**
|
|
4287
|
+
* @public
|
|
4288
|
+
*/
|
|
4289
|
+
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
4100
4290
|
/**
|
|
4101
4291
|
* @public
|
|
4102
4292
|
* <p>An execution of a step in a pipeline.</p>
|
|
@@ -4210,11 +4400,16 @@ export interface ListPipelineParametersForExecutionResponse {
|
|
|
4210
4400
|
}
|
|
4211
4401
|
/**
|
|
4212
4402
|
* @public
|
|
4403
|
+
* @enum
|
|
4213
4404
|
*/
|
|
4214
|
-
export declare
|
|
4215
|
-
CREATION_TIME
|
|
4216
|
-
NAME
|
|
4217
|
-
}
|
|
4405
|
+
export declare const SortPipelinesBy: {
|
|
4406
|
+
readonly CREATION_TIME: "CreationTime";
|
|
4407
|
+
readonly NAME: "Name";
|
|
4408
|
+
};
|
|
4409
|
+
/**
|
|
4410
|
+
* @public
|
|
4411
|
+
*/
|
|
4412
|
+
export type SortPipelinesBy = (typeof SortPipelinesBy)[keyof typeof SortPipelinesBy];
|
|
4218
4413
|
/**
|
|
4219
4414
|
* @public
|
|
4220
4415
|
*/
|
|
@@ -4411,18 +4606,28 @@ export interface ListProcessingJobsResponse {
|
|
|
4411
4606
|
}
|
|
4412
4607
|
/**
|
|
4413
4608
|
* @public
|
|
4609
|
+
* @enum
|
|
4414
4610
|
*/
|
|
4415
|
-
export declare
|
|
4416
|
-
CREATION_TIME
|
|
4417
|
-
NAME
|
|
4418
|
-
}
|
|
4611
|
+
export declare const ProjectSortBy: {
|
|
4612
|
+
readonly CREATION_TIME: "CreationTime";
|
|
4613
|
+
readonly NAME: "Name";
|
|
4614
|
+
};
|
|
4419
4615
|
/**
|
|
4420
4616
|
* @public
|
|
4421
4617
|
*/
|
|
4422
|
-
export
|
|
4423
|
-
|
|
4424
|
-
|
|
4425
|
-
|
|
4618
|
+
export type ProjectSortBy = (typeof ProjectSortBy)[keyof typeof ProjectSortBy];
|
|
4619
|
+
/**
|
|
4620
|
+
* @public
|
|
4621
|
+
* @enum
|
|
4622
|
+
*/
|
|
4623
|
+
export declare const ProjectSortOrder: {
|
|
4624
|
+
readonly ASCENDING: "Ascending";
|
|
4625
|
+
readonly DESCENDING: "Descending";
|
|
4626
|
+
};
|
|
4627
|
+
/**
|
|
4628
|
+
* @public
|
|
4629
|
+
*/
|
|
4630
|
+
export type ProjectSortOrder = (typeof ProjectSortOrder)[keyof typeof ProjectSortOrder];
|
|
4426
4631
|
/**
|
|
4427
4632
|
* @public
|
|
4428
4633
|
*/
|
|
@@ -4507,11 +4712,16 @@ export interface ListProjectsOutput {
|
|
|
4507
4712
|
}
|
|
4508
4713
|
/**
|
|
4509
4714
|
* @public
|
|
4715
|
+
* @enum
|
|
4510
4716
|
*/
|
|
4511
|
-
export declare
|
|
4512
|
-
CreationTime
|
|
4513
|
-
LastModifiedTime
|
|
4514
|
-
}
|
|
4717
|
+
export declare const SpaceSortKey: {
|
|
4718
|
+
readonly CreationTime: "CreationTime";
|
|
4719
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
4720
|
+
};
|
|
4721
|
+
/**
|
|
4722
|
+
* @public
|
|
4723
|
+
*/
|
|
4724
|
+
export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
|
|
4515
4725
|
/**
|
|
4516
4726
|
* @public
|
|
4517
4727
|
*/
|
|
@@ -4622,12 +4832,17 @@ export interface ListStageDevicesResponse {
|
|
|
4622
4832
|
}
|
|
4623
4833
|
/**
|
|
4624
4834
|
* @public
|
|
4835
|
+
* @enum
|
|
4625
4836
|
*/
|
|
4626
|
-
export declare
|
|
4627
|
-
CreationTime
|
|
4628
|
-
LastModifiedTime
|
|
4629
|
-
Name
|
|
4630
|
-
}
|
|
4837
|
+
export declare const StudioLifecycleConfigSortKey: {
|
|
4838
|
+
readonly CreationTime: "CreationTime";
|
|
4839
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
4840
|
+
readonly Name: "Name";
|
|
4841
|
+
};
|
|
4842
|
+
/**
|
|
4843
|
+
* @public
|
|
4844
|
+
*/
|
|
4845
|
+
export type StudioLifecycleConfigSortKey = (typeof StudioLifecycleConfigSortKey)[keyof typeof StudioLifecycleConfigSortKey];
|
|
4631
4846
|
/**
|
|
4632
4847
|
* @public
|
|
4633
4848
|
*/
|
|
@@ -4889,13 +5104,18 @@ export interface ListTrainingJobsResponse {
|
|
|
4889
5104
|
}
|
|
4890
5105
|
/**
|
|
4891
5106
|
* @public
|
|
5107
|
+
* @enum
|
|
4892
5108
|
*/
|
|
4893
|
-
export declare
|
|
4894
|
-
CreationTime
|
|
4895
|
-
FinalObjectiveMetricValue
|
|
4896
|
-
Name
|
|
4897
|
-
Status
|
|
4898
|
-
}
|
|
5109
|
+
export declare const TrainingJobSortByOptions: {
|
|
5110
|
+
readonly CreationTime: "CreationTime";
|
|
5111
|
+
readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
|
|
5112
|
+
readonly Name: "Name";
|
|
5113
|
+
readonly Status: "Status";
|
|
5114
|
+
};
|
|
5115
|
+
/**
|
|
5116
|
+
* @public
|
|
5117
|
+
*/
|
|
5118
|
+
export type TrainingJobSortByOptions = (typeof TrainingJobSortByOptions)[keyof typeof TrainingJobSortByOptions];
|
|
4899
5119
|
/**
|
|
4900
5120
|
* @public
|
|
4901
5121
|
*/
|
|
@@ -5058,11 +5278,16 @@ export interface ListTransformJobsResponse {
|
|
|
5058
5278
|
}
|
|
5059
5279
|
/**
|
|
5060
5280
|
* @public
|
|
5281
|
+
* @enum
|
|
5061
5282
|
*/
|
|
5062
|
-
export declare
|
|
5063
|
-
CREATION_TIME
|
|
5064
|
-
NAME
|
|
5065
|
-
}
|
|
5283
|
+
export declare const SortTrialComponentsBy: {
|
|
5284
|
+
readonly CREATION_TIME: "CreationTime";
|
|
5285
|
+
readonly NAME: "Name";
|
|
5286
|
+
};
|
|
5287
|
+
/**
|
|
5288
|
+
* @public
|
|
5289
|
+
*/
|
|
5290
|
+
export type SortTrialComponentsBy = (typeof SortTrialComponentsBy)[keyof typeof SortTrialComponentsBy];
|
|
5066
5291
|
/**
|
|
5067
5292
|
* @public
|
|
5068
5293
|
*/
|
|
@@ -5191,11 +5416,16 @@ export interface ListTrialComponentsResponse {
|
|
|
5191
5416
|
}
|
|
5192
5417
|
/**
|
|
5193
5418
|
* @public
|
|
5419
|
+
* @enum
|
|
5194
5420
|
*/
|
|
5195
|
-
export declare
|
|
5196
|
-
CREATION_TIME
|
|
5197
|
-
NAME
|
|
5198
|
-
}
|
|
5421
|
+
export declare const SortTrialsBy: {
|
|
5422
|
+
readonly CREATION_TIME: "CreationTime";
|
|
5423
|
+
readonly NAME: "Name";
|
|
5424
|
+
};
|
|
5425
|
+
/**
|
|
5426
|
+
* @public
|
|
5427
|
+
*/
|
|
5428
|
+
export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
|
|
5199
5429
|
/**
|
|
5200
5430
|
* @public
|
|
5201
5431
|
*/
|
|
@@ -5282,11 +5512,16 @@ export interface ListTrialsResponse {
|
|
|
5282
5512
|
}
|
|
5283
5513
|
/**
|
|
5284
5514
|
* @public
|
|
5515
|
+
* @enum
|
|
5285
5516
|
*/
|
|
5286
|
-
export declare
|
|
5287
|
-
CreationTime
|
|
5288
|
-
LastModifiedTime
|
|
5289
|
-
}
|
|
5517
|
+
export declare const UserProfileSortKey: {
|
|
5518
|
+
readonly CreationTime: "CreationTime";
|
|
5519
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
5520
|
+
};
|
|
5521
|
+
/**
|
|
5522
|
+
* @public
|
|
5523
|
+
*/
|
|
5524
|
+
export type UserProfileSortKey = (typeof UserProfileSortKey)[keyof typeof UserProfileSortKey];
|
|
5290
5525
|
/**
|
|
5291
5526
|
* @public
|
|
5292
5527
|
*/
|
|
@@ -5359,11 +5594,16 @@ export interface ListUserProfilesResponse {
|
|
|
5359
5594
|
}
|
|
5360
5595
|
/**
|
|
5361
5596
|
* @public
|
|
5597
|
+
* @enum
|
|
5362
5598
|
*/
|
|
5363
|
-
export declare
|
|
5364
|
-
CreateDate
|
|
5365
|
-
Name
|
|
5366
|
-
}
|
|
5599
|
+
export declare const ListWorkforcesSortByOptions: {
|
|
5600
|
+
readonly CreateDate: "CreateDate";
|
|
5601
|
+
readonly Name: "Name";
|
|
5602
|
+
};
|
|
5603
|
+
/**
|
|
5604
|
+
* @public
|
|
5605
|
+
*/
|
|
5606
|
+
export type ListWorkforcesSortByOptions = (typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
|
|
5367
5607
|
/**
|
|
5368
5608
|
* @public
|
|
5369
5609
|
*/
|
|
@@ -5404,11 +5644,16 @@ export interface ListWorkforcesResponse {
|
|
|
5404
5644
|
}
|
|
5405
5645
|
/**
|
|
5406
5646
|
* @public
|
|
5647
|
+
* @enum
|
|
5407
5648
|
*/
|
|
5408
|
-
export declare
|
|
5409
|
-
CreateDate
|
|
5410
|
-
Name
|
|
5411
|
-
}
|
|
5649
|
+
export declare const ListWorkteamsSortByOptions: {
|
|
5650
|
+
readonly CreateDate: "CreateDate";
|
|
5651
|
+
readonly Name: "Name";
|
|
5652
|
+
};
|
|
5653
|
+
/**
|
|
5654
|
+
* @public
|
|
5655
|
+
*/
|
|
5656
|
+
export type ListWorkteamsSortByOptions = (typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
|
|
5412
5657
|
/**
|
|
5413
5658
|
* @public
|
|
5414
5659
|
*/
|
|
@@ -6122,12 +6367,17 @@ export interface ModelPackageGroup {
|
|
|
6122
6367
|
}
|
|
6123
6368
|
/**
|
|
6124
6369
|
* @public
|
|
6370
|
+
* @enum
|
|
6125
6371
|
*/
|
|
6126
|
-
export declare
|
|
6127
|
-
PROMOTE
|
|
6128
|
-
REMOVE
|
|
6129
|
-
RETAIN
|
|
6130
|
-
}
|
|
6372
|
+
export declare const ModelVariantAction: {
|
|
6373
|
+
readonly PROMOTE: "Promote";
|
|
6374
|
+
readonly REMOVE: "Remove";
|
|
6375
|
+
readonly RETAIN: "Retain";
|
|
6376
|
+
};
|
|
6377
|
+
/**
|
|
6378
|
+
* @public
|
|
6379
|
+
*/
|
|
6380
|
+
export type ModelVariantAction = (typeof ModelVariantAction)[keyof typeof ModelVariantAction];
|
|
6131
6381
|
/**
|
|
6132
6382
|
* @public
|
|
6133
6383
|
* <p>A list of nested <a>Filter</a> objects. A resource must satisfy the conditions
|
|
@@ -6787,11 +7037,16 @@ export interface RetryPipelineExecutionResponse {
|
|
|
6787
7037
|
}
|
|
6788
7038
|
/**
|
|
6789
7039
|
* @public
|
|
7040
|
+
* @enum
|
|
6790
7041
|
*/
|
|
6791
|
-
export declare
|
|
6792
|
-
ASCENDING
|
|
6793
|
-
DESCENDING
|
|
6794
|
-
}
|
|
7042
|
+
export declare const SearchSortOrder: {
|
|
7043
|
+
readonly ASCENDING: "Ascending";
|
|
7044
|
+
readonly DESCENDING: "Descending";
|
|
7045
|
+
};
|
|
7046
|
+
/**
|
|
7047
|
+
* @public
|
|
7048
|
+
*/
|
|
7049
|
+
export type SearchSortOrder = (typeof SearchSortOrder)[keyof typeof SearchSortOrder];
|
|
6795
7050
|
/**
|
|
6796
7051
|
* @public
|
|
6797
7052
|
* <p>Contains information about a training job.</p>
|