@aws-sdk/client-cleanroomsml 3.934.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +401 -400
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +389 -0
- package/dist-es/models/errors.js +89 -0
- package/dist-es/models/models_0.js +1 -478
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +645 -0
- package/dist-types/models/errors.d.ts +96 -0
- package/dist-types/models/models_0.d.ts +1 -741
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +445 -0
- package/dist-types/ts3.4/models/errors.d.ts +51 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -496
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,31 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { CleanRoomsMLServiceException as __BaseException } from "./CleanRoomsMLServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* @public
|
|
5
|
-
* @enum
|
|
6
|
-
*/
|
|
7
|
-
export declare const AutoRefreshMode: {
|
|
8
|
-
readonly DISABLED: "DISABLED";
|
|
9
|
-
readonly ENABLED: "ENABLED";
|
|
10
|
-
};
|
|
11
|
-
/**
|
|
12
|
-
* @public
|
|
13
|
-
*/
|
|
14
|
-
export type AutoRefreshMode = (typeof AutoRefreshMode)[keyof typeof AutoRefreshMode];
|
|
15
|
-
/**
|
|
16
|
-
* @public
|
|
17
|
-
* @enum
|
|
18
|
-
*/
|
|
19
|
-
export declare const AccessBudgetType: {
|
|
20
|
-
readonly CALENDAR_DAY: "CALENDAR_DAY";
|
|
21
|
-
readonly CALENDAR_MONTH: "CALENDAR_MONTH";
|
|
22
|
-
readonly CALENDAR_WEEK: "CALENDAR_WEEK";
|
|
23
|
-
readonly LIFETIME: "LIFETIME";
|
|
24
|
-
};
|
|
25
|
-
/**
|
|
26
|
-
* @public
|
|
27
|
-
*/
|
|
28
|
-
export type AccessBudgetType = (typeof AccessBudgetType)[keyof typeof AccessBudgetType];
|
|
1
|
+
import { _InstanceType, AccessBudgetType, AudienceExportJobStatus, AudienceGenerationJobStatus, AudienceModelStatus, AudienceSizeType, AutoRefreshMode, ColumnType, ConfiguredAudienceModelStatus, DatasetType, EntityType, InferenceInstanceType, LogsStatus, LogType, MetricsStatus, MLInputChannelStatus, NoiseLevelType, PolicyExistenceCondition, ResultFormat, S3DataDistributionType, SharedAudienceMetrics, TagOnCreatePolicy, TrainedModelArtifactMaxSizeUnitType, TrainedModelExportFileType, TrainedModelExportJobStatus, TrainedModelExportsMaxSizeUnitType, TrainedModelInferenceJobStatus, TrainedModelInferenceMaxOutputSizeUnitType, TrainedModelStatus, TrainingDatasetStatus, TrainingInputMode, WorkerComputeType } from "./enums";
|
|
29
2
|
/**
|
|
30
3
|
* <p>The detailed information for a specific budget period, including time boundaries and budget amounts.</p>
|
|
31
4
|
* @public
|
|
@@ -83,18 +56,6 @@ export interface AccessBudget {
|
|
|
83
56
|
*/
|
|
84
57
|
aggregateRemainingBudget: number | undefined;
|
|
85
58
|
}
|
|
86
|
-
/**
|
|
87
|
-
* <p>You do not have sufficient access to perform this action.</p>
|
|
88
|
-
* @public
|
|
89
|
-
*/
|
|
90
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
91
|
-
readonly name: "AccessDeniedException";
|
|
92
|
-
readonly $fault: "client";
|
|
93
|
-
/**
|
|
94
|
-
* @internal
|
|
95
|
-
*/
|
|
96
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
97
|
-
}
|
|
98
59
|
/**
|
|
99
60
|
* <p>Provides information about an Amazon S3 bucket and path.</p>
|
|
100
61
|
* @public
|
|
@@ -137,18 +98,6 @@ export interface ListAudienceExportJobsRequest {
|
|
|
137
98
|
*/
|
|
138
99
|
audienceGenerationJobArn?: string | undefined;
|
|
139
100
|
}
|
|
140
|
-
/**
|
|
141
|
-
* @public
|
|
142
|
-
* @enum
|
|
143
|
-
*/
|
|
144
|
-
export declare const AudienceSizeType: {
|
|
145
|
-
readonly ABSOLUTE: "ABSOLUTE";
|
|
146
|
-
readonly PERCENTAGE: "PERCENTAGE";
|
|
147
|
-
};
|
|
148
|
-
/**
|
|
149
|
-
* @public
|
|
150
|
-
*/
|
|
151
|
-
export type AudienceSizeType = (typeof AudienceSizeType)[keyof typeof AudienceSizeType];
|
|
152
101
|
/**
|
|
153
102
|
* <p>The size of the generated audience. Must match one of the sizes in the configured audience model.</p>
|
|
154
103
|
* @public
|
|
@@ -165,20 +114,6 @@ export interface AudienceSize {
|
|
|
165
114
|
*/
|
|
166
115
|
value: number | undefined;
|
|
167
116
|
}
|
|
168
|
-
/**
|
|
169
|
-
* @public
|
|
170
|
-
* @enum
|
|
171
|
-
*/
|
|
172
|
-
export declare const AudienceExportJobStatus: {
|
|
173
|
-
readonly ACTIVE: "ACTIVE";
|
|
174
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
175
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
176
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
177
|
-
};
|
|
178
|
-
/**
|
|
179
|
-
* @public
|
|
180
|
-
*/
|
|
181
|
-
export type AudienceExportJobStatus = (typeof AudienceExportJobStatus)[keyof typeof AudienceExportJobStatus];
|
|
182
117
|
/**
|
|
183
118
|
* <p>Details about the status of a resource.</p>
|
|
184
119
|
* @public
|
|
@@ -261,64 +196,6 @@ export interface ListAudienceExportJobsResponse {
|
|
|
261
196
|
*/
|
|
262
197
|
audienceExportJobs: AudienceExportJobSummary[] | undefined;
|
|
263
198
|
}
|
|
264
|
-
/**
|
|
265
|
-
* <p>The request parameters for this request are incorrect.</p>
|
|
266
|
-
* @public
|
|
267
|
-
*/
|
|
268
|
-
export declare class ValidationException extends __BaseException {
|
|
269
|
-
readonly name: "ValidationException";
|
|
270
|
-
readonly $fault: "client";
|
|
271
|
-
/**
|
|
272
|
-
* @internal
|
|
273
|
-
*/
|
|
274
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
275
|
-
}
|
|
276
|
-
/**
|
|
277
|
-
* <p>You can't complete this action because another resource depends on this resource.</p>
|
|
278
|
-
* @public
|
|
279
|
-
*/
|
|
280
|
-
export declare class ConflictException extends __BaseException {
|
|
281
|
-
readonly name: "ConflictException";
|
|
282
|
-
readonly $fault: "client";
|
|
283
|
-
/**
|
|
284
|
-
* @internal
|
|
285
|
-
*/
|
|
286
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
287
|
-
}
|
|
288
|
-
/**
|
|
289
|
-
* <p>The resource you are requesting does not exist.</p>
|
|
290
|
-
* @public
|
|
291
|
-
*/
|
|
292
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
293
|
-
readonly name: "ResourceNotFoundException";
|
|
294
|
-
readonly $fault: "client";
|
|
295
|
-
/**
|
|
296
|
-
* @internal
|
|
297
|
-
*/
|
|
298
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
299
|
-
}
|
|
300
|
-
/**
|
|
301
|
-
* <p>You have exceeded your service quota.</p>
|
|
302
|
-
* @public
|
|
303
|
-
*/
|
|
304
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
305
|
-
readonly name: "ServiceQuotaExceededException";
|
|
306
|
-
readonly $fault: "client";
|
|
307
|
-
/**
|
|
308
|
-
* The name of the service quota limit that was exceeded
|
|
309
|
-
* @public
|
|
310
|
-
*/
|
|
311
|
-
quotaName?: string | undefined;
|
|
312
|
-
/**
|
|
313
|
-
* The current limit on the service quota that was exceeded
|
|
314
|
-
* @public
|
|
315
|
-
*/
|
|
316
|
-
quotaValue?: number | undefined;
|
|
317
|
-
/**
|
|
318
|
-
* @internal
|
|
319
|
-
*/
|
|
320
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
321
|
-
}
|
|
322
199
|
/**
|
|
323
200
|
* @public
|
|
324
201
|
*/
|
|
@@ -396,18 +273,6 @@ export interface AudienceQualityMetrics {
|
|
|
396
273
|
*/
|
|
397
274
|
recallMetric?: number | undefined;
|
|
398
275
|
}
|
|
399
|
-
/**
|
|
400
|
-
* @public
|
|
401
|
-
* @enum
|
|
402
|
-
*/
|
|
403
|
-
export declare const WorkerComputeType: {
|
|
404
|
-
readonly CR1X: "CR.1X";
|
|
405
|
-
readonly CR4X: "CR.4X";
|
|
406
|
-
};
|
|
407
|
-
/**
|
|
408
|
-
* @public
|
|
409
|
-
*/
|
|
410
|
-
export type WorkerComputeType = (typeof WorkerComputeType)[keyof typeof WorkerComputeType];
|
|
411
276
|
/**
|
|
412
277
|
* <p>Configuration information about the compute workers that perform the transform job.</p>
|
|
413
278
|
* @public
|
|
@@ -504,23 +369,6 @@ export interface AudienceGenerationJobDataSource {
|
|
|
504
369
|
*/
|
|
505
370
|
sqlComputeConfiguration?: ComputeConfiguration | undefined;
|
|
506
371
|
}
|
|
507
|
-
/**
|
|
508
|
-
* @public
|
|
509
|
-
* @enum
|
|
510
|
-
*/
|
|
511
|
-
export declare const AudienceGenerationJobStatus: {
|
|
512
|
-
readonly ACTIVE: "ACTIVE";
|
|
513
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
514
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
515
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
516
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
517
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
518
|
-
readonly DELETE_PENDING: "DELETE_PENDING";
|
|
519
|
-
};
|
|
520
|
-
/**
|
|
521
|
-
* @public
|
|
522
|
-
*/
|
|
523
|
-
export type AudienceGenerationJobStatus = (typeof AudienceGenerationJobStatus)[keyof typeof AudienceGenerationJobStatus];
|
|
524
372
|
/**
|
|
525
373
|
* @public
|
|
526
374
|
*/
|
|
@@ -742,18 +590,6 @@ export interface StartAudienceGenerationJobResponse {
|
|
|
742
590
|
*/
|
|
743
591
|
audienceGenerationJobArn: string | undefined;
|
|
744
592
|
}
|
|
745
|
-
/**
|
|
746
|
-
* <p>The request was denied due to request throttling.</p>
|
|
747
|
-
* @public
|
|
748
|
-
*/
|
|
749
|
-
export declare class ThrottlingException extends __BaseException {
|
|
750
|
-
readonly name: "ThrottlingException";
|
|
751
|
-
readonly $fault: "client";
|
|
752
|
-
/**
|
|
753
|
-
* @internal
|
|
754
|
-
*/
|
|
755
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
756
|
-
}
|
|
757
593
|
/**
|
|
758
594
|
* @public
|
|
759
595
|
*/
|
|
@@ -824,23 +660,6 @@ export interface GetAudienceModelRequest {
|
|
|
824
660
|
*/
|
|
825
661
|
audienceModelArn: string | undefined;
|
|
826
662
|
}
|
|
827
|
-
/**
|
|
828
|
-
* @public
|
|
829
|
-
* @enum
|
|
830
|
-
*/
|
|
831
|
-
export declare const AudienceModelStatus: {
|
|
832
|
-
readonly ACTIVE: "ACTIVE";
|
|
833
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
834
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
835
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
836
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
837
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
838
|
-
readonly DELETE_PENDING: "DELETE_PENDING";
|
|
839
|
-
};
|
|
840
|
-
/**
|
|
841
|
-
* @public
|
|
842
|
-
*/
|
|
843
|
-
export type AudienceModelStatus = (typeof AudienceModelStatus)[keyof typeof AudienceModelStatus];
|
|
844
663
|
/**
|
|
845
664
|
* @public
|
|
846
665
|
*/
|
|
@@ -993,18 +812,6 @@ export interface AudienceSizeConfig {
|
|
|
993
812
|
*/
|
|
994
813
|
audienceSizeBins: number[] | undefined;
|
|
995
814
|
}
|
|
996
|
-
/**
|
|
997
|
-
* @public
|
|
998
|
-
* @enum
|
|
999
|
-
*/
|
|
1000
|
-
export declare const TagOnCreatePolicy: {
|
|
1001
|
-
readonly FROM_PARENT_RESOURCE: "FROM_PARENT_RESOURCE";
|
|
1002
|
-
readonly NONE: "NONE";
|
|
1003
|
-
};
|
|
1004
|
-
/**
|
|
1005
|
-
* @public
|
|
1006
|
-
*/
|
|
1007
|
-
export type TagOnCreatePolicy = (typeof TagOnCreatePolicy)[keyof typeof TagOnCreatePolicy];
|
|
1008
815
|
/**
|
|
1009
816
|
* <p>Configuration information necessary for the configure audience model output.</p>
|
|
1010
817
|
* @public
|
|
@@ -1021,18 +828,6 @@ export interface ConfiguredAudienceModelOutputConfig {
|
|
|
1021
828
|
*/
|
|
1022
829
|
roleArn: string | undefined;
|
|
1023
830
|
}
|
|
1024
|
-
/**
|
|
1025
|
-
* @public
|
|
1026
|
-
* @enum
|
|
1027
|
-
*/
|
|
1028
|
-
export declare const SharedAudienceMetrics: {
|
|
1029
|
-
readonly ALL: "ALL";
|
|
1030
|
-
readonly NONE: "NONE";
|
|
1031
|
-
};
|
|
1032
|
-
/**
|
|
1033
|
-
* @public
|
|
1034
|
-
*/
|
|
1035
|
-
export type SharedAudienceMetrics = (typeof SharedAudienceMetrics)[keyof typeof SharedAudienceMetrics];
|
|
1036
831
|
/**
|
|
1037
832
|
* @public
|
|
1038
833
|
*/
|
|
@@ -1113,17 +908,6 @@ export interface GetConfiguredAudienceModelRequest {
|
|
|
1113
908
|
*/
|
|
1114
909
|
configuredAudienceModelArn: string | undefined;
|
|
1115
910
|
}
|
|
1116
|
-
/**
|
|
1117
|
-
* @public
|
|
1118
|
-
* @enum
|
|
1119
|
-
*/
|
|
1120
|
-
export declare const ConfiguredAudienceModelStatus: {
|
|
1121
|
-
readonly ACTIVE: "ACTIVE";
|
|
1122
|
-
};
|
|
1123
|
-
/**
|
|
1124
|
-
* @public
|
|
1125
|
-
*/
|
|
1126
|
-
export type ConfiguredAudienceModelStatus = (typeof ConfiguredAudienceModelStatus)[keyof typeof ConfiguredAudienceModelStatus];
|
|
1127
911
|
/**
|
|
1128
912
|
* @public
|
|
1129
913
|
*/
|
|
@@ -1360,18 +1144,6 @@ export interface GetConfiguredAudienceModelPolicyResponse {
|
|
|
1360
1144
|
*/
|
|
1361
1145
|
policyHash: string | undefined;
|
|
1362
1146
|
}
|
|
1363
|
-
/**
|
|
1364
|
-
* @public
|
|
1365
|
-
* @enum
|
|
1366
|
-
*/
|
|
1367
|
-
export declare const PolicyExistenceCondition: {
|
|
1368
|
-
readonly POLICY_MUST_EXIST: "POLICY_MUST_EXIST";
|
|
1369
|
-
readonly POLICY_MUST_NOT_EXIST: "POLICY_MUST_NOT_EXIST";
|
|
1370
|
-
};
|
|
1371
|
-
/**
|
|
1372
|
-
* @public
|
|
1373
|
-
*/
|
|
1374
|
-
export type PolicyExistenceCondition = (typeof PolicyExistenceCondition)[keyof typeof PolicyExistenceCondition];
|
|
1375
1147
|
/**
|
|
1376
1148
|
* @public
|
|
1377
1149
|
*/
|
|
@@ -1651,29 +1423,6 @@ export interface ListConfiguredModelAlgorithmsResponse {
|
|
|
1651
1423
|
*/
|
|
1652
1424
|
configuredModelAlgorithms: ConfiguredModelAlgorithmSummary[] | undefined;
|
|
1653
1425
|
}
|
|
1654
|
-
/**
|
|
1655
|
-
* @public
|
|
1656
|
-
* @enum
|
|
1657
|
-
*/
|
|
1658
|
-
export declare const TrainedModelExportFileType: {
|
|
1659
|
-
readonly MODEL: "MODEL";
|
|
1660
|
-
readonly OUTPUT: "OUTPUT";
|
|
1661
|
-
};
|
|
1662
|
-
/**
|
|
1663
|
-
* @public
|
|
1664
|
-
*/
|
|
1665
|
-
export type TrainedModelExportFileType = (typeof TrainedModelExportFileType)[keyof typeof TrainedModelExportFileType];
|
|
1666
|
-
/**
|
|
1667
|
-
* @public
|
|
1668
|
-
* @enum
|
|
1669
|
-
*/
|
|
1670
|
-
export declare const TrainedModelExportsMaxSizeUnitType: {
|
|
1671
|
-
readonly GB: "GB";
|
|
1672
|
-
};
|
|
1673
|
-
/**
|
|
1674
|
-
* @public
|
|
1675
|
-
*/
|
|
1676
|
-
export type TrainedModelExportsMaxSizeUnitType = (typeof TrainedModelExportsMaxSizeUnitType)[keyof typeof TrainedModelExportsMaxSizeUnitType];
|
|
1677
1426
|
/**
|
|
1678
1427
|
* <p>The maximum size of the trained model metrics that can be exported. If the trained model metrics dataset is larger than this value, it will not be exported.</p>
|
|
1679
1428
|
* @public
|
|
@@ -1717,19 +1466,6 @@ export interface CustomEntityConfig {
|
|
|
1717
1466
|
*/
|
|
1718
1467
|
customDataIdentifiers: string[] | undefined;
|
|
1719
1468
|
}
|
|
1720
|
-
/**
|
|
1721
|
-
* @public
|
|
1722
|
-
* @enum
|
|
1723
|
-
*/
|
|
1724
|
-
export declare const EntityType: {
|
|
1725
|
-
readonly ALL_PERSONALLY_IDENTIFIABLE_INFORMATION: "ALL_PERSONALLY_IDENTIFIABLE_INFORMATION";
|
|
1726
|
-
readonly CUSTOM: "CUSTOM";
|
|
1727
|
-
readonly NUMBERS: "NUMBERS";
|
|
1728
|
-
};
|
|
1729
|
-
/**
|
|
1730
|
-
* @public
|
|
1731
|
-
*/
|
|
1732
|
-
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
1733
1469
|
/**
|
|
1734
1470
|
* <p>The configuration for log redaction.</p>
|
|
1735
1471
|
* @public
|
|
@@ -1746,18 +1482,6 @@ export interface LogRedactionConfiguration {
|
|
|
1746
1482
|
*/
|
|
1747
1483
|
customEntityConfig?: CustomEntityConfig | undefined;
|
|
1748
1484
|
}
|
|
1749
|
-
/**
|
|
1750
|
-
* @public
|
|
1751
|
-
* @enum
|
|
1752
|
-
*/
|
|
1753
|
-
export declare const LogType: {
|
|
1754
|
-
readonly ALL: "ALL";
|
|
1755
|
-
readonly ERROR_SUMMARY: "ERROR_SUMMARY";
|
|
1756
|
-
};
|
|
1757
|
-
/**
|
|
1758
|
-
* @public
|
|
1759
|
-
*/
|
|
1760
|
-
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
1761
1485
|
/**
|
|
1762
1486
|
* <p>Provides the information necessary for a user to access the logs.</p>
|
|
1763
1487
|
* @public
|
|
@@ -1784,17 +1508,6 @@ export interface LogsConfigurationPolicy {
|
|
|
1784
1508
|
*/
|
|
1785
1509
|
logRedactionConfiguration?: LogRedactionConfiguration | undefined;
|
|
1786
1510
|
}
|
|
1787
|
-
/**
|
|
1788
|
-
* @public
|
|
1789
|
-
* @enum
|
|
1790
|
-
*/
|
|
1791
|
-
export declare const TrainedModelInferenceMaxOutputSizeUnitType: {
|
|
1792
|
-
readonly GB: "GB";
|
|
1793
|
-
};
|
|
1794
|
-
/**
|
|
1795
|
-
* @public
|
|
1796
|
-
*/
|
|
1797
|
-
export type TrainedModelInferenceMaxOutputSizeUnitType = (typeof TrainedModelInferenceMaxOutputSizeUnitType)[keyof typeof TrainedModelInferenceMaxOutputSizeUnitType];
|
|
1798
1511
|
/**
|
|
1799
1512
|
* <p>Information about the maximum output size for a trained model inference job.</p>
|
|
1800
1513
|
* @public
|
|
@@ -1827,20 +1540,6 @@ export interface TrainedModelInferenceJobsConfigurationPolicy {
|
|
|
1827
1540
|
*/
|
|
1828
1541
|
maxOutputSize?: TrainedModelInferenceMaxOutputSize | undefined;
|
|
1829
1542
|
}
|
|
1830
|
-
/**
|
|
1831
|
-
* @public
|
|
1832
|
-
* @enum
|
|
1833
|
-
*/
|
|
1834
|
-
export declare const NoiseLevelType: {
|
|
1835
|
-
readonly HIGH: "HIGH";
|
|
1836
|
-
readonly LOW: "LOW";
|
|
1837
|
-
readonly MEDIUM: "MEDIUM";
|
|
1838
|
-
readonly NONE: "NONE";
|
|
1839
|
-
};
|
|
1840
|
-
/**
|
|
1841
|
-
* @public
|
|
1842
|
-
*/
|
|
1843
|
-
export type NoiseLevelType = (typeof NoiseLevelType)[keyof typeof NoiseLevelType];
|
|
1844
1543
|
/**
|
|
1845
1544
|
* <p>Provides the configuration policy for metrics generation.</p>
|
|
1846
1545
|
* @public
|
|
@@ -1852,17 +1551,6 @@ export interface MetricsConfigurationPolicy {
|
|
|
1852
1551
|
*/
|
|
1853
1552
|
noiseLevel: NoiseLevelType | undefined;
|
|
1854
1553
|
}
|
|
1855
|
-
/**
|
|
1856
|
-
* @public
|
|
1857
|
-
* @enum
|
|
1858
|
-
*/
|
|
1859
|
-
export declare const TrainedModelArtifactMaxSizeUnitType: {
|
|
1860
|
-
readonly GB: "GB";
|
|
1861
|
-
};
|
|
1862
|
-
/**
|
|
1863
|
-
* @public
|
|
1864
|
-
*/
|
|
1865
|
-
export type TrainedModelArtifactMaxSizeUnitType = (typeof TrainedModelArtifactMaxSizeUnitType)[keyof typeof TrainedModelArtifactMaxSizeUnitType];
|
|
1866
1554
|
/**
|
|
1867
1555
|
* <p>Specifies the maximum size limit for trained model artifacts. This configuration helps control storage costs and ensures that trained models don't exceed specified size constraints. The size limit applies to the total size of all artifacts produced by the training job.</p>
|
|
1868
1556
|
* @public
|
|
@@ -2319,24 +2007,6 @@ export interface ListCollaborationMLInputChannelsRequest {
|
|
|
2319
2007
|
*/
|
|
2320
2008
|
collaborationIdentifier: string | undefined;
|
|
2321
2009
|
}
|
|
2322
|
-
/**
|
|
2323
|
-
* @public
|
|
2324
|
-
* @enum
|
|
2325
|
-
*/
|
|
2326
|
-
export declare const MLInputChannelStatus: {
|
|
2327
|
-
readonly ACTIVE: "ACTIVE";
|
|
2328
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
2329
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
2330
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
2331
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
2332
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
2333
|
-
readonly DELETE_PENDING: "DELETE_PENDING";
|
|
2334
|
-
readonly INACTIVE: "INACTIVE";
|
|
2335
|
-
};
|
|
2336
|
-
/**
|
|
2337
|
-
* @public
|
|
2338
|
-
*/
|
|
2339
|
-
export type MLInputChannelStatus = (typeof MLInputChannelStatus)[keyof typeof MLInputChannelStatus];
|
|
2340
2010
|
/**
|
|
2341
2011
|
* <p>Provides summary information about an ML input channel in a collaboration.</p>
|
|
2342
2012
|
* @public
|
|
@@ -2460,20 +2130,6 @@ export interface TrainedModelExportOutputConfiguration {
|
|
|
2460
2130
|
*/
|
|
2461
2131
|
members: TrainedModelExportReceiverMember[] | undefined;
|
|
2462
2132
|
}
|
|
2463
|
-
/**
|
|
2464
|
-
* @public
|
|
2465
|
-
* @enum
|
|
2466
|
-
*/
|
|
2467
|
-
export declare const TrainedModelExportJobStatus: {
|
|
2468
|
-
readonly ACTIVE: "ACTIVE";
|
|
2469
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
2470
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
2471
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
2472
|
-
};
|
|
2473
|
-
/**
|
|
2474
|
-
* @public
|
|
2475
|
-
*/
|
|
2476
|
-
export type TrainedModelExportJobStatus = (typeof TrainedModelExportJobStatus)[keyof typeof TrainedModelExportJobStatus];
|
|
2477
2133
|
/**
|
|
2478
2134
|
* <p>Provides summary information about a trained model export job in a collaboration.</p>
|
|
2479
2135
|
* @public
|
|
@@ -2585,30 +2241,6 @@ export interface ListCollaborationTrainedModelInferenceJobsRequest {
|
|
|
2585
2241
|
*/
|
|
2586
2242
|
trainedModelVersionIdentifier?: string | undefined;
|
|
2587
2243
|
}
|
|
2588
|
-
/**
|
|
2589
|
-
* @public
|
|
2590
|
-
* @enum
|
|
2591
|
-
*/
|
|
2592
|
-
export declare const LogsStatus: {
|
|
2593
|
-
readonly PUBLISH_FAILED: "PUBLISH_FAILED";
|
|
2594
|
-
readonly PUBLISH_SUCCEEDED: "PUBLISH_SUCCEEDED";
|
|
2595
|
-
};
|
|
2596
|
-
/**
|
|
2597
|
-
* @public
|
|
2598
|
-
*/
|
|
2599
|
-
export type LogsStatus = (typeof LogsStatus)[keyof typeof LogsStatus];
|
|
2600
|
-
/**
|
|
2601
|
-
* @public
|
|
2602
|
-
* @enum
|
|
2603
|
-
*/
|
|
2604
|
-
export declare const MetricsStatus: {
|
|
2605
|
-
readonly PUBLISH_FAILED: "PUBLISH_FAILED";
|
|
2606
|
-
readonly PUBLISH_SUCCEEDED: "PUBLISH_SUCCEEDED";
|
|
2607
|
-
};
|
|
2608
|
-
/**
|
|
2609
|
-
* @public
|
|
2610
|
-
*/
|
|
2611
|
-
export type MetricsStatus = (typeof MetricsStatus)[keyof typeof MetricsStatus];
|
|
2612
2244
|
/**
|
|
2613
2245
|
* <p>Defines who will receive inference results.</p>
|
|
2614
2246
|
* @public
|
|
@@ -2636,24 +2268,6 @@ export interface InferenceOutputConfiguration {
|
|
|
2636
2268
|
*/
|
|
2637
2269
|
members: InferenceReceiverMember[] | undefined;
|
|
2638
2270
|
}
|
|
2639
|
-
/**
|
|
2640
|
-
* @public
|
|
2641
|
-
* @enum
|
|
2642
|
-
*/
|
|
2643
|
-
export declare const TrainedModelInferenceJobStatus: {
|
|
2644
|
-
readonly ACTIVE: "ACTIVE";
|
|
2645
|
-
readonly CANCEL_FAILED: "CANCEL_FAILED";
|
|
2646
|
-
readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
|
|
2647
|
-
readonly CANCEL_PENDING: "CANCEL_PENDING";
|
|
2648
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
2649
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
2650
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
2651
|
-
readonly INACTIVE: "INACTIVE";
|
|
2652
|
-
};
|
|
2653
|
-
/**
|
|
2654
|
-
* @public
|
|
2655
|
-
*/
|
|
2656
|
-
export type TrainedModelInferenceJobStatus = (typeof TrainedModelInferenceJobStatus)[keyof typeof TrainedModelInferenceJobStatus];
|
|
2657
2271
|
/**
|
|
2658
2272
|
* <p>Provides summary information about a trained model inference job in a collaboration.</p>
|
|
2659
2273
|
* @public
|
|
@@ -2801,27 +2415,6 @@ export interface IncrementalTrainingDataChannelOutput {
|
|
|
2801
2415
|
*/
|
|
2802
2416
|
modelName: string | undefined;
|
|
2803
2417
|
}
|
|
2804
|
-
/**
|
|
2805
|
-
* @public
|
|
2806
|
-
* @enum
|
|
2807
|
-
*/
|
|
2808
|
-
export declare const TrainedModelStatus: {
|
|
2809
|
-
readonly ACTIVE: "ACTIVE";
|
|
2810
|
-
readonly CANCEL_FAILED: "CANCEL_FAILED";
|
|
2811
|
-
readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
|
|
2812
|
-
readonly CANCEL_PENDING: "CANCEL_PENDING";
|
|
2813
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
2814
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
2815
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
2816
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
2817
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
2818
|
-
readonly DELETE_PENDING: "DELETE_PENDING";
|
|
2819
|
-
readonly INACTIVE: "INACTIVE";
|
|
2820
|
-
};
|
|
2821
|
-
/**
|
|
2822
|
-
* @public
|
|
2823
|
-
*/
|
|
2824
|
-
export type TrainedModelStatus = (typeof TrainedModelStatus)[keyof typeof TrainedModelStatus];
|
|
2825
2418
|
/**
|
|
2826
2419
|
* <p>Provides summary information about a trained model in a collaboration.</p>
|
|
2827
2420
|
* @public
|
|
@@ -3010,18 +2603,6 @@ export interface PutMLConfigurationRequest {
|
|
|
3010
2603
|
*/
|
|
3011
2604
|
defaultOutputLocation: MLOutputConfiguration | undefined;
|
|
3012
2605
|
}
|
|
3013
|
-
/**
|
|
3014
|
-
* @public
|
|
3015
|
-
* @enum
|
|
3016
|
-
*/
|
|
3017
|
-
export declare const ResultFormat: {
|
|
3018
|
-
readonly CSV: "CSV";
|
|
3019
|
-
readonly PARQUET: "PARQUET";
|
|
3020
|
-
};
|
|
3021
|
-
/**
|
|
3022
|
-
* @public
|
|
3023
|
-
*/
|
|
3024
|
-
export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
|
|
3025
2606
|
/**
|
|
3026
2607
|
* <p>Provides information necessary to perform the protected query.</p>
|
|
3027
2608
|
* @public
|
|
@@ -3531,18 +3112,6 @@ export interface CancelTrainedModelRequest {
|
|
|
3531
3112
|
*/
|
|
3532
3113
|
versionIdentifier?: string | undefined;
|
|
3533
3114
|
}
|
|
3534
|
-
/**
|
|
3535
|
-
* @public
|
|
3536
|
-
* @enum
|
|
3537
|
-
*/
|
|
3538
|
-
export declare const S3DataDistributionType: {
|
|
3539
|
-
readonly FULLY_REPLICATED: "FullyReplicated";
|
|
3540
|
-
readonly SHARDED_BY_S3_KEY: "ShardedByS3Key";
|
|
3541
|
-
};
|
|
3542
|
-
/**
|
|
3543
|
-
* @public
|
|
3544
|
-
*/
|
|
3545
|
-
export type S3DataDistributionType = (typeof S3DataDistributionType)[keyof typeof S3DataDistributionType];
|
|
3546
3115
|
/**
|
|
3547
3116
|
* <p>Information about the model training data channel. A training data channel is a named data source that the training algorithms can consume. </p>
|
|
3548
3117
|
* @public
|
|
@@ -3585,149 +3154,6 @@ export interface IncrementalTrainingDataChannel {
|
|
|
3585
3154
|
*/
|
|
3586
3155
|
channelName: string | undefined;
|
|
3587
3156
|
}
|
|
3588
|
-
/**
|
|
3589
|
-
* @public
|
|
3590
|
-
* @enum
|
|
3591
|
-
*/
|
|
3592
|
-
export declare const _InstanceType: {
|
|
3593
|
-
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
3594
|
-
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
3595
|
-
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
3596
|
-
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
3597
|
-
readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
|
|
3598
|
-
readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
|
|
3599
|
-
readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
|
|
3600
|
-
readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
|
|
3601
|
-
readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
|
|
3602
|
-
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
3603
|
-
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
3604
|
-
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
3605
|
-
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
3606
|
-
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
3607
|
-
readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
|
|
3608
|
-
readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
|
|
3609
|
-
readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
|
|
3610
|
-
readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
|
|
3611
|
-
readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
|
|
3612
|
-
readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
|
|
3613
|
-
readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
|
|
3614
|
-
readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
|
|
3615
|
-
readonly ML_C7I_12XLARGE: "ml.c7i.12xlarge";
|
|
3616
|
-
readonly ML_C7I_16XLARGE: "ml.c7i.16xlarge";
|
|
3617
|
-
readonly ML_C7I_24XLARGE: "ml.c7i.24xlarge";
|
|
3618
|
-
readonly ML_C7I_2XLARGE: "ml.c7i.2xlarge";
|
|
3619
|
-
readonly ML_C7I_48XLARGE: "ml.c7i.48xlarge";
|
|
3620
|
-
readonly ML_C7I_4XLARGE: "ml.c7i.4xlarge";
|
|
3621
|
-
readonly ML_C7I_8XLARGE: "ml.c7i.8xlarge";
|
|
3622
|
-
readonly ML_C7I_LARGE: "ml.c7i.large";
|
|
3623
|
-
readonly ML_C7I_XLARGE: "ml.c7i.xlarge";
|
|
3624
|
-
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
3625
|
-
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
3626
|
-
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
3627
|
-
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
3628
|
-
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
3629
|
-
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
3630
|
-
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
3631
|
-
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
3632
|
-
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
3633
|
-
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
3634
|
-
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
3635
|
-
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
3636
|
-
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
3637
|
-
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
3638
|
-
readonly ML_G6E_12XLARGE: "ml.g6e.12xlarge";
|
|
3639
|
-
readonly ML_G6E_16XLARGE: "ml.g6e.16xlarge";
|
|
3640
|
-
readonly ML_G6E_24XLARGE: "ml.g6e.24xlarge";
|
|
3641
|
-
readonly ML_G6E_2XLARGE: "ml.g6e.2xlarge";
|
|
3642
|
-
readonly ML_G6E_48XLARGE: "ml.g6e.48xlarge";
|
|
3643
|
-
readonly ML_G6E_4XLARGE: "ml.g6e.4xlarge";
|
|
3644
|
-
readonly ML_G6E_8XLARGE: "ml.g6e.8xlarge";
|
|
3645
|
-
readonly ML_G6E_XLARGE: "ml.g6e.xlarge";
|
|
3646
|
-
readonly ML_G6_12XLARGE: "ml.g6.12xlarge";
|
|
3647
|
-
readonly ML_G6_16XLARGE: "ml.g6.16xlarge";
|
|
3648
|
-
readonly ML_G6_24XLARGE: "ml.g6.24xlarge";
|
|
3649
|
-
readonly ML_G6_2XLARGE: "ml.g6.2xlarge";
|
|
3650
|
-
readonly ML_G6_48XLARGE: "ml.g6.48xlarge";
|
|
3651
|
-
readonly ML_G6_4XLARGE: "ml.g6.4xlarge";
|
|
3652
|
-
readonly ML_G6_8XLARGE: "ml.g6.8xlarge";
|
|
3653
|
-
readonly ML_G6_XLARGE: "ml.g6.xlarge";
|
|
3654
|
-
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
3655
|
-
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
3656
|
-
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
3657
|
-
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
3658
|
-
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
3659
|
-
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
3660
|
-
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
3661
|
-
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
3662
|
-
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
3663
|
-
readonly ML_M5_LARGE: "ml.m5.large";
|
|
3664
|
-
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
3665
|
-
readonly ML_M6I_12XLARGE: "ml.m6i.12xlarge";
|
|
3666
|
-
readonly ML_M6I_16XLARGE: "ml.m6i.16xlarge";
|
|
3667
|
-
readonly ML_M6I_24XLARGE: "ml.m6i.24xlarge";
|
|
3668
|
-
readonly ML_M6I_2XLARGE: "ml.m6i.2xlarge";
|
|
3669
|
-
readonly ML_M6I_32XLARGE: "ml.m6i.32xlarge";
|
|
3670
|
-
readonly ML_M6I_4XLARGE: "ml.m6i.4xlarge";
|
|
3671
|
-
readonly ML_M6I_8XLARGE: "ml.m6i.8xlarge";
|
|
3672
|
-
readonly ML_M6I_LARGE: "ml.m6i.large";
|
|
3673
|
-
readonly ML_M6I_XLARGE: "ml.m6i.xlarge";
|
|
3674
|
-
readonly ML_M7I_12XLARGE: "ml.m7i.12xlarge";
|
|
3675
|
-
readonly ML_M7I_16XLARGE: "ml.m7i.16xlarge";
|
|
3676
|
-
readonly ML_M7I_24XLARGE: "ml.m7i.24xlarge";
|
|
3677
|
-
readonly ML_M7I_2XLARGE: "ml.m7i.2xlarge";
|
|
3678
|
-
readonly ML_M7I_48XLARGE: "ml.m7i.48xlarge";
|
|
3679
|
-
readonly ML_M7I_4XLARGE: "ml.m7i.4xlarge";
|
|
3680
|
-
readonly ML_M7I_8XLARGE: "ml.m7i.8xlarge";
|
|
3681
|
-
readonly ML_M7I_LARGE: "ml.m7i.large";
|
|
3682
|
-
readonly ML_M7I_XLARGE: "ml.m7i.xlarge";
|
|
3683
|
-
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
3684
|
-
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
3685
|
-
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
3686
|
-
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
3687
|
-
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
3688
|
-
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
3689
|
-
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
3690
|
-
readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
|
|
3691
|
-
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
3692
|
-
readonly ML_P5EN_48XLARGE: "ml.p5en.48xlarge";
|
|
3693
|
-
readonly ML_P5_48XLARGE: "ml.p5.48xlarge";
|
|
3694
|
-
readonly ML_R5D_12XLARGE: "ml.r5d.12xlarge";
|
|
3695
|
-
readonly ML_R5D_16XLARGE: "ml.r5d.16xlarge";
|
|
3696
|
-
readonly ML_R5D_24XLARGE: "ml.r5d.24xlarge";
|
|
3697
|
-
readonly ML_R5D_2XLARGE: "ml.r5d.2xlarge";
|
|
3698
|
-
readonly ML_R5D_4XLARGE: "ml.r5d.4xlarge";
|
|
3699
|
-
readonly ML_R5D_8XLARGE: "ml.r5d.8xlarge";
|
|
3700
|
-
readonly ML_R5D_LARGE: "ml.r5d.large";
|
|
3701
|
-
readonly ML_R5D_XLARGE: "ml.r5d.xlarge";
|
|
3702
|
-
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
3703
|
-
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
3704
|
-
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
3705
|
-
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
3706
|
-
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
3707
|
-
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
3708
|
-
readonly ML_R5_LARGE: "ml.r5.large";
|
|
3709
|
-
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
3710
|
-
readonly ML_R7I_12XLARGE: "ml.r7i.12xlarge";
|
|
3711
|
-
readonly ML_R7I_16XLARGE: "ml.r7i.16xlarge";
|
|
3712
|
-
readonly ML_R7I_24XLARGE: "ml.r7i.24xlarge";
|
|
3713
|
-
readonly ML_R7I_2XLARGE: "ml.r7i.2xlarge";
|
|
3714
|
-
readonly ML_R7I_48XLARGE: "ml.r7i.48xlarge";
|
|
3715
|
-
readonly ML_R7I_4XLARGE: "ml.r7i.4xlarge";
|
|
3716
|
-
readonly ML_R7I_8XLARGE: "ml.r7i.8xlarge";
|
|
3717
|
-
readonly ML_R7I_LARGE: "ml.r7i.large";
|
|
3718
|
-
readonly ML_R7I_XLARGE: "ml.r7i.xlarge";
|
|
3719
|
-
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
3720
|
-
readonly ML_T3_LARGE: "ml.t3.large";
|
|
3721
|
-
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
3722
|
-
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
3723
|
-
readonly ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge";
|
|
3724
|
-
readonly ML_TRN1_2XLARGE: "ml.trn1.2xlarge";
|
|
3725
|
-
readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
|
|
3726
|
-
};
|
|
3727
|
-
/**
|
|
3728
|
-
* @public
|
|
3729
|
-
*/
|
|
3730
|
-
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
3731
3157
|
/**
|
|
3732
3158
|
* <p>Information about the EC2 resources that are used to train the model.</p>
|
|
3733
3159
|
* @public
|
|
@@ -3760,19 +3186,6 @@ export interface StoppingCondition {
|
|
|
3760
3186
|
*/
|
|
3761
3187
|
maxRuntimeInSeconds?: number | undefined;
|
|
3762
3188
|
}
|
|
3763
|
-
/**
|
|
3764
|
-
* @public
|
|
3765
|
-
* @enum
|
|
3766
|
-
*/
|
|
3767
|
-
export declare const TrainingInputMode: {
|
|
3768
|
-
readonly FAST_FILE: "FastFile";
|
|
3769
|
-
readonly FILE: "File";
|
|
3770
|
-
readonly PIPE: "Pipe";
|
|
3771
|
-
};
|
|
3772
|
-
/**
|
|
3773
|
-
* @public
|
|
3774
|
-
*/
|
|
3775
|
-
export type TrainingInputMode = (typeof TrainingInputMode)[keyof typeof TrainingInputMode];
|
|
3776
3189
|
/**
|
|
3777
3190
|
* @public
|
|
3778
3191
|
*/
|
|
@@ -3858,18 +3271,6 @@ export interface CreateTrainedModelResponse {
|
|
|
3858
3271
|
*/
|
|
3859
3272
|
versionIdentifier?: string | undefined;
|
|
3860
3273
|
}
|
|
3861
|
-
/**
|
|
3862
|
-
* <p>An internal service error occurred. Retry your request. If the problem persists, contact AWS Support.</p>
|
|
3863
|
-
* @public
|
|
3864
|
-
*/
|
|
3865
|
-
export declare class InternalServiceException extends __BaseException {
|
|
3866
|
-
readonly name: "InternalServiceException";
|
|
3867
|
-
readonly $fault: "server";
|
|
3868
|
-
/**
|
|
3869
|
-
* @internal
|
|
3870
|
-
*/
|
|
3871
|
-
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
3872
|
-
}
|
|
3873
3274
|
/**
|
|
3874
3275
|
* @public
|
|
3875
3276
|
*/
|
|
@@ -4398,110 +3799,6 @@ export interface ModelInferenceDataSource {
|
|
|
4398
3799
|
*/
|
|
4399
3800
|
mlInputChannelArn: string | undefined;
|
|
4400
3801
|
}
|
|
4401
|
-
/**
|
|
4402
|
-
* @public
|
|
4403
|
-
* @enum
|
|
4404
|
-
*/
|
|
4405
|
-
export declare const InferenceInstanceType: {
|
|
4406
|
-
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
4407
|
-
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
4408
|
-
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
4409
|
-
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
4410
|
-
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
4411
|
-
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
4412
|
-
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
4413
|
-
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
4414
|
-
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
4415
|
-
readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
|
|
4416
|
-
readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
|
|
4417
|
-
readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
|
|
4418
|
-
readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
|
|
4419
|
-
readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
|
|
4420
|
-
readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
|
|
4421
|
-
readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
|
|
4422
|
-
readonly ML_C6I_LARGE: "ml.c6i.large";
|
|
4423
|
-
readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
|
|
4424
|
-
readonly ML_C7I_12XLARGE: "ml.c7i.12xlarge";
|
|
4425
|
-
readonly ML_C7I_16XLARGE: "ml.c7i.16xlarge";
|
|
4426
|
-
readonly ML_C7I_24XLARGE: "ml.c7i.24xlarge";
|
|
4427
|
-
readonly ML_C7I_2XLARGE: "ml.c7i.2xlarge";
|
|
4428
|
-
readonly ML_C7I_48XLARGE: "ml.c7i.48xlarge";
|
|
4429
|
-
readonly ML_C7I_4XLARGE: "ml.c7i.4xlarge";
|
|
4430
|
-
readonly ML_C7I_8XLARGE: "ml.c7i.8xlarge";
|
|
4431
|
-
readonly ML_C7I_LARGE: "ml.c7i.large";
|
|
4432
|
-
readonly ML_C7I_XLARGE: "ml.c7i.xlarge";
|
|
4433
|
-
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
4434
|
-
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
4435
|
-
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
4436
|
-
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
4437
|
-
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
4438
|
-
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
4439
|
-
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
4440
|
-
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
4441
|
-
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
4442
|
-
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
4443
|
-
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
4444
|
-
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
4445
|
-
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
4446
|
-
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
4447
|
-
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
4448
|
-
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
4449
|
-
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
4450
|
-
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
4451
|
-
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
4452
|
-
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
4453
|
-
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
4454
|
-
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
4455
|
-
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
4456
|
-
readonly ML_M5_LARGE: "ml.m5.large";
|
|
4457
|
-
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
4458
|
-
readonly ML_M6I_12XLARGE: "ml.m6i.12xlarge";
|
|
4459
|
-
readonly ML_M6I_16XLARGE: "ml.m6i.16xlarge";
|
|
4460
|
-
readonly ML_M6I_24XLARGE: "ml.m6i.24xlarge";
|
|
4461
|
-
readonly ML_M6I_2XLARGE: "ml.m6i.2xlarge";
|
|
4462
|
-
readonly ML_M6I_32XLARGE: "ml.m6i.32xlarge";
|
|
4463
|
-
readonly ML_M6I_4XLARGE: "ml.m6i.4xlarge";
|
|
4464
|
-
readonly ML_M6I_8XLARGE: "ml.m6i.8xlarge";
|
|
4465
|
-
readonly ML_M6I_LARGE: "ml.m6i.large";
|
|
4466
|
-
readonly ML_M6I_XLARGE: "ml.m6i.xlarge";
|
|
4467
|
-
readonly ML_M7I_12XLARGE: "ml.m7i.12xlarge";
|
|
4468
|
-
readonly ML_M7I_16XLARGE: "ml.m7i.16xlarge";
|
|
4469
|
-
readonly ML_M7I_24XLARGE: "ml.m7i.24xlarge";
|
|
4470
|
-
readonly ML_M7I_2XLARGE: "ml.m7i.2xlarge";
|
|
4471
|
-
readonly ML_M7I_48XLARGE: "ml.m7i.48xlarge";
|
|
4472
|
-
readonly ML_M7I_4XLARGE: "ml.m7i.4xlarge";
|
|
4473
|
-
readonly ML_M7I_8XLARGE: "ml.m7i.8xlarge";
|
|
4474
|
-
readonly ML_M7I_LARGE: "ml.m7i.large";
|
|
4475
|
-
readonly ML_M7I_XLARGE: "ml.m7i.xlarge";
|
|
4476
|
-
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
4477
|
-
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
4478
|
-
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
4479
|
-
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
4480
|
-
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
4481
|
-
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
4482
|
-
readonly ML_R6I_12XLARGE: "ml.r6i.12xlarge";
|
|
4483
|
-
readonly ML_R6I_16XLARGE: "ml.r6i.16xlarge";
|
|
4484
|
-
readonly ML_R6I_24XLARGE: "ml.r6i.24xlarge";
|
|
4485
|
-
readonly ML_R6I_2XLARGE: "ml.r6i.2xlarge";
|
|
4486
|
-
readonly ML_R6I_32XLARGE: "ml.r6i.32xlarge";
|
|
4487
|
-
readonly ML_R6I_4XLARGE: "ml.r6i.4xlarge";
|
|
4488
|
-
readonly ML_R6I_8XLARGE: "ml.r6i.8xlarge";
|
|
4489
|
-
readonly ML_R6I_LARGE: "ml.r6i.large";
|
|
4490
|
-
readonly ML_R6I_XLARGE: "ml.r6i.xlarge";
|
|
4491
|
-
readonly ML_R7I_12XLARGE: "ml.r7i.12xlarge";
|
|
4492
|
-
readonly ML_R7I_16XLARGE: "ml.r7i.16xlarge";
|
|
4493
|
-
readonly ML_R7I_24XLARGE: "ml.r7i.24xlarge";
|
|
4494
|
-
readonly ML_R7I_2XLARGE: "ml.r7i.2xlarge";
|
|
4495
|
-
readonly ML_R7I_48XLARGE: "ml.r7i.48xlarge";
|
|
4496
|
-
readonly ML_R7I_4XLARGE: "ml.r7i.4xlarge";
|
|
4497
|
-
readonly ML_R7I_8XLARGE: "ml.r7i.8xlarge";
|
|
4498
|
-
readonly ML_R7I_LARGE: "ml.r7i.large";
|
|
4499
|
-
readonly ML_R7I_XLARGE: "ml.r7i.xlarge";
|
|
4500
|
-
};
|
|
4501
|
-
/**
|
|
4502
|
-
* @public
|
|
4503
|
-
*/
|
|
4504
|
-
export type InferenceInstanceType = (typeof InferenceInstanceType)[keyof typeof InferenceInstanceType];
|
|
4505
3802
|
/**
|
|
4506
3803
|
* <p>Defines the resources used to perform model inference.</p>
|
|
4507
3804
|
* @public
|
|
@@ -4881,21 +4178,6 @@ export interface DataSource {
|
|
|
4881
4178
|
*/
|
|
4882
4179
|
glueDataSource: GlueDataSource | undefined;
|
|
4883
4180
|
}
|
|
4884
|
-
/**
|
|
4885
|
-
* @public
|
|
4886
|
-
* @enum
|
|
4887
|
-
*/
|
|
4888
|
-
export declare const ColumnType: {
|
|
4889
|
-
readonly CATEGORICAL_FEATURE: "CATEGORICAL_FEATURE";
|
|
4890
|
-
readonly ITEM_ID: "ITEM_ID";
|
|
4891
|
-
readonly NUMERICAL_FEATURE: "NUMERICAL_FEATURE";
|
|
4892
|
-
readonly TIMESTAMP: "TIMESTAMP";
|
|
4893
|
-
readonly USER_ID: "USER_ID";
|
|
4894
|
-
};
|
|
4895
|
-
/**
|
|
4896
|
-
* @public
|
|
4897
|
-
*/
|
|
4898
|
-
export type ColumnType = (typeof ColumnType)[keyof typeof ColumnType];
|
|
4899
4181
|
/**
|
|
4900
4182
|
* <p>Metadata for a column.</p>
|
|
4901
4183
|
* @public
|
|
@@ -4928,17 +4210,6 @@ export interface DatasetInputConfig {
|
|
|
4928
4210
|
*/
|
|
4929
4211
|
dataSource: DataSource | undefined;
|
|
4930
4212
|
}
|
|
4931
|
-
/**
|
|
4932
|
-
* @public
|
|
4933
|
-
* @enum
|
|
4934
|
-
*/
|
|
4935
|
-
export declare const DatasetType: {
|
|
4936
|
-
readonly INTERACTIONS: "INTERACTIONS";
|
|
4937
|
-
};
|
|
4938
|
-
/**
|
|
4939
|
-
* @public
|
|
4940
|
-
*/
|
|
4941
|
-
export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType];
|
|
4942
4213
|
/**
|
|
4943
4214
|
* <p>Defines where the training dataset is located, what type of data it contains, and how to access the data.</p>
|
|
4944
4215
|
* @public
|
|
@@ -5015,17 +4286,6 @@ export interface GetTrainingDatasetRequest {
|
|
|
5015
4286
|
*/
|
|
5016
4287
|
trainingDatasetArn: string | undefined;
|
|
5017
4288
|
}
|
|
5018
|
-
/**
|
|
5019
|
-
* @public
|
|
5020
|
-
* @enum
|
|
5021
|
-
*/
|
|
5022
|
-
export declare const TrainingDatasetStatus: {
|
|
5023
|
-
readonly ACTIVE: "ACTIVE";
|
|
5024
|
-
};
|
|
5025
|
-
/**
|
|
5026
|
-
* @public
|
|
5027
|
-
*/
|
|
5028
|
-
export type TrainingDatasetStatus = (typeof TrainingDatasetStatus)[keyof typeof TrainingDatasetStatus];
|
|
5029
4289
|
/**
|
|
5030
4290
|
* @public
|
|
5031
4291
|
*/
|