@aws-sdk/client-cleanroomsml 3.934.0 → 3.936.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 +19 -19
- 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,19 +1,37 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
import {
|
|
2
|
+
_InstanceType,
|
|
3
|
+
AccessBudgetType,
|
|
4
|
+
AudienceExportJobStatus,
|
|
5
|
+
AudienceGenerationJobStatus,
|
|
6
|
+
AudienceModelStatus,
|
|
7
|
+
AudienceSizeType,
|
|
8
|
+
AutoRefreshMode,
|
|
9
|
+
ColumnType,
|
|
10
|
+
ConfiguredAudienceModelStatus,
|
|
11
|
+
DatasetType,
|
|
12
|
+
EntityType,
|
|
13
|
+
InferenceInstanceType,
|
|
14
|
+
LogsStatus,
|
|
15
|
+
LogType,
|
|
16
|
+
MetricsStatus,
|
|
17
|
+
MLInputChannelStatus,
|
|
18
|
+
NoiseLevelType,
|
|
19
|
+
PolicyExistenceCondition,
|
|
20
|
+
ResultFormat,
|
|
21
|
+
S3DataDistributionType,
|
|
22
|
+
SharedAudienceMetrics,
|
|
23
|
+
TagOnCreatePolicy,
|
|
24
|
+
TrainedModelArtifactMaxSizeUnitType,
|
|
25
|
+
TrainedModelExportFileType,
|
|
26
|
+
TrainedModelExportJobStatus,
|
|
27
|
+
TrainedModelExportsMaxSizeUnitType,
|
|
28
|
+
TrainedModelInferenceJobStatus,
|
|
29
|
+
TrainedModelInferenceMaxOutputSizeUnitType,
|
|
30
|
+
TrainedModelStatus,
|
|
31
|
+
TrainingDatasetStatus,
|
|
32
|
+
TrainingInputMode,
|
|
33
|
+
WorkerComputeType,
|
|
34
|
+
} from "./enums";
|
|
17
35
|
export interface AccessBudgetDetails {
|
|
18
36
|
startTime: Date | undefined;
|
|
19
37
|
endTime?: Date | undefined;
|
|
@@ -27,13 +45,6 @@ export interface AccessBudget {
|
|
|
27
45
|
details: AccessBudgetDetails[] | undefined;
|
|
28
46
|
aggregateRemainingBudget: number | undefined;
|
|
29
47
|
}
|
|
30
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
31
|
-
readonly name: "AccessDeniedException";
|
|
32
|
-
readonly $fault: "client";
|
|
33
|
-
constructor(
|
|
34
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
35
|
-
);
|
|
36
|
-
}
|
|
37
48
|
export interface S3ConfigMap {
|
|
38
49
|
s3Uri: string | undefined;
|
|
39
50
|
}
|
|
@@ -45,24 +56,10 @@ export interface ListAudienceExportJobsRequest {
|
|
|
45
56
|
maxResults?: number | undefined;
|
|
46
57
|
audienceGenerationJobArn?: string | undefined;
|
|
47
58
|
}
|
|
48
|
-
export declare const AudienceSizeType: {
|
|
49
|
-
readonly ABSOLUTE: "ABSOLUTE";
|
|
50
|
-
readonly PERCENTAGE: "PERCENTAGE";
|
|
51
|
-
};
|
|
52
|
-
export type AudienceSizeType =
|
|
53
|
-
(typeof AudienceSizeType)[keyof typeof AudienceSizeType];
|
|
54
59
|
export interface AudienceSize {
|
|
55
60
|
type: AudienceSizeType | undefined;
|
|
56
61
|
value: number | undefined;
|
|
57
62
|
}
|
|
58
|
-
export declare const AudienceExportJobStatus: {
|
|
59
|
-
readonly ACTIVE: "ACTIVE";
|
|
60
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
61
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
62
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
63
|
-
};
|
|
64
|
-
export type AudienceExportJobStatus =
|
|
65
|
-
(typeof AudienceExportJobStatus)[keyof typeof AudienceExportJobStatus];
|
|
66
63
|
export interface StatusDetails {
|
|
67
64
|
statusCode?: string | undefined;
|
|
68
65
|
message?: string | undefined;
|
|
@@ -82,34 +79,6 @@ export interface ListAudienceExportJobsResponse {
|
|
|
82
79
|
nextToken?: string | undefined;
|
|
83
80
|
audienceExportJobs: AudienceExportJobSummary[] | undefined;
|
|
84
81
|
}
|
|
85
|
-
export declare class ValidationException extends __BaseException {
|
|
86
|
-
readonly name: "ValidationException";
|
|
87
|
-
readonly $fault: "client";
|
|
88
|
-
constructor(
|
|
89
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
90
|
-
);
|
|
91
|
-
}
|
|
92
|
-
export declare class ConflictException extends __BaseException {
|
|
93
|
-
readonly name: "ConflictException";
|
|
94
|
-
readonly $fault: "client";
|
|
95
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
96
|
-
}
|
|
97
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
98
|
-
readonly name: "ResourceNotFoundException";
|
|
99
|
-
readonly $fault: "client";
|
|
100
|
-
constructor(
|
|
101
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
102
|
-
);
|
|
103
|
-
}
|
|
104
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
105
|
-
readonly name: "ServiceQuotaExceededException";
|
|
106
|
-
readonly $fault: "client";
|
|
107
|
-
quotaName?: string | undefined;
|
|
108
|
-
quotaValue?: number | undefined;
|
|
109
|
-
constructor(
|
|
110
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
111
|
-
);
|
|
112
|
-
}
|
|
113
82
|
export interface StartAudienceExportJobRequest {
|
|
114
83
|
name: string | undefined;
|
|
115
84
|
audienceGenerationJobArn: string | undefined;
|
|
@@ -130,12 +99,6 @@ export interface AudienceQualityMetrics {
|
|
|
130
99
|
relevanceMetrics: RelevanceMetric[] | undefined;
|
|
131
100
|
recallMetric?: number | undefined;
|
|
132
101
|
}
|
|
133
|
-
export declare const WorkerComputeType: {
|
|
134
|
-
readonly CR1X: "CR.1X";
|
|
135
|
-
readonly CR4X: "CR.4X";
|
|
136
|
-
};
|
|
137
|
-
export type WorkerComputeType =
|
|
138
|
-
(typeof WorkerComputeType)[keyof typeof WorkerComputeType];
|
|
139
102
|
export interface WorkerComputeConfiguration {
|
|
140
103
|
type?: WorkerComputeType | undefined;
|
|
141
104
|
number?: number | undefined;
|
|
@@ -168,17 +131,6 @@ export interface AudienceGenerationJobDataSource {
|
|
|
168
131
|
sqlParameters?: ProtectedQuerySQLParameters | undefined;
|
|
169
132
|
sqlComputeConfiguration?: ComputeConfiguration | undefined;
|
|
170
133
|
}
|
|
171
|
-
export declare const AudienceGenerationJobStatus: {
|
|
172
|
-
readonly ACTIVE: "ACTIVE";
|
|
173
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
174
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
175
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
176
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
177
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
178
|
-
readonly DELETE_PENDING: "DELETE_PENDING";
|
|
179
|
-
};
|
|
180
|
-
export type AudienceGenerationJobStatus =
|
|
181
|
-
(typeof AudienceGenerationJobStatus)[keyof typeof AudienceGenerationJobStatus];
|
|
182
134
|
export interface GetAudienceGenerationJobResponse {
|
|
183
135
|
createTime: Date | undefined;
|
|
184
136
|
updateTime: Date | undefined;
|
|
@@ -229,13 +181,6 @@ export interface StartAudienceGenerationJobRequest {
|
|
|
229
181
|
export interface StartAudienceGenerationJobResponse {
|
|
230
182
|
audienceGenerationJobArn: string | undefined;
|
|
231
183
|
}
|
|
232
|
-
export declare class ThrottlingException extends __BaseException {
|
|
233
|
-
readonly name: "ThrottlingException";
|
|
234
|
-
readonly $fault: "client";
|
|
235
|
-
constructor(
|
|
236
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
237
|
-
);
|
|
238
|
-
}
|
|
239
184
|
export interface CreateAudienceModelRequest {
|
|
240
185
|
trainingDataStartTime?: Date | undefined;
|
|
241
186
|
trainingDataEndTime?: Date | undefined;
|
|
@@ -254,17 +199,6 @@ export interface DeleteAudienceModelRequest {
|
|
|
254
199
|
export interface GetAudienceModelRequest {
|
|
255
200
|
audienceModelArn: string | undefined;
|
|
256
201
|
}
|
|
257
|
-
export declare const AudienceModelStatus: {
|
|
258
|
-
readonly ACTIVE: "ACTIVE";
|
|
259
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
260
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
261
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
262
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
263
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
264
|
-
readonly DELETE_PENDING: "DELETE_PENDING";
|
|
265
|
-
};
|
|
266
|
-
export type AudienceModelStatus =
|
|
267
|
-
(typeof AudienceModelStatus)[keyof typeof AudienceModelStatus];
|
|
268
202
|
export interface GetAudienceModelResponse {
|
|
269
203
|
createTime: Date | undefined;
|
|
270
204
|
updateTime: Date | undefined;
|
|
@@ -300,22 +234,10 @@ export interface AudienceSizeConfig {
|
|
|
300
234
|
audienceSizeType: AudienceSizeType | undefined;
|
|
301
235
|
audienceSizeBins: number[] | undefined;
|
|
302
236
|
}
|
|
303
|
-
export declare const TagOnCreatePolicy: {
|
|
304
|
-
readonly FROM_PARENT_RESOURCE: "FROM_PARENT_RESOURCE";
|
|
305
|
-
readonly NONE: "NONE";
|
|
306
|
-
};
|
|
307
|
-
export type TagOnCreatePolicy =
|
|
308
|
-
(typeof TagOnCreatePolicy)[keyof typeof TagOnCreatePolicy];
|
|
309
237
|
export interface ConfiguredAudienceModelOutputConfig {
|
|
310
238
|
destination: AudienceDestination | undefined;
|
|
311
239
|
roleArn: string | undefined;
|
|
312
240
|
}
|
|
313
|
-
export declare const SharedAudienceMetrics: {
|
|
314
|
-
readonly ALL: "ALL";
|
|
315
|
-
readonly NONE: "NONE";
|
|
316
|
-
};
|
|
317
|
-
export type SharedAudienceMetrics =
|
|
318
|
-
(typeof SharedAudienceMetrics)[keyof typeof SharedAudienceMetrics];
|
|
319
241
|
export interface CreateConfiguredAudienceModelRequest {
|
|
320
242
|
name: string | undefined;
|
|
321
243
|
audienceModelArn: string | undefined;
|
|
@@ -336,11 +258,6 @@ export interface DeleteConfiguredAudienceModelRequest {
|
|
|
336
258
|
export interface GetConfiguredAudienceModelRequest {
|
|
337
259
|
configuredAudienceModelArn: string | undefined;
|
|
338
260
|
}
|
|
339
|
-
export declare const ConfiguredAudienceModelStatus: {
|
|
340
|
-
readonly ACTIVE: "ACTIVE";
|
|
341
|
-
};
|
|
342
|
-
export type ConfiguredAudienceModelStatus =
|
|
343
|
-
(typeof ConfiguredAudienceModelStatus)[keyof typeof ConfiguredAudienceModelStatus];
|
|
344
261
|
export interface GetConfiguredAudienceModelResponse {
|
|
345
262
|
createTime: Date | undefined;
|
|
346
263
|
updateTime: Date | undefined;
|
|
@@ -397,12 +314,6 @@ export interface GetConfiguredAudienceModelPolicyResponse {
|
|
|
397
314
|
configuredAudienceModelPolicy: string | undefined;
|
|
398
315
|
policyHash: string | undefined;
|
|
399
316
|
}
|
|
400
|
-
export declare const PolicyExistenceCondition: {
|
|
401
|
-
readonly POLICY_MUST_EXIST: "POLICY_MUST_EXIST";
|
|
402
|
-
readonly POLICY_MUST_NOT_EXIST: "POLICY_MUST_NOT_EXIST";
|
|
403
|
-
};
|
|
404
|
-
export type PolicyExistenceCondition =
|
|
405
|
-
(typeof PolicyExistenceCondition)[keyof typeof PolicyExistenceCondition];
|
|
406
317
|
export interface PutConfiguredAudienceModelPolicyRequest {
|
|
407
318
|
configuredAudienceModelArn: string | undefined;
|
|
408
319
|
configuredAudienceModelPolicy: string | undefined;
|
|
@@ -471,17 +382,6 @@ export interface ListConfiguredModelAlgorithmsResponse {
|
|
|
471
382
|
nextToken?: string | undefined;
|
|
472
383
|
configuredModelAlgorithms: ConfiguredModelAlgorithmSummary[] | undefined;
|
|
473
384
|
}
|
|
474
|
-
export declare const TrainedModelExportFileType: {
|
|
475
|
-
readonly MODEL: "MODEL";
|
|
476
|
-
readonly OUTPUT: "OUTPUT";
|
|
477
|
-
};
|
|
478
|
-
export type TrainedModelExportFileType =
|
|
479
|
-
(typeof TrainedModelExportFileType)[keyof typeof TrainedModelExportFileType];
|
|
480
|
-
export declare const TrainedModelExportsMaxSizeUnitType: {
|
|
481
|
-
readonly GB: "GB";
|
|
482
|
-
};
|
|
483
|
-
export type TrainedModelExportsMaxSizeUnitType =
|
|
484
|
-
(typeof TrainedModelExportsMaxSizeUnitType)[keyof typeof TrainedModelExportsMaxSizeUnitType];
|
|
485
385
|
export interface TrainedModelExportsMaxSize {
|
|
486
386
|
unit: TrainedModelExportsMaxSizeUnitType | undefined;
|
|
487
387
|
value: number | undefined;
|
|
@@ -493,32 +393,16 @@ export interface TrainedModelExportsConfigurationPolicy {
|
|
|
493
393
|
export interface CustomEntityConfig {
|
|
494
394
|
customDataIdentifiers: string[] | undefined;
|
|
495
395
|
}
|
|
496
|
-
export declare const EntityType: {
|
|
497
|
-
readonly ALL_PERSONALLY_IDENTIFIABLE_INFORMATION: "ALL_PERSONALLY_IDENTIFIABLE_INFORMATION";
|
|
498
|
-
readonly CUSTOM: "CUSTOM";
|
|
499
|
-
readonly NUMBERS: "NUMBERS";
|
|
500
|
-
};
|
|
501
|
-
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
502
396
|
export interface LogRedactionConfiguration {
|
|
503
397
|
entitiesToRedact: EntityType[] | undefined;
|
|
504
398
|
customEntityConfig?: CustomEntityConfig | undefined;
|
|
505
399
|
}
|
|
506
|
-
export declare const LogType: {
|
|
507
|
-
readonly ALL: "ALL";
|
|
508
|
-
readonly ERROR_SUMMARY: "ERROR_SUMMARY";
|
|
509
|
-
};
|
|
510
|
-
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
511
400
|
export interface LogsConfigurationPolicy {
|
|
512
401
|
allowedAccountIds: string[] | undefined;
|
|
513
402
|
filterPattern?: string | undefined;
|
|
514
403
|
logType?: LogType | undefined;
|
|
515
404
|
logRedactionConfiguration?: LogRedactionConfiguration | undefined;
|
|
516
405
|
}
|
|
517
|
-
export declare const TrainedModelInferenceMaxOutputSizeUnitType: {
|
|
518
|
-
readonly GB: "GB";
|
|
519
|
-
};
|
|
520
|
-
export type TrainedModelInferenceMaxOutputSizeUnitType =
|
|
521
|
-
(typeof TrainedModelInferenceMaxOutputSizeUnitType)[keyof typeof TrainedModelInferenceMaxOutputSizeUnitType];
|
|
522
406
|
export interface TrainedModelInferenceMaxOutputSize {
|
|
523
407
|
unit: TrainedModelInferenceMaxOutputSizeUnitType | undefined;
|
|
524
408
|
value: number | undefined;
|
|
@@ -527,22 +411,9 @@ export interface TrainedModelInferenceJobsConfigurationPolicy {
|
|
|
527
411
|
containerLogs?: LogsConfigurationPolicy[] | undefined;
|
|
528
412
|
maxOutputSize?: TrainedModelInferenceMaxOutputSize | undefined;
|
|
529
413
|
}
|
|
530
|
-
export declare const NoiseLevelType: {
|
|
531
|
-
readonly HIGH: "HIGH";
|
|
532
|
-
readonly LOW: "LOW";
|
|
533
|
-
readonly MEDIUM: "MEDIUM";
|
|
534
|
-
readonly NONE: "NONE";
|
|
535
|
-
};
|
|
536
|
-
export type NoiseLevelType =
|
|
537
|
-
(typeof NoiseLevelType)[keyof typeof NoiseLevelType];
|
|
538
414
|
export interface MetricsConfigurationPolicy {
|
|
539
415
|
noiseLevel: NoiseLevelType | undefined;
|
|
540
416
|
}
|
|
541
|
-
export declare const TrainedModelArtifactMaxSizeUnitType: {
|
|
542
|
-
readonly GB: "GB";
|
|
543
|
-
};
|
|
544
|
-
export type TrainedModelArtifactMaxSizeUnitType =
|
|
545
|
-
(typeof TrainedModelArtifactMaxSizeUnitType)[keyof typeof TrainedModelArtifactMaxSizeUnitType];
|
|
546
417
|
export interface TrainedModelArtifactMaxSize {
|
|
547
418
|
unit: TrainedModelArtifactMaxSizeUnitType | undefined;
|
|
548
419
|
value: number | undefined;
|
|
@@ -657,18 +528,6 @@ export interface ListCollaborationMLInputChannelsRequest {
|
|
|
657
528
|
maxResults?: number | undefined;
|
|
658
529
|
collaborationIdentifier: string | undefined;
|
|
659
530
|
}
|
|
660
|
-
export declare const MLInputChannelStatus: {
|
|
661
|
-
readonly ACTIVE: "ACTIVE";
|
|
662
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
663
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
664
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
665
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
666
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
667
|
-
readonly DELETE_PENDING: "DELETE_PENDING";
|
|
668
|
-
readonly INACTIVE: "INACTIVE";
|
|
669
|
-
};
|
|
670
|
-
export type MLInputChannelStatus =
|
|
671
|
-
(typeof MLInputChannelStatus)[keyof typeof MLInputChannelStatus];
|
|
672
531
|
export interface CollaborationMLInputChannelSummary {
|
|
673
532
|
createTime: Date | undefined;
|
|
674
533
|
updateTime: Date | undefined;
|
|
@@ -700,14 +559,6 @@ export interface TrainedModelExportReceiverMember {
|
|
|
700
559
|
export interface TrainedModelExportOutputConfiguration {
|
|
701
560
|
members: TrainedModelExportReceiverMember[] | undefined;
|
|
702
561
|
}
|
|
703
|
-
export declare const TrainedModelExportJobStatus: {
|
|
704
|
-
readonly ACTIVE: "ACTIVE";
|
|
705
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
706
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
707
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
708
|
-
};
|
|
709
|
-
export type TrainedModelExportJobStatus =
|
|
710
|
-
(typeof TrainedModelExportJobStatus)[keyof typeof TrainedModelExportJobStatus];
|
|
711
562
|
export interface CollaborationTrainedModelExportJobSummary {
|
|
712
563
|
createTime: Date | undefined;
|
|
713
564
|
updateTime: Date | undefined;
|
|
@@ -735,16 +586,6 @@ export interface ListCollaborationTrainedModelInferenceJobsRequest {
|
|
|
735
586
|
trainedModelArn?: string | undefined;
|
|
736
587
|
trainedModelVersionIdentifier?: string | undefined;
|
|
737
588
|
}
|
|
738
|
-
export declare const LogsStatus: {
|
|
739
|
-
readonly PUBLISH_FAILED: "PUBLISH_FAILED";
|
|
740
|
-
readonly PUBLISH_SUCCEEDED: "PUBLISH_SUCCEEDED";
|
|
741
|
-
};
|
|
742
|
-
export type LogsStatus = (typeof LogsStatus)[keyof typeof LogsStatus];
|
|
743
|
-
export declare const MetricsStatus: {
|
|
744
|
-
readonly PUBLISH_FAILED: "PUBLISH_FAILED";
|
|
745
|
-
readonly PUBLISH_SUCCEEDED: "PUBLISH_SUCCEEDED";
|
|
746
|
-
};
|
|
747
|
-
export type MetricsStatus = (typeof MetricsStatus)[keyof typeof MetricsStatus];
|
|
748
589
|
export interface InferenceReceiverMember {
|
|
749
590
|
accountId: string | undefined;
|
|
750
591
|
}
|
|
@@ -752,18 +593,6 @@ export interface InferenceOutputConfiguration {
|
|
|
752
593
|
accept?: string | undefined;
|
|
753
594
|
members: InferenceReceiverMember[] | undefined;
|
|
754
595
|
}
|
|
755
|
-
export declare const TrainedModelInferenceJobStatus: {
|
|
756
|
-
readonly ACTIVE: "ACTIVE";
|
|
757
|
-
readonly CANCEL_FAILED: "CANCEL_FAILED";
|
|
758
|
-
readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
|
|
759
|
-
readonly CANCEL_PENDING: "CANCEL_PENDING";
|
|
760
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
761
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
762
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
763
|
-
readonly INACTIVE: "INACTIVE";
|
|
764
|
-
};
|
|
765
|
-
export type TrainedModelInferenceJobStatus =
|
|
766
|
-
(typeof TrainedModelInferenceJobStatus)[keyof typeof TrainedModelInferenceJobStatus];
|
|
767
596
|
export interface CollaborationTrainedModelInferenceJobSummary {
|
|
768
597
|
trainedModelInferenceJobArn: string | undefined;
|
|
769
598
|
configuredModelAlgorithmAssociationArn?: string | undefined;
|
|
@@ -799,21 +628,6 @@ export interface IncrementalTrainingDataChannelOutput {
|
|
|
799
628
|
versionIdentifier?: string | undefined;
|
|
800
629
|
modelName: string | undefined;
|
|
801
630
|
}
|
|
802
|
-
export declare const TrainedModelStatus: {
|
|
803
|
-
readonly ACTIVE: "ACTIVE";
|
|
804
|
-
readonly CANCEL_FAILED: "CANCEL_FAILED";
|
|
805
|
-
readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
|
|
806
|
-
readonly CANCEL_PENDING: "CANCEL_PENDING";
|
|
807
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
808
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
809
|
-
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
810
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
811
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
812
|
-
readonly DELETE_PENDING: "DELETE_PENDING";
|
|
813
|
-
readonly INACTIVE: "INACTIVE";
|
|
814
|
-
};
|
|
815
|
-
export type TrainedModelStatus =
|
|
816
|
-
(typeof TrainedModelStatus)[keyof typeof TrainedModelStatus];
|
|
817
631
|
export interface CollaborationTrainedModelSummary {
|
|
818
632
|
createTime: Date | undefined;
|
|
819
633
|
updateTime: Date | undefined;
|
|
@@ -863,11 +677,6 @@ export interface PutMLConfigurationRequest {
|
|
|
863
677
|
membershipIdentifier: string | undefined;
|
|
864
678
|
defaultOutputLocation: MLOutputConfiguration | undefined;
|
|
865
679
|
}
|
|
866
|
-
export declare const ResultFormat: {
|
|
867
|
-
readonly CSV: "CSV";
|
|
868
|
-
readonly PARQUET: "PARQUET";
|
|
869
|
-
};
|
|
870
|
-
export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
|
|
871
680
|
export interface ProtectedQueryInputParameters {
|
|
872
681
|
sqlParameters: ProtectedQuerySQLParameters | undefined;
|
|
873
682
|
computeConfiguration?: ComputeConfiguration | undefined;
|
|
@@ -1004,12 +813,6 @@ export interface CancelTrainedModelRequest {
|
|
|
1004
813
|
trainedModelArn: string | undefined;
|
|
1005
814
|
versionIdentifier?: string | undefined;
|
|
1006
815
|
}
|
|
1007
|
-
export declare const S3DataDistributionType: {
|
|
1008
|
-
readonly FULLY_REPLICATED: "FullyReplicated";
|
|
1009
|
-
readonly SHARDED_BY_S3_KEY: "ShardedByS3Key";
|
|
1010
|
-
};
|
|
1011
|
-
export type S3DataDistributionType =
|
|
1012
|
-
(typeof S3DataDistributionType)[keyof typeof S3DataDistributionType];
|
|
1013
816
|
export interface ModelTrainingDataChannel {
|
|
1014
817
|
mlInputChannelArn: string | undefined;
|
|
1015
818
|
channelName: string | undefined;
|
|
@@ -1020,142 +823,6 @@ export interface IncrementalTrainingDataChannel {
|
|
|
1020
823
|
versionIdentifier?: string | undefined;
|
|
1021
824
|
channelName: string | undefined;
|
|
1022
825
|
}
|
|
1023
|
-
export declare const _InstanceType: {
|
|
1024
|
-
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
1025
|
-
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
1026
|
-
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
1027
|
-
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
1028
|
-
readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
|
|
1029
|
-
readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
|
|
1030
|
-
readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
|
|
1031
|
-
readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
|
|
1032
|
-
readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
|
|
1033
|
-
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
1034
|
-
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
1035
|
-
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
1036
|
-
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
1037
|
-
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
1038
|
-
readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
|
|
1039
|
-
readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
|
|
1040
|
-
readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
|
|
1041
|
-
readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
|
|
1042
|
-
readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
|
|
1043
|
-
readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
|
|
1044
|
-
readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
|
|
1045
|
-
readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
|
|
1046
|
-
readonly ML_C7I_12XLARGE: "ml.c7i.12xlarge";
|
|
1047
|
-
readonly ML_C7I_16XLARGE: "ml.c7i.16xlarge";
|
|
1048
|
-
readonly ML_C7I_24XLARGE: "ml.c7i.24xlarge";
|
|
1049
|
-
readonly ML_C7I_2XLARGE: "ml.c7i.2xlarge";
|
|
1050
|
-
readonly ML_C7I_48XLARGE: "ml.c7i.48xlarge";
|
|
1051
|
-
readonly ML_C7I_4XLARGE: "ml.c7i.4xlarge";
|
|
1052
|
-
readonly ML_C7I_8XLARGE: "ml.c7i.8xlarge";
|
|
1053
|
-
readonly ML_C7I_LARGE: "ml.c7i.large";
|
|
1054
|
-
readonly ML_C7I_XLARGE: "ml.c7i.xlarge";
|
|
1055
|
-
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
1056
|
-
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
1057
|
-
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
1058
|
-
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
1059
|
-
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
1060
|
-
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
1061
|
-
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
1062
|
-
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
1063
|
-
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
1064
|
-
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
1065
|
-
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
1066
|
-
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
1067
|
-
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
1068
|
-
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
1069
|
-
readonly ML_G6E_12XLARGE: "ml.g6e.12xlarge";
|
|
1070
|
-
readonly ML_G6E_16XLARGE: "ml.g6e.16xlarge";
|
|
1071
|
-
readonly ML_G6E_24XLARGE: "ml.g6e.24xlarge";
|
|
1072
|
-
readonly ML_G6E_2XLARGE: "ml.g6e.2xlarge";
|
|
1073
|
-
readonly ML_G6E_48XLARGE: "ml.g6e.48xlarge";
|
|
1074
|
-
readonly ML_G6E_4XLARGE: "ml.g6e.4xlarge";
|
|
1075
|
-
readonly ML_G6E_8XLARGE: "ml.g6e.8xlarge";
|
|
1076
|
-
readonly ML_G6E_XLARGE: "ml.g6e.xlarge";
|
|
1077
|
-
readonly ML_G6_12XLARGE: "ml.g6.12xlarge";
|
|
1078
|
-
readonly ML_G6_16XLARGE: "ml.g6.16xlarge";
|
|
1079
|
-
readonly ML_G6_24XLARGE: "ml.g6.24xlarge";
|
|
1080
|
-
readonly ML_G6_2XLARGE: "ml.g6.2xlarge";
|
|
1081
|
-
readonly ML_G6_48XLARGE: "ml.g6.48xlarge";
|
|
1082
|
-
readonly ML_G6_4XLARGE: "ml.g6.4xlarge";
|
|
1083
|
-
readonly ML_G6_8XLARGE: "ml.g6.8xlarge";
|
|
1084
|
-
readonly ML_G6_XLARGE: "ml.g6.xlarge";
|
|
1085
|
-
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
1086
|
-
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
1087
|
-
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
1088
|
-
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
1089
|
-
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
1090
|
-
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
1091
|
-
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
1092
|
-
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
1093
|
-
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
1094
|
-
readonly ML_M5_LARGE: "ml.m5.large";
|
|
1095
|
-
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
1096
|
-
readonly ML_M6I_12XLARGE: "ml.m6i.12xlarge";
|
|
1097
|
-
readonly ML_M6I_16XLARGE: "ml.m6i.16xlarge";
|
|
1098
|
-
readonly ML_M6I_24XLARGE: "ml.m6i.24xlarge";
|
|
1099
|
-
readonly ML_M6I_2XLARGE: "ml.m6i.2xlarge";
|
|
1100
|
-
readonly ML_M6I_32XLARGE: "ml.m6i.32xlarge";
|
|
1101
|
-
readonly ML_M6I_4XLARGE: "ml.m6i.4xlarge";
|
|
1102
|
-
readonly ML_M6I_8XLARGE: "ml.m6i.8xlarge";
|
|
1103
|
-
readonly ML_M6I_LARGE: "ml.m6i.large";
|
|
1104
|
-
readonly ML_M6I_XLARGE: "ml.m6i.xlarge";
|
|
1105
|
-
readonly ML_M7I_12XLARGE: "ml.m7i.12xlarge";
|
|
1106
|
-
readonly ML_M7I_16XLARGE: "ml.m7i.16xlarge";
|
|
1107
|
-
readonly ML_M7I_24XLARGE: "ml.m7i.24xlarge";
|
|
1108
|
-
readonly ML_M7I_2XLARGE: "ml.m7i.2xlarge";
|
|
1109
|
-
readonly ML_M7I_48XLARGE: "ml.m7i.48xlarge";
|
|
1110
|
-
readonly ML_M7I_4XLARGE: "ml.m7i.4xlarge";
|
|
1111
|
-
readonly ML_M7I_8XLARGE: "ml.m7i.8xlarge";
|
|
1112
|
-
readonly ML_M7I_LARGE: "ml.m7i.large";
|
|
1113
|
-
readonly ML_M7I_XLARGE: "ml.m7i.xlarge";
|
|
1114
|
-
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
1115
|
-
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
1116
|
-
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
1117
|
-
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
1118
|
-
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
1119
|
-
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
1120
|
-
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
1121
|
-
readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
|
|
1122
|
-
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
1123
|
-
readonly ML_P5EN_48XLARGE: "ml.p5en.48xlarge";
|
|
1124
|
-
readonly ML_P5_48XLARGE: "ml.p5.48xlarge";
|
|
1125
|
-
readonly ML_R5D_12XLARGE: "ml.r5d.12xlarge";
|
|
1126
|
-
readonly ML_R5D_16XLARGE: "ml.r5d.16xlarge";
|
|
1127
|
-
readonly ML_R5D_24XLARGE: "ml.r5d.24xlarge";
|
|
1128
|
-
readonly ML_R5D_2XLARGE: "ml.r5d.2xlarge";
|
|
1129
|
-
readonly ML_R5D_4XLARGE: "ml.r5d.4xlarge";
|
|
1130
|
-
readonly ML_R5D_8XLARGE: "ml.r5d.8xlarge";
|
|
1131
|
-
readonly ML_R5D_LARGE: "ml.r5d.large";
|
|
1132
|
-
readonly ML_R5D_XLARGE: "ml.r5d.xlarge";
|
|
1133
|
-
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
1134
|
-
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
1135
|
-
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
1136
|
-
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
1137
|
-
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
1138
|
-
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
1139
|
-
readonly ML_R5_LARGE: "ml.r5.large";
|
|
1140
|
-
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
1141
|
-
readonly ML_R7I_12XLARGE: "ml.r7i.12xlarge";
|
|
1142
|
-
readonly ML_R7I_16XLARGE: "ml.r7i.16xlarge";
|
|
1143
|
-
readonly ML_R7I_24XLARGE: "ml.r7i.24xlarge";
|
|
1144
|
-
readonly ML_R7I_2XLARGE: "ml.r7i.2xlarge";
|
|
1145
|
-
readonly ML_R7I_48XLARGE: "ml.r7i.48xlarge";
|
|
1146
|
-
readonly ML_R7I_4XLARGE: "ml.r7i.4xlarge";
|
|
1147
|
-
readonly ML_R7I_8XLARGE: "ml.r7i.8xlarge";
|
|
1148
|
-
readonly ML_R7I_LARGE: "ml.r7i.large";
|
|
1149
|
-
readonly ML_R7I_XLARGE: "ml.r7i.xlarge";
|
|
1150
|
-
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
1151
|
-
readonly ML_T3_LARGE: "ml.t3.large";
|
|
1152
|
-
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
1153
|
-
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
1154
|
-
readonly ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge";
|
|
1155
|
-
readonly ML_TRN1_2XLARGE: "ml.trn1.2xlarge";
|
|
1156
|
-
readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
|
|
1157
|
-
};
|
|
1158
|
-
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
1159
826
|
export interface ResourceConfig {
|
|
1160
827
|
instanceCount?: number | undefined;
|
|
1161
828
|
instanceType: _InstanceType | undefined;
|
|
@@ -1164,13 +831,6 @@ export interface ResourceConfig {
|
|
|
1164
831
|
export interface StoppingCondition {
|
|
1165
832
|
maxRuntimeInSeconds?: number | undefined;
|
|
1166
833
|
}
|
|
1167
|
-
export declare const TrainingInputMode: {
|
|
1168
|
-
readonly FAST_FILE: "FastFile";
|
|
1169
|
-
readonly FILE: "File";
|
|
1170
|
-
readonly PIPE: "Pipe";
|
|
1171
|
-
};
|
|
1172
|
-
export type TrainingInputMode =
|
|
1173
|
-
(typeof TrainingInputMode)[keyof typeof TrainingInputMode];
|
|
1174
834
|
export interface CreateTrainedModelRequest {
|
|
1175
835
|
membershipIdentifier: string | undefined;
|
|
1176
836
|
name: string | undefined;
|
|
@@ -1192,13 +852,6 @@ export interface CreateTrainedModelResponse {
|
|
|
1192
852
|
trainedModelArn: string | undefined;
|
|
1193
853
|
versionIdentifier?: string | undefined;
|
|
1194
854
|
}
|
|
1195
|
-
export declare class InternalServiceException extends __BaseException {
|
|
1196
|
-
readonly name: "InternalServiceException";
|
|
1197
|
-
readonly $fault: "server";
|
|
1198
|
-
constructor(
|
|
1199
|
-
opts: __ExceptionOptionType<InternalServiceException, __BaseException>
|
|
1200
|
-
);
|
|
1201
|
-
}
|
|
1202
855
|
export interface DeleteTrainedModelOutputRequest {
|
|
1203
856
|
trainedModelArn: string | undefined;
|
|
1204
857
|
membershipIdentifier: string | undefined;
|
|
@@ -1325,104 +978,6 @@ export interface InferenceContainerExecutionParameters {
|
|
|
1325
978
|
export interface ModelInferenceDataSource {
|
|
1326
979
|
mlInputChannelArn: string | undefined;
|
|
1327
980
|
}
|
|
1328
|
-
export declare const InferenceInstanceType: {
|
|
1329
|
-
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
1330
|
-
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
1331
|
-
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
1332
|
-
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
1333
|
-
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
1334
|
-
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
1335
|
-
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
1336
|
-
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
1337
|
-
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
1338
|
-
readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
|
|
1339
|
-
readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
|
|
1340
|
-
readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
|
|
1341
|
-
readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
|
|
1342
|
-
readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
|
|
1343
|
-
readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
|
|
1344
|
-
readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
|
|
1345
|
-
readonly ML_C6I_LARGE: "ml.c6i.large";
|
|
1346
|
-
readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
|
|
1347
|
-
readonly ML_C7I_12XLARGE: "ml.c7i.12xlarge";
|
|
1348
|
-
readonly ML_C7I_16XLARGE: "ml.c7i.16xlarge";
|
|
1349
|
-
readonly ML_C7I_24XLARGE: "ml.c7i.24xlarge";
|
|
1350
|
-
readonly ML_C7I_2XLARGE: "ml.c7i.2xlarge";
|
|
1351
|
-
readonly ML_C7I_48XLARGE: "ml.c7i.48xlarge";
|
|
1352
|
-
readonly ML_C7I_4XLARGE: "ml.c7i.4xlarge";
|
|
1353
|
-
readonly ML_C7I_8XLARGE: "ml.c7i.8xlarge";
|
|
1354
|
-
readonly ML_C7I_LARGE: "ml.c7i.large";
|
|
1355
|
-
readonly ML_C7I_XLARGE: "ml.c7i.xlarge";
|
|
1356
|
-
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
1357
|
-
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
1358
|
-
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
1359
|
-
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
1360
|
-
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
1361
|
-
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
1362
|
-
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
1363
|
-
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
1364
|
-
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
1365
|
-
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
1366
|
-
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
1367
|
-
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
1368
|
-
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
1369
|
-
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
1370
|
-
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
1371
|
-
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
1372
|
-
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
1373
|
-
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
1374
|
-
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
1375
|
-
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
1376
|
-
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
1377
|
-
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
1378
|
-
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
1379
|
-
readonly ML_M5_LARGE: "ml.m5.large";
|
|
1380
|
-
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
1381
|
-
readonly ML_M6I_12XLARGE: "ml.m6i.12xlarge";
|
|
1382
|
-
readonly ML_M6I_16XLARGE: "ml.m6i.16xlarge";
|
|
1383
|
-
readonly ML_M6I_24XLARGE: "ml.m6i.24xlarge";
|
|
1384
|
-
readonly ML_M6I_2XLARGE: "ml.m6i.2xlarge";
|
|
1385
|
-
readonly ML_M6I_32XLARGE: "ml.m6i.32xlarge";
|
|
1386
|
-
readonly ML_M6I_4XLARGE: "ml.m6i.4xlarge";
|
|
1387
|
-
readonly ML_M6I_8XLARGE: "ml.m6i.8xlarge";
|
|
1388
|
-
readonly ML_M6I_LARGE: "ml.m6i.large";
|
|
1389
|
-
readonly ML_M6I_XLARGE: "ml.m6i.xlarge";
|
|
1390
|
-
readonly ML_M7I_12XLARGE: "ml.m7i.12xlarge";
|
|
1391
|
-
readonly ML_M7I_16XLARGE: "ml.m7i.16xlarge";
|
|
1392
|
-
readonly ML_M7I_24XLARGE: "ml.m7i.24xlarge";
|
|
1393
|
-
readonly ML_M7I_2XLARGE: "ml.m7i.2xlarge";
|
|
1394
|
-
readonly ML_M7I_48XLARGE: "ml.m7i.48xlarge";
|
|
1395
|
-
readonly ML_M7I_4XLARGE: "ml.m7i.4xlarge";
|
|
1396
|
-
readonly ML_M7I_8XLARGE: "ml.m7i.8xlarge";
|
|
1397
|
-
readonly ML_M7I_LARGE: "ml.m7i.large";
|
|
1398
|
-
readonly ML_M7I_XLARGE: "ml.m7i.xlarge";
|
|
1399
|
-
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
1400
|
-
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
1401
|
-
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
1402
|
-
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
1403
|
-
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
1404
|
-
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
1405
|
-
readonly ML_R6I_12XLARGE: "ml.r6i.12xlarge";
|
|
1406
|
-
readonly ML_R6I_16XLARGE: "ml.r6i.16xlarge";
|
|
1407
|
-
readonly ML_R6I_24XLARGE: "ml.r6i.24xlarge";
|
|
1408
|
-
readonly ML_R6I_2XLARGE: "ml.r6i.2xlarge";
|
|
1409
|
-
readonly ML_R6I_32XLARGE: "ml.r6i.32xlarge";
|
|
1410
|
-
readonly ML_R6I_4XLARGE: "ml.r6i.4xlarge";
|
|
1411
|
-
readonly ML_R6I_8XLARGE: "ml.r6i.8xlarge";
|
|
1412
|
-
readonly ML_R6I_LARGE: "ml.r6i.large";
|
|
1413
|
-
readonly ML_R6I_XLARGE: "ml.r6i.xlarge";
|
|
1414
|
-
readonly ML_R7I_12XLARGE: "ml.r7i.12xlarge";
|
|
1415
|
-
readonly ML_R7I_16XLARGE: "ml.r7i.16xlarge";
|
|
1416
|
-
readonly ML_R7I_24XLARGE: "ml.r7i.24xlarge";
|
|
1417
|
-
readonly ML_R7I_2XLARGE: "ml.r7i.2xlarge";
|
|
1418
|
-
readonly ML_R7I_48XLARGE: "ml.r7i.48xlarge";
|
|
1419
|
-
readonly ML_R7I_4XLARGE: "ml.r7i.4xlarge";
|
|
1420
|
-
readonly ML_R7I_8XLARGE: "ml.r7i.8xlarge";
|
|
1421
|
-
readonly ML_R7I_LARGE: "ml.r7i.large";
|
|
1422
|
-
readonly ML_R7I_XLARGE: "ml.r7i.xlarge";
|
|
1423
|
-
};
|
|
1424
|
-
export type InferenceInstanceType =
|
|
1425
|
-
(typeof InferenceInstanceType)[keyof typeof InferenceInstanceType];
|
|
1426
981
|
export interface InferenceResourceConfig {
|
|
1427
982
|
instanceType: InferenceInstanceType | undefined;
|
|
1428
983
|
instanceCount?: number | undefined;
|
|
@@ -1511,14 +1066,6 @@ export interface GlueDataSource {
|
|
|
1511
1066
|
export interface DataSource {
|
|
1512
1067
|
glueDataSource: GlueDataSource | undefined;
|
|
1513
1068
|
}
|
|
1514
|
-
export declare const ColumnType: {
|
|
1515
|
-
readonly CATEGORICAL_FEATURE: "CATEGORICAL_FEATURE";
|
|
1516
|
-
readonly ITEM_ID: "ITEM_ID";
|
|
1517
|
-
readonly NUMERICAL_FEATURE: "NUMERICAL_FEATURE";
|
|
1518
|
-
readonly TIMESTAMP: "TIMESTAMP";
|
|
1519
|
-
readonly USER_ID: "USER_ID";
|
|
1520
|
-
};
|
|
1521
|
-
export type ColumnType = (typeof ColumnType)[keyof typeof ColumnType];
|
|
1522
1069
|
export interface ColumnSchema {
|
|
1523
1070
|
columnName: string | undefined;
|
|
1524
1071
|
columnTypes: ColumnType[] | undefined;
|
|
@@ -1527,10 +1074,6 @@ export interface DatasetInputConfig {
|
|
|
1527
1074
|
schema: ColumnSchema[] | undefined;
|
|
1528
1075
|
dataSource: DataSource | undefined;
|
|
1529
1076
|
}
|
|
1530
|
-
export declare const DatasetType: {
|
|
1531
|
-
readonly INTERACTIONS: "INTERACTIONS";
|
|
1532
|
-
};
|
|
1533
|
-
export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType];
|
|
1534
1077
|
export interface Dataset {
|
|
1535
1078
|
type: DatasetType | undefined;
|
|
1536
1079
|
inputConfig: DatasetInputConfig | undefined;
|
|
@@ -1551,11 +1094,6 @@ export interface DeleteTrainingDatasetRequest {
|
|
|
1551
1094
|
export interface GetTrainingDatasetRequest {
|
|
1552
1095
|
trainingDatasetArn: string | undefined;
|
|
1553
1096
|
}
|
|
1554
|
-
export declare const TrainingDatasetStatus: {
|
|
1555
|
-
readonly ACTIVE: "ACTIVE";
|
|
1556
|
-
};
|
|
1557
|
-
export type TrainingDatasetStatus =
|
|
1558
|
-
(typeof TrainingDatasetStatus)[keyof typeof TrainingDatasetStatus];
|
|
1559
1097
|
export interface GetTrainingDatasetResponse {
|
|
1560
1098
|
createTime: Date | undefined;
|
|
1561
1099
|
updateTime: Date | undefined;
|