@aws-sdk/client-cleanroomsml 3.687.0 → 3.691.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-types/models/models_0.d.ts +237 -237
- package/dist-types/ts3.4/models/models_0.d.ts +243 -237
- package/package.json +7 -7
|
@@ -14,9 +14,9 @@ export interface AudienceDestination {
|
|
|
14
14
|
s3Destination: S3ConfigMap | undefined;
|
|
15
15
|
}
|
|
16
16
|
export interface ListAudienceExportJobsRequest {
|
|
17
|
-
nextToken?: string;
|
|
18
|
-
maxResults?: number;
|
|
19
|
-
audienceGenerationJobArn?: string;
|
|
17
|
+
nextToken?: string | undefined;
|
|
18
|
+
maxResults?: number | undefined;
|
|
19
|
+
audienceGenerationJobArn?: string | undefined;
|
|
20
20
|
}
|
|
21
21
|
export declare const AudienceSizeType: {
|
|
22
22
|
readonly ABSOLUTE: "ABSOLUTE";
|
|
@@ -37,8 +37,8 @@ export declare const AudienceExportJobStatus: {
|
|
|
37
37
|
export type AudienceExportJobStatus =
|
|
38
38
|
(typeof AudienceExportJobStatus)[keyof typeof AudienceExportJobStatus];
|
|
39
39
|
export interface StatusDetails {
|
|
40
|
-
statusCode?: string;
|
|
41
|
-
message?: string;
|
|
40
|
+
statusCode?: string | undefined;
|
|
41
|
+
message?: string | undefined;
|
|
42
42
|
}
|
|
43
43
|
export interface AudienceExportJobSummary {
|
|
44
44
|
createTime: Date | undefined;
|
|
@@ -46,13 +46,13 @@ export interface AudienceExportJobSummary {
|
|
|
46
46
|
name: string | undefined;
|
|
47
47
|
audienceGenerationJobArn: string | undefined;
|
|
48
48
|
audienceSize: AudienceSize | undefined;
|
|
49
|
-
description?: string;
|
|
49
|
+
description?: string | undefined;
|
|
50
50
|
status: AudienceExportJobStatus | undefined;
|
|
51
|
-
statusDetails?: StatusDetails;
|
|
52
|
-
outputLocation?: string;
|
|
51
|
+
statusDetails?: StatusDetails | undefined;
|
|
52
|
+
outputLocation?: string | undefined;
|
|
53
53
|
}
|
|
54
54
|
export interface ListAudienceExportJobsResponse {
|
|
55
|
-
nextToken?: string;
|
|
55
|
+
nextToken?: string | undefined;
|
|
56
56
|
audienceExportJobs: AudienceExportJobSummary[] | undefined;
|
|
57
57
|
}
|
|
58
58
|
export declare class ValidationException extends __BaseException {
|
|
@@ -85,7 +85,7 @@ export interface StartAudienceExportJobRequest {
|
|
|
85
85
|
name: string | undefined;
|
|
86
86
|
audienceGenerationJobArn: string | undefined;
|
|
87
87
|
audienceSize: AudienceSize | undefined;
|
|
88
|
-
description?: string;
|
|
88
|
+
description?: string | undefined;
|
|
89
89
|
}
|
|
90
90
|
export interface DeleteAudienceGenerationJobRequest {
|
|
91
91
|
audienceGenerationJobArn: string | undefined;
|
|
@@ -95,21 +95,21 @@ export interface GetAudienceGenerationJobRequest {
|
|
|
95
95
|
}
|
|
96
96
|
export interface RelevanceMetric {
|
|
97
97
|
audienceSize: AudienceSize | undefined;
|
|
98
|
-
score?: number;
|
|
98
|
+
score?: number | undefined;
|
|
99
99
|
}
|
|
100
100
|
export interface AudienceQualityMetrics {
|
|
101
101
|
relevanceMetrics: RelevanceMetric[] | undefined;
|
|
102
|
-
recallMetric?: number;
|
|
102
|
+
recallMetric?: number | undefined;
|
|
103
103
|
}
|
|
104
104
|
export interface ProtectedQuerySQLParameters {
|
|
105
|
-
queryString?: string;
|
|
106
|
-
analysisTemplateArn?: string;
|
|
107
|
-
parameters?: Record<string, string
|
|
105
|
+
queryString?: string | undefined;
|
|
106
|
+
analysisTemplateArn?: string | undefined;
|
|
107
|
+
parameters?: Record<string, string> | undefined;
|
|
108
108
|
}
|
|
109
109
|
export interface AudienceGenerationJobDataSource {
|
|
110
|
-
dataSource?: S3ConfigMap;
|
|
110
|
+
dataSource?: S3ConfigMap | undefined;
|
|
111
111
|
roleArn: string | undefined;
|
|
112
|
-
sqlParameters?: ProtectedQuerySQLParameters;
|
|
112
|
+
sqlParameters?: ProtectedQuerySQLParameters | undefined;
|
|
113
113
|
}
|
|
114
114
|
export declare const AudienceGenerationJobStatus: {
|
|
115
115
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -127,59 +127,59 @@ export interface GetAudienceGenerationJobResponse {
|
|
|
127
127
|
updateTime: Date | undefined;
|
|
128
128
|
audienceGenerationJobArn: string | undefined;
|
|
129
129
|
name: string | undefined;
|
|
130
|
-
description?: string;
|
|
130
|
+
description?: string | undefined;
|
|
131
131
|
status: AudienceGenerationJobStatus | undefined;
|
|
132
|
-
statusDetails?: StatusDetails;
|
|
132
|
+
statusDetails?: StatusDetails | undefined;
|
|
133
133
|
configuredAudienceModelArn: string | undefined;
|
|
134
|
-
seedAudience?: AudienceGenerationJobDataSource;
|
|
135
|
-
includeSeedInOutput?: boolean;
|
|
136
|
-
collaborationId?: string;
|
|
137
|
-
metrics?: AudienceQualityMetrics;
|
|
138
|
-
startedBy?: string;
|
|
139
|
-
tags?: Record<string, string
|
|
140
|
-
protectedQueryIdentifier?: string;
|
|
134
|
+
seedAudience?: AudienceGenerationJobDataSource | undefined;
|
|
135
|
+
includeSeedInOutput?: boolean | undefined;
|
|
136
|
+
collaborationId?: string | undefined;
|
|
137
|
+
metrics?: AudienceQualityMetrics | undefined;
|
|
138
|
+
startedBy?: string | undefined;
|
|
139
|
+
tags?: Record<string, string> | undefined;
|
|
140
|
+
protectedQueryIdentifier?: string | undefined;
|
|
141
141
|
}
|
|
142
142
|
export interface ListAudienceGenerationJobsRequest {
|
|
143
|
-
nextToken?: string;
|
|
144
|
-
maxResults?: number;
|
|
145
|
-
configuredAudienceModelArn?: string;
|
|
146
|
-
collaborationId?: string;
|
|
143
|
+
nextToken?: string | undefined;
|
|
144
|
+
maxResults?: number | undefined;
|
|
145
|
+
configuredAudienceModelArn?: string | undefined;
|
|
146
|
+
collaborationId?: string | undefined;
|
|
147
147
|
}
|
|
148
148
|
export interface AudienceGenerationJobSummary {
|
|
149
149
|
createTime: Date | undefined;
|
|
150
150
|
updateTime: Date | undefined;
|
|
151
151
|
audienceGenerationJobArn: string | undefined;
|
|
152
152
|
name: string | undefined;
|
|
153
|
-
description?: string;
|
|
153
|
+
description?: string | undefined;
|
|
154
154
|
status: AudienceGenerationJobStatus | undefined;
|
|
155
155
|
configuredAudienceModelArn: string | undefined;
|
|
156
|
-
collaborationId?: string;
|
|
157
|
-
startedBy?: string;
|
|
156
|
+
collaborationId?: string | undefined;
|
|
157
|
+
startedBy?: string | undefined;
|
|
158
158
|
}
|
|
159
159
|
export interface ListAudienceGenerationJobsResponse {
|
|
160
|
-
nextToken?: string;
|
|
160
|
+
nextToken?: string | undefined;
|
|
161
161
|
audienceGenerationJobs: AudienceGenerationJobSummary[] | undefined;
|
|
162
162
|
}
|
|
163
163
|
export interface StartAudienceGenerationJobRequest {
|
|
164
164
|
name: string | undefined;
|
|
165
165
|
configuredAudienceModelArn: string | undefined;
|
|
166
166
|
seedAudience: AudienceGenerationJobDataSource | undefined;
|
|
167
|
-
includeSeedInOutput?: boolean;
|
|
168
|
-
collaborationId?: string;
|
|
169
|
-
description?: string;
|
|
170
|
-
tags?: Record<string, string
|
|
167
|
+
includeSeedInOutput?: boolean | undefined;
|
|
168
|
+
collaborationId?: string | undefined;
|
|
169
|
+
description?: string | undefined;
|
|
170
|
+
tags?: Record<string, string> | undefined;
|
|
171
171
|
}
|
|
172
172
|
export interface StartAudienceGenerationJobResponse {
|
|
173
173
|
audienceGenerationJobArn: string | undefined;
|
|
174
174
|
}
|
|
175
175
|
export interface CreateAudienceModelRequest {
|
|
176
|
-
trainingDataStartTime?: Date;
|
|
177
|
-
trainingDataEndTime?: Date;
|
|
176
|
+
trainingDataStartTime?: Date | undefined;
|
|
177
|
+
trainingDataEndTime?: Date | undefined;
|
|
178
178
|
name: string | undefined;
|
|
179
179
|
trainingDatasetArn: string | undefined;
|
|
180
|
-
kmsKeyArn?: string;
|
|
181
|
-
tags?: Record<string, string
|
|
182
|
-
description?: string;
|
|
180
|
+
kmsKeyArn?: string | undefined;
|
|
181
|
+
tags?: Record<string, string> | undefined;
|
|
182
|
+
description?: string | undefined;
|
|
183
183
|
}
|
|
184
184
|
export interface CreateAudienceModelResponse {
|
|
185
185
|
audienceModelArn: string | undefined;
|
|
@@ -204,20 +204,20 @@ export type AudienceModelStatus =
|
|
|
204
204
|
export interface GetAudienceModelResponse {
|
|
205
205
|
createTime: Date | undefined;
|
|
206
206
|
updateTime: Date | undefined;
|
|
207
|
-
trainingDataStartTime?: Date;
|
|
208
|
-
trainingDataEndTime?: Date;
|
|
207
|
+
trainingDataStartTime?: Date | undefined;
|
|
208
|
+
trainingDataEndTime?: Date | undefined;
|
|
209
209
|
audienceModelArn: string | undefined;
|
|
210
210
|
name: string | undefined;
|
|
211
211
|
trainingDatasetArn: string | undefined;
|
|
212
212
|
status: AudienceModelStatus | undefined;
|
|
213
|
-
statusDetails?: StatusDetails;
|
|
214
|
-
kmsKeyArn?: string;
|
|
215
|
-
tags?: Record<string, string
|
|
216
|
-
description?: string;
|
|
213
|
+
statusDetails?: StatusDetails | undefined;
|
|
214
|
+
kmsKeyArn?: string | undefined;
|
|
215
|
+
tags?: Record<string, string> | undefined;
|
|
216
|
+
description?: string | undefined;
|
|
217
217
|
}
|
|
218
218
|
export interface ListAudienceModelsRequest {
|
|
219
|
-
nextToken?: string;
|
|
220
|
-
maxResults?: number;
|
|
219
|
+
nextToken?: string | undefined;
|
|
220
|
+
maxResults?: number | undefined;
|
|
221
221
|
}
|
|
222
222
|
export interface AudienceModelSummary {
|
|
223
223
|
createTime: Date | undefined;
|
|
@@ -226,10 +226,10 @@ export interface AudienceModelSummary {
|
|
|
226
226
|
name: string | undefined;
|
|
227
227
|
trainingDatasetArn: string | undefined;
|
|
228
228
|
status: AudienceModelStatus | undefined;
|
|
229
|
-
description?: string;
|
|
229
|
+
description?: string | undefined;
|
|
230
230
|
}
|
|
231
231
|
export interface ListAudienceModelsResponse {
|
|
232
|
-
nextToken?: string;
|
|
232
|
+
nextToken?: string | undefined;
|
|
233
233
|
audienceModels: AudienceModelSummary[] | undefined;
|
|
234
234
|
}
|
|
235
235
|
export interface AudienceSizeConfig {
|
|
@@ -256,12 +256,12 @@ export interface CreateConfiguredAudienceModelRequest {
|
|
|
256
256
|
name: string | undefined;
|
|
257
257
|
audienceModelArn: string | undefined;
|
|
258
258
|
outputConfig: ConfiguredAudienceModelOutputConfig | undefined;
|
|
259
|
-
description?: string;
|
|
259
|
+
description?: string | undefined;
|
|
260
260
|
sharedAudienceMetrics: SharedAudienceMetrics[] | undefined;
|
|
261
|
-
minMatchingSeedSize?: number;
|
|
262
|
-
audienceSizeConfig?: AudienceSizeConfig;
|
|
263
|
-
tags?: Record<string, string
|
|
264
|
-
childResourceTagOnCreatePolicy?: TagOnCreatePolicy;
|
|
261
|
+
minMatchingSeedSize?: number | undefined;
|
|
262
|
+
audienceSizeConfig?: AudienceSizeConfig | undefined;
|
|
263
|
+
tags?: Record<string, string> | undefined;
|
|
264
|
+
childResourceTagOnCreatePolicy?: TagOnCreatePolicy | undefined;
|
|
265
265
|
}
|
|
266
266
|
export interface CreateConfiguredAudienceModelResponse {
|
|
267
267
|
configuredAudienceModelArn: string | undefined;
|
|
@@ -284,17 +284,17 @@ export interface GetConfiguredAudienceModelResponse {
|
|
|
284
284
|
name: string | undefined;
|
|
285
285
|
audienceModelArn: string | undefined;
|
|
286
286
|
outputConfig: ConfiguredAudienceModelOutputConfig | undefined;
|
|
287
|
-
description?: string;
|
|
287
|
+
description?: string | undefined;
|
|
288
288
|
status: ConfiguredAudienceModelStatus | undefined;
|
|
289
289
|
sharedAudienceMetrics: SharedAudienceMetrics[] | undefined;
|
|
290
|
-
minMatchingSeedSize?: number;
|
|
291
|
-
audienceSizeConfig?: AudienceSizeConfig;
|
|
292
|
-
tags?: Record<string, string
|
|
293
|
-
childResourceTagOnCreatePolicy?: TagOnCreatePolicy;
|
|
290
|
+
minMatchingSeedSize?: number | undefined;
|
|
291
|
+
audienceSizeConfig?: AudienceSizeConfig | undefined;
|
|
292
|
+
tags?: Record<string, string> | undefined;
|
|
293
|
+
childResourceTagOnCreatePolicy?: TagOnCreatePolicy | undefined;
|
|
294
294
|
}
|
|
295
295
|
export interface ListConfiguredAudienceModelsRequest {
|
|
296
|
-
nextToken?: string;
|
|
297
|
-
maxResults?: number;
|
|
296
|
+
nextToken?: string | undefined;
|
|
297
|
+
maxResults?: number | undefined;
|
|
298
298
|
}
|
|
299
299
|
export interface ConfiguredAudienceModelSummary {
|
|
300
300
|
createTime: Date | undefined;
|
|
@@ -302,22 +302,22 @@ export interface ConfiguredAudienceModelSummary {
|
|
|
302
302
|
name: string | undefined;
|
|
303
303
|
audienceModelArn: string | undefined;
|
|
304
304
|
outputConfig: ConfiguredAudienceModelOutputConfig | undefined;
|
|
305
|
-
description?: string;
|
|
305
|
+
description?: string | undefined;
|
|
306
306
|
configuredAudienceModelArn: string | undefined;
|
|
307
307
|
status: ConfiguredAudienceModelStatus | undefined;
|
|
308
308
|
}
|
|
309
309
|
export interface ListConfiguredAudienceModelsResponse {
|
|
310
|
-
nextToken?: string;
|
|
310
|
+
nextToken?: string | undefined;
|
|
311
311
|
configuredAudienceModels: ConfiguredAudienceModelSummary[] | undefined;
|
|
312
312
|
}
|
|
313
313
|
export interface UpdateConfiguredAudienceModelRequest {
|
|
314
314
|
configuredAudienceModelArn: string | undefined;
|
|
315
|
-
outputConfig?: ConfiguredAudienceModelOutputConfig;
|
|
316
|
-
audienceModelArn?: string;
|
|
317
|
-
sharedAudienceMetrics?: SharedAudienceMetrics[];
|
|
318
|
-
minMatchingSeedSize?: number;
|
|
319
|
-
audienceSizeConfig?: AudienceSizeConfig;
|
|
320
|
-
description?: string;
|
|
315
|
+
outputConfig?: ConfiguredAudienceModelOutputConfig | undefined;
|
|
316
|
+
audienceModelArn?: string | undefined;
|
|
317
|
+
sharedAudienceMetrics?: SharedAudienceMetrics[] | undefined;
|
|
318
|
+
minMatchingSeedSize?: number | undefined;
|
|
319
|
+
audienceSizeConfig?: AudienceSizeConfig | undefined;
|
|
320
|
+
description?: string | undefined;
|
|
321
321
|
}
|
|
322
322
|
export interface UpdateConfiguredAudienceModelResponse {
|
|
323
323
|
configuredAudienceModelArn: string | undefined;
|
|
@@ -342,8 +342,8 @@ export type PolicyExistenceCondition =
|
|
|
342
342
|
export interface PutConfiguredAudienceModelPolicyRequest {
|
|
343
343
|
configuredAudienceModelArn: string | undefined;
|
|
344
344
|
configuredAudienceModelPolicy: string | undefined;
|
|
345
|
-
previousPolicyHash?: string;
|
|
346
|
-
policyExistenceCondition?: PolicyExistenceCondition;
|
|
345
|
+
previousPolicyHash?: string | undefined;
|
|
346
|
+
policyExistenceCondition?: PolicyExistenceCondition | undefined;
|
|
347
347
|
}
|
|
348
348
|
export interface PutConfiguredAudienceModelPolicyResponse {
|
|
349
349
|
configuredAudienceModelPolicy: string | undefined;
|
|
@@ -358,18 +358,18 @@ export interface MetricDefinition {
|
|
|
358
358
|
}
|
|
359
359
|
export interface ContainerConfig {
|
|
360
360
|
imageUri: string | undefined;
|
|
361
|
-
entrypoint?: string[];
|
|
362
|
-
arguments?: string[];
|
|
363
|
-
metricDefinitions?: MetricDefinition[];
|
|
361
|
+
entrypoint?: string[] | undefined;
|
|
362
|
+
arguments?: string[] | undefined;
|
|
363
|
+
metricDefinitions?: MetricDefinition[] | undefined;
|
|
364
364
|
}
|
|
365
365
|
export interface CreateConfiguredModelAlgorithmRequest {
|
|
366
366
|
name: string | undefined;
|
|
367
|
-
description?: string;
|
|
367
|
+
description?: string | undefined;
|
|
368
368
|
roleArn: string | undefined;
|
|
369
|
-
trainingContainerConfig?: ContainerConfig;
|
|
370
|
-
inferenceContainerConfig?: InferenceContainerConfig;
|
|
371
|
-
tags?: Record<string, string
|
|
372
|
-
kmsKeyArn?: string;
|
|
369
|
+
trainingContainerConfig?: ContainerConfig | undefined;
|
|
370
|
+
inferenceContainerConfig?: InferenceContainerConfig | undefined;
|
|
371
|
+
tags?: Record<string, string> | undefined;
|
|
372
|
+
kmsKeyArn?: string | undefined;
|
|
373
373
|
}
|
|
374
374
|
export interface CreateConfiguredModelAlgorithmResponse {
|
|
375
375
|
configuredModelAlgorithmArn: string | undefined;
|
|
@@ -385,26 +385,26 @@ export interface GetConfiguredModelAlgorithmResponse {
|
|
|
385
385
|
updateTime: Date | undefined;
|
|
386
386
|
configuredModelAlgorithmArn: string | undefined;
|
|
387
387
|
name: string | undefined;
|
|
388
|
-
trainingContainerConfig?: ContainerConfig;
|
|
389
|
-
inferenceContainerConfig?: InferenceContainerConfig;
|
|
388
|
+
trainingContainerConfig?: ContainerConfig | undefined;
|
|
389
|
+
inferenceContainerConfig?: InferenceContainerConfig | undefined;
|
|
390
390
|
roleArn: string | undefined;
|
|
391
|
-
description?: string;
|
|
392
|
-
tags?: Record<string, string
|
|
393
|
-
kmsKeyArn?: string;
|
|
391
|
+
description?: string | undefined;
|
|
392
|
+
tags?: Record<string, string> | undefined;
|
|
393
|
+
kmsKeyArn?: string | undefined;
|
|
394
394
|
}
|
|
395
395
|
export interface ListConfiguredModelAlgorithmsRequest {
|
|
396
|
-
nextToken?: string;
|
|
397
|
-
maxResults?: number;
|
|
396
|
+
nextToken?: string | undefined;
|
|
397
|
+
maxResults?: number | undefined;
|
|
398
398
|
}
|
|
399
399
|
export interface ConfiguredModelAlgorithmSummary {
|
|
400
400
|
createTime: Date | undefined;
|
|
401
401
|
updateTime: Date | undefined;
|
|
402
402
|
configuredModelAlgorithmArn: string | undefined;
|
|
403
403
|
name: string | undefined;
|
|
404
|
-
description?: string;
|
|
404
|
+
description?: string | undefined;
|
|
405
405
|
}
|
|
406
406
|
export interface ListConfiguredModelAlgorithmsResponse {
|
|
407
|
-
nextToken?: string;
|
|
407
|
+
nextToken?: string | undefined;
|
|
408
408
|
configuredModelAlgorithms: ConfiguredModelAlgorithmSummary[] | undefined;
|
|
409
409
|
}
|
|
410
410
|
export declare const TrainedModelExportFileType: {
|
|
@@ -428,7 +428,7 @@ export interface TrainedModelExportsConfigurationPolicy {
|
|
|
428
428
|
}
|
|
429
429
|
export interface LogsConfigurationPolicy {
|
|
430
430
|
allowedAccountIds: string[] | undefined;
|
|
431
|
-
filterPattern?: string;
|
|
431
|
+
filterPattern?: string | undefined;
|
|
432
432
|
}
|
|
433
433
|
export declare const TrainedModelInferenceMaxOutputSizeUnitType: {
|
|
434
434
|
readonly GB: "GB";
|
|
@@ -440,8 +440,8 @@ export interface TrainedModelInferenceMaxOutputSize {
|
|
|
440
440
|
value: number | undefined;
|
|
441
441
|
}
|
|
442
442
|
export interface TrainedModelInferenceJobsConfigurationPolicy {
|
|
443
|
-
containerLogs?: LogsConfigurationPolicy[];
|
|
444
|
-
maxOutputSize?: TrainedModelInferenceMaxOutputSize;
|
|
443
|
+
containerLogs?: LogsConfigurationPolicy[] | undefined;
|
|
444
|
+
maxOutputSize?: TrainedModelInferenceMaxOutputSize | undefined;
|
|
445
445
|
}
|
|
446
446
|
export declare const NoiseLevelType: {
|
|
447
447
|
readonly HIGH: "HIGH";
|
|
@@ -455,13 +455,15 @@ export interface MetricsConfigurationPolicy {
|
|
|
455
455
|
noiseLevel: NoiseLevelType | undefined;
|
|
456
456
|
}
|
|
457
457
|
export interface TrainedModelsConfigurationPolicy {
|
|
458
|
-
containerLogs?: LogsConfigurationPolicy[];
|
|
459
|
-
containerMetrics?: MetricsConfigurationPolicy;
|
|
458
|
+
containerLogs?: LogsConfigurationPolicy[] | undefined;
|
|
459
|
+
containerMetrics?: MetricsConfigurationPolicy | undefined;
|
|
460
460
|
}
|
|
461
461
|
export interface PrivacyConfigurationPolicies {
|
|
462
|
-
trainedModels?: TrainedModelsConfigurationPolicy;
|
|
463
|
-
trainedModelExports?: TrainedModelExportsConfigurationPolicy;
|
|
464
|
-
trainedModelInferenceJobs?:
|
|
462
|
+
trainedModels?: TrainedModelsConfigurationPolicy | undefined;
|
|
463
|
+
trainedModelExports?: TrainedModelExportsConfigurationPolicy | undefined;
|
|
464
|
+
trainedModelInferenceJobs?:
|
|
465
|
+
| TrainedModelInferenceJobsConfigurationPolicy
|
|
466
|
+
| undefined;
|
|
465
467
|
}
|
|
466
468
|
export interface PrivacyConfiguration {
|
|
467
469
|
policies: PrivacyConfigurationPolicies | undefined;
|
|
@@ -470,9 +472,9 @@ export interface CreateConfiguredModelAlgorithmAssociationRequest {
|
|
|
470
472
|
membershipIdentifier: string | undefined;
|
|
471
473
|
configuredModelAlgorithmArn: string | undefined;
|
|
472
474
|
name: string | undefined;
|
|
473
|
-
description?: string;
|
|
474
|
-
privacyConfiguration?: PrivacyConfiguration;
|
|
475
|
-
tags?: Record<string, string
|
|
475
|
+
description?: string | undefined;
|
|
476
|
+
privacyConfiguration?: PrivacyConfiguration | undefined;
|
|
477
|
+
tags?: Record<string, string> | undefined;
|
|
476
478
|
}
|
|
477
479
|
export interface CreateConfiguredModelAlgorithmAssociationResponse {
|
|
478
480
|
configuredModelAlgorithmAssociationArn: string | undefined;
|
|
@@ -493,9 +495,9 @@ export interface GetCollaborationConfiguredModelAlgorithmAssociationResponse {
|
|
|
493
495
|
collaborationIdentifier: string | undefined;
|
|
494
496
|
configuredModelAlgorithmArn: string | undefined;
|
|
495
497
|
name: string | undefined;
|
|
496
|
-
description?: string;
|
|
498
|
+
description?: string | undefined;
|
|
497
499
|
creatorAccountId: string | undefined;
|
|
498
|
-
privacyConfiguration?: PrivacyConfiguration;
|
|
500
|
+
privacyConfiguration?: PrivacyConfiguration | undefined;
|
|
499
501
|
}
|
|
500
502
|
export interface GetConfiguredModelAlgorithmAssociationRequest {
|
|
501
503
|
configuredModelAlgorithmAssociationArn: string | undefined;
|
|
@@ -509,13 +511,13 @@ export interface GetConfiguredModelAlgorithmAssociationResponse {
|
|
|
509
511
|
collaborationIdentifier: string | undefined;
|
|
510
512
|
configuredModelAlgorithmArn: string | undefined;
|
|
511
513
|
name: string | undefined;
|
|
512
|
-
privacyConfiguration?: PrivacyConfiguration;
|
|
513
|
-
description?: string;
|
|
514
|
-
tags?: Record<string, string
|
|
514
|
+
privacyConfiguration?: PrivacyConfiguration | undefined;
|
|
515
|
+
description?: string | undefined;
|
|
516
|
+
tags?: Record<string, string> | undefined;
|
|
515
517
|
}
|
|
516
518
|
export interface ListConfiguredModelAlgorithmAssociationsRequest {
|
|
517
|
-
nextToken?: string;
|
|
518
|
-
maxResults?: number;
|
|
519
|
+
nextToken?: string | undefined;
|
|
520
|
+
maxResults?: number | undefined;
|
|
519
521
|
membershipIdentifier: string | undefined;
|
|
520
522
|
}
|
|
521
523
|
export interface ConfiguredModelAlgorithmAssociationSummary {
|
|
@@ -524,19 +526,19 @@ export interface ConfiguredModelAlgorithmAssociationSummary {
|
|
|
524
526
|
configuredModelAlgorithmAssociationArn: string | undefined;
|
|
525
527
|
configuredModelAlgorithmArn: string | undefined;
|
|
526
528
|
name: string | undefined;
|
|
527
|
-
description?: string;
|
|
529
|
+
description?: string | undefined;
|
|
528
530
|
membershipIdentifier: string | undefined;
|
|
529
531
|
collaborationIdentifier: string | undefined;
|
|
530
532
|
}
|
|
531
533
|
export interface ListConfiguredModelAlgorithmAssociationsResponse {
|
|
532
|
-
nextToken?: string;
|
|
534
|
+
nextToken?: string | undefined;
|
|
533
535
|
configuredModelAlgorithmAssociations:
|
|
534
536
|
| ConfiguredModelAlgorithmAssociationSummary[]
|
|
535
537
|
| undefined;
|
|
536
538
|
}
|
|
537
539
|
export interface ListCollaborationConfiguredModelAlgorithmAssociationsRequest {
|
|
538
|
-
nextToken?: string;
|
|
539
|
-
maxResults?: number;
|
|
540
|
+
nextToken?: string | undefined;
|
|
541
|
+
maxResults?: number | undefined;
|
|
540
542
|
collaborationIdentifier: string | undefined;
|
|
541
543
|
}
|
|
542
544
|
export interface CollaborationConfiguredModelAlgorithmAssociationSummary {
|
|
@@ -544,21 +546,21 @@ export interface CollaborationConfiguredModelAlgorithmAssociationSummary {
|
|
|
544
546
|
updateTime: Date | undefined;
|
|
545
547
|
configuredModelAlgorithmAssociationArn: string | undefined;
|
|
546
548
|
name: string | undefined;
|
|
547
|
-
description?: string;
|
|
549
|
+
description?: string | undefined;
|
|
548
550
|
membershipIdentifier: string | undefined;
|
|
549
551
|
collaborationIdentifier: string | undefined;
|
|
550
552
|
configuredModelAlgorithmArn: string | undefined;
|
|
551
553
|
creatorAccountId: string | undefined;
|
|
552
554
|
}
|
|
553
555
|
export interface ListCollaborationConfiguredModelAlgorithmAssociationsResponse {
|
|
554
|
-
nextToken?: string;
|
|
556
|
+
nextToken?: string | undefined;
|
|
555
557
|
collaborationConfiguredModelAlgorithmAssociations:
|
|
556
558
|
| CollaborationConfiguredModelAlgorithmAssociationSummary[]
|
|
557
559
|
| undefined;
|
|
558
560
|
}
|
|
559
561
|
export interface ListCollaborationMLInputChannelsRequest {
|
|
560
|
-
nextToken?: string;
|
|
561
|
-
maxResults?: number;
|
|
562
|
+
nextToken?: string | undefined;
|
|
563
|
+
maxResults?: number | undefined;
|
|
562
564
|
collaborationIdentifier: string | undefined;
|
|
563
565
|
}
|
|
564
566
|
export declare const MLInputChannelStatus: {
|
|
@@ -583,17 +585,17 @@ export interface CollaborationMLInputChannelSummary {
|
|
|
583
585
|
mlInputChannelArn: string | undefined;
|
|
584
586
|
status: MLInputChannelStatus | undefined;
|
|
585
587
|
creatorAccountId: string | undefined;
|
|
586
|
-
description?: string;
|
|
588
|
+
description?: string | undefined;
|
|
587
589
|
}
|
|
588
590
|
export interface ListCollaborationMLInputChannelsResponse {
|
|
589
|
-
nextToken?: string;
|
|
591
|
+
nextToken?: string | undefined;
|
|
590
592
|
collaborationMLInputChannelsList:
|
|
591
593
|
| CollaborationMLInputChannelSummary[]
|
|
592
594
|
| undefined;
|
|
593
595
|
}
|
|
594
596
|
export interface ListCollaborationTrainedModelExportJobsRequest {
|
|
595
|
-
nextToken?: string;
|
|
596
|
-
maxResults?: number;
|
|
597
|
+
nextToken?: string | undefined;
|
|
598
|
+
maxResults?: number | undefined;
|
|
597
599
|
collaborationIdentifier: string | undefined;
|
|
598
600
|
trainedModelArn: string | undefined;
|
|
599
601
|
}
|
|
@@ -617,24 +619,24 @@ export interface CollaborationTrainedModelExportJobSummary {
|
|
|
617
619
|
name: string | undefined;
|
|
618
620
|
outputConfiguration: TrainedModelExportOutputConfiguration | undefined;
|
|
619
621
|
status: TrainedModelExportJobStatus | undefined;
|
|
620
|
-
statusDetails?: StatusDetails;
|
|
621
|
-
description?: string;
|
|
622
|
+
statusDetails?: StatusDetails | undefined;
|
|
623
|
+
description?: string | undefined;
|
|
622
624
|
creatorAccountId: string | undefined;
|
|
623
625
|
trainedModelArn: string | undefined;
|
|
624
626
|
membershipIdentifier: string | undefined;
|
|
625
627
|
collaborationIdentifier: string | undefined;
|
|
626
628
|
}
|
|
627
629
|
export interface ListCollaborationTrainedModelExportJobsResponse {
|
|
628
|
-
nextToken?: string;
|
|
630
|
+
nextToken?: string | undefined;
|
|
629
631
|
collaborationTrainedModelExportJobs:
|
|
630
632
|
| CollaborationTrainedModelExportJobSummary[]
|
|
631
633
|
| undefined;
|
|
632
634
|
}
|
|
633
635
|
export interface ListCollaborationTrainedModelInferenceJobsRequest {
|
|
634
|
-
nextToken?: string;
|
|
635
|
-
maxResults?: number;
|
|
636
|
+
nextToken?: string | undefined;
|
|
637
|
+
maxResults?: number | undefined;
|
|
636
638
|
collaborationIdentifier: string | undefined;
|
|
637
|
-
trainedModelArn?: string;
|
|
639
|
+
trainedModelArn?: string | undefined;
|
|
638
640
|
}
|
|
639
641
|
export declare const LogsStatus: {
|
|
640
642
|
readonly PUBLISH_FAILED: "PUBLISH_FAILED";
|
|
@@ -650,7 +652,7 @@ export interface InferenceReceiverMember {
|
|
|
650
652
|
accountId: string | undefined;
|
|
651
653
|
}
|
|
652
654
|
export interface InferenceOutputConfiguration {
|
|
653
|
-
accept?: string;
|
|
655
|
+
accept?: string | undefined;
|
|
654
656
|
members: InferenceReceiverMember[] | undefined;
|
|
655
657
|
}
|
|
656
658
|
export declare const TrainedModelInferenceJobStatus: {
|
|
@@ -667,31 +669,31 @@ export type TrainedModelInferenceJobStatus =
|
|
|
667
669
|
(typeof TrainedModelInferenceJobStatus)[keyof typeof TrainedModelInferenceJobStatus];
|
|
668
670
|
export interface CollaborationTrainedModelInferenceJobSummary {
|
|
669
671
|
trainedModelInferenceJobArn: string | undefined;
|
|
670
|
-
configuredModelAlgorithmAssociationArn?: string;
|
|
672
|
+
configuredModelAlgorithmAssociationArn?: string | undefined;
|
|
671
673
|
membershipIdentifier: string | undefined;
|
|
672
674
|
trainedModelArn: string | undefined;
|
|
673
675
|
collaborationIdentifier: string | undefined;
|
|
674
676
|
status: TrainedModelInferenceJobStatus | undefined;
|
|
675
677
|
outputConfiguration: InferenceOutputConfiguration | undefined;
|
|
676
678
|
name: string | undefined;
|
|
677
|
-
description?: string;
|
|
678
|
-
metricsStatus?: MetricsStatus;
|
|
679
|
-
metricsStatusDetails?: string;
|
|
680
|
-
logsStatus?: LogsStatus;
|
|
681
|
-
logsStatusDetails?: string;
|
|
679
|
+
description?: string | undefined;
|
|
680
|
+
metricsStatus?: MetricsStatus | undefined;
|
|
681
|
+
metricsStatusDetails?: string | undefined;
|
|
682
|
+
logsStatus?: LogsStatus | undefined;
|
|
683
|
+
logsStatusDetails?: string | undefined;
|
|
682
684
|
createTime: Date | undefined;
|
|
683
685
|
updateTime: Date | undefined;
|
|
684
686
|
creatorAccountId: string | undefined;
|
|
685
687
|
}
|
|
686
688
|
export interface ListCollaborationTrainedModelInferenceJobsResponse {
|
|
687
|
-
nextToken?: string;
|
|
689
|
+
nextToken?: string | undefined;
|
|
688
690
|
collaborationTrainedModelInferenceJobs:
|
|
689
691
|
| CollaborationTrainedModelInferenceJobSummary[]
|
|
690
692
|
| undefined;
|
|
691
693
|
}
|
|
692
694
|
export interface ListCollaborationTrainedModelsRequest {
|
|
693
|
-
nextToken?: string;
|
|
694
|
-
maxResults?: number;
|
|
695
|
+
nextToken?: string | undefined;
|
|
696
|
+
maxResults?: number | undefined;
|
|
695
697
|
collaborationIdentifier: string | undefined;
|
|
696
698
|
}
|
|
697
699
|
export declare const TrainedModelStatus: {
|
|
@@ -714,7 +716,7 @@ export interface CollaborationTrainedModelSummary {
|
|
|
714
716
|
updateTime: Date | undefined;
|
|
715
717
|
trainedModelArn: string | undefined;
|
|
716
718
|
name: string | undefined;
|
|
717
|
-
description?: string;
|
|
719
|
+
description?: string | undefined;
|
|
718
720
|
membershipIdentifier: string | undefined;
|
|
719
721
|
collaborationIdentifier: string | undefined;
|
|
720
722
|
status: TrainedModelStatus | undefined;
|
|
@@ -722,7 +724,7 @@ export interface CollaborationTrainedModelSummary {
|
|
|
722
724
|
creatorAccountId: string | undefined;
|
|
723
725
|
}
|
|
724
726
|
export interface ListCollaborationTrainedModelsResponse {
|
|
725
|
-
nextToken?: string;
|
|
727
|
+
nextToken?: string | undefined;
|
|
726
728
|
collaborationTrainedModels: CollaborationTrainedModelSummary[] | undefined;
|
|
727
729
|
}
|
|
728
730
|
export interface ListTagsForResourceRequest {
|
|
@@ -741,7 +743,7 @@ export interface Destination {
|
|
|
741
743
|
s3Destination: S3ConfigMap | undefined;
|
|
742
744
|
}
|
|
743
745
|
export interface MLOutputConfiguration {
|
|
744
|
-
destination?: Destination;
|
|
746
|
+
destination?: Destination | undefined;
|
|
745
747
|
roleArn: string | undefined;
|
|
746
748
|
}
|
|
747
749
|
export interface GetMLConfigurationResponse {
|
|
@@ -761,8 +763,8 @@ export declare const WorkerComputeType: {
|
|
|
761
763
|
export type WorkerComputeType =
|
|
762
764
|
(typeof WorkerComputeType)[keyof typeof WorkerComputeType];
|
|
763
765
|
export interface WorkerComputeConfiguration {
|
|
764
|
-
type?: WorkerComputeType;
|
|
765
|
-
number?: number;
|
|
766
|
+
type?: WorkerComputeType | undefined;
|
|
767
|
+
number?: number | undefined;
|
|
766
768
|
}
|
|
767
769
|
export type ComputeConfiguration =
|
|
768
770
|
| ComputeConfiguration.WorkerMember
|
|
@@ -784,7 +786,7 @@ export declare namespace ComputeConfiguration {
|
|
|
784
786
|
}
|
|
785
787
|
export interface ProtectedQueryInputParameters {
|
|
786
788
|
sqlParameters: ProtectedQuerySQLParameters | undefined;
|
|
787
|
-
computeConfiguration?: ComputeConfiguration;
|
|
789
|
+
computeConfiguration?: ComputeConfiguration | undefined;
|
|
788
790
|
}
|
|
789
791
|
export type InputChannelDataSource =
|
|
790
792
|
| InputChannelDataSource.ProtectedQueryInputParametersMember
|
|
@@ -814,9 +816,9 @@ export interface CreateMLInputChannelRequest {
|
|
|
814
816
|
inputChannel: InputChannel | undefined;
|
|
815
817
|
name: string | undefined;
|
|
816
818
|
retentionInDays: number | undefined;
|
|
817
|
-
description?: string;
|
|
818
|
-
kmsKeyArn?: string;
|
|
819
|
-
tags?: Record<string, string
|
|
819
|
+
description?: string | undefined;
|
|
820
|
+
kmsKeyArn?: string | undefined;
|
|
821
|
+
tags?: Record<string, string> | undefined;
|
|
820
822
|
}
|
|
821
823
|
export interface CreateMLInputChannelResponse {
|
|
822
824
|
mlInputChannelArn: string | undefined;
|
|
@@ -839,10 +841,10 @@ export interface GetCollaborationMLInputChannelResponse {
|
|
|
839
841
|
name: string | undefined;
|
|
840
842
|
configuredModelAlgorithmAssociations: string[] | undefined;
|
|
841
843
|
status: MLInputChannelStatus | undefined;
|
|
842
|
-
statusDetails?: StatusDetails;
|
|
844
|
+
statusDetails?: StatusDetails | undefined;
|
|
843
845
|
retentionInDays: number | undefined;
|
|
844
|
-
numberOfRecords?: number;
|
|
845
|
-
description?: string;
|
|
846
|
+
numberOfRecords?: number | undefined;
|
|
847
|
+
description?: string | undefined;
|
|
846
848
|
}
|
|
847
849
|
export interface GetMLInputChannelRequest {
|
|
848
850
|
mlInputChannelArn: string | undefined;
|
|
@@ -854,23 +856,23 @@ export interface GetMLInputChannelResponse {
|
|
|
854
856
|
membershipIdentifier: string | undefined;
|
|
855
857
|
collaborationIdentifier: string | undefined;
|
|
856
858
|
inputChannel: InputChannel | undefined;
|
|
857
|
-
protectedQueryIdentifier?: string;
|
|
859
|
+
protectedQueryIdentifier?: string | undefined;
|
|
858
860
|
mlInputChannelArn: string | undefined;
|
|
859
861
|
name: string | undefined;
|
|
860
862
|
configuredModelAlgorithmAssociations: string[] | undefined;
|
|
861
863
|
status: MLInputChannelStatus | undefined;
|
|
862
|
-
statusDetails?: StatusDetails;
|
|
864
|
+
statusDetails?: StatusDetails | undefined;
|
|
863
865
|
retentionInDays: number | undefined;
|
|
864
|
-
numberOfRecords?: number;
|
|
865
|
-
numberOfFiles?: number;
|
|
866
|
-
sizeInGb?: number;
|
|
867
|
-
description?: string;
|
|
868
|
-
kmsKeyArn?: string;
|
|
869
|
-
tags?: Record<string, string
|
|
866
|
+
numberOfRecords?: number | undefined;
|
|
867
|
+
numberOfFiles?: number | undefined;
|
|
868
|
+
sizeInGb?: number | undefined;
|
|
869
|
+
description?: string | undefined;
|
|
870
|
+
kmsKeyArn?: string | undefined;
|
|
871
|
+
tags?: Record<string, string> | undefined;
|
|
870
872
|
}
|
|
871
873
|
export interface ListMLInputChannelsRequest {
|
|
872
|
-
nextToken?: string;
|
|
873
|
-
maxResults?: number;
|
|
874
|
+
nextToken?: string | undefined;
|
|
875
|
+
maxResults?: number | undefined;
|
|
874
876
|
membershipIdentifier: string | undefined;
|
|
875
877
|
}
|
|
876
878
|
export interface MLInputChannelSummary {
|
|
@@ -880,13 +882,13 @@ export interface MLInputChannelSummary {
|
|
|
880
882
|
collaborationIdentifier: string | undefined;
|
|
881
883
|
name: string | undefined;
|
|
882
884
|
configuredModelAlgorithmAssociations: string[] | undefined;
|
|
883
|
-
protectedQueryIdentifier?: string;
|
|
885
|
+
protectedQueryIdentifier?: string | undefined;
|
|
884
886
|
mlInputChannelArn: string | undefined;
|
|
885
887
|
status: MLInputChannelStatus | undefined;
|
|
886
|
-
description?: string;
|
|
888
|
+
description?: string | undefined;
|
|
887
889
|
}
|
|
888
890
|
export interface ListMLInputChannelsResponse {
|
|
889
|
-
nextToken?: string;
|
|
891
|
+
nextToken?: string | undefined;
|
|
890
892
|
mlInputChannelsList: MLInputChannelSummary[] | undefined;
|
|
891
893
|
}
|
|
892
894
|
export interface TagResourceRequest {
|
|
@@ -995,25 +997,25 @@ export declare const _InstanceType: {
|
|
|
995
997
|
};
|
|
996
998
|
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
997
999
|
export interface ResourceConfig {
|
|
998
|
-
instanceCount?: number;
|
|
1000
|
+
instanceCount?: number | undefined;
|
|
999
1001
|
instanceType: _InstanceType | undefined;
|
|
1000
1002
|
volumeSizeInGB: number | undefined;
|
|
1001
1003
|
}
|
|
1002
1004
|
export interface StoppingCondition {
|
|
1003
|
-
maxRuntimeInSeconds?: number;
|
|
1005
|
+
maxRuntimeInSeconds?: number | undefined;
|
|
1004
1006
|
}
|
|
1005
1007
|
export interface CreateTrainedModelRequest {
|
|
1006
1008
|
membershipIdentifier: string | undefined;
|
|
1007
1009
|
name: string | undefined;
|
|
1008
1010
|
configuredModelAlgorithmAssociationArn: string | undefined;
|
|
1009
|
-
hyperparameters?: Record<string, string
|
|
1010
|
-
environment?: Record<string, string
|
|
1011
|
+
hyperparameters?: Record<string, string> | undefined;
|
|
1012
|
+
environment?: Record<string, string> | undefined;
|
|
1011
1013
|
resourceConfig: ResourceConfig | undefined;
|
|
1012
|
-
stoppingCondition?: StoppingCondition;
|
|
1014
|
+
stoppingCondition?: StoppingCondition | undefined;
|
|
1013
1015
|
dataChannels: ModelTrainingDataChannel[] | undefined;
|
|
1014
|
-
description?: string;
|
|
1015
|
-
kmsKeyArn?: string;
|
|
1016
|
-
tags?: Record<string, string
|
|
1016
|
+
description?: string | undefined;
|
|
1017
|
+
kmsKeyArn?: string | undefined;
|
|
1018
|
+
tags?: Record<string, string> | undefined;
|
|
1017
1019
|
}
|
|
1018
1020
|
export interface CreateTrainedModelResponse {
|
|
1019
1021
|
trainedModelArn: string | undefined;
|
|
@@ -1031,17 +1033,17 @@ export interface GetCollaborationTrainedModelResponse {
|
|
|
1031
1033
|
collaborationIdentifier: string | undefined;
|
|
1032
1034
|
trainedModelArn: string | undefined;
|
|
1033
1035
|
name: string | undefined;
|
|
1034
|
-
description?: string;
|
|
1036
|
+
description?: string | undefined;
|
|
1035
1037
|
status: TrainedModelStatus | undefined;
|
|
1036
|
-
statusDetails?: StatusDetails;
|
|
1038
|
+
statusDetails?: StatusDetails | undefined;
|
|
1037
1039
|
configuredModelAlgorithmAssociationArn: string | undefined;
|
|
1038
|
-
resourceConfig?: ResourceConfig;
|
|
1039
|
-
stoppingCondition?: StoppingCondition;
|
|
1040
|
-
metricsStatus?: MetricsStatus;
|
|
1041
|
-
metricsStatusDetails?: string;
|
|
1042
|
-
logsStatus?: LogsStatus;
|
|
1043
|
-
logsStatusDetails?: string;
|
|
1044
|
-
trainingContainerImageDigest?: string;
|
|
1040
|
+
resourceConfig?: ResourceConfig | undefined;
|
|
1041
|
+
stoppingCondition?: StoppingCondition | undefined;
|
|
1042
|
+
metricsStatus?: MetricsStatus | undefined;
|
|
1043
|
+
metricsStatusDetails?: string | undefined;
|
|
1044
|
+
logsStatus?: LogsStatus | undefined;
|
|
1045
|
+
logsStatusDetails?: string | undefined;
|
|
1046
|
+
trainingContainerImageDigest?: string | undefined;
|
|
1045
1047
|
createTime: Date | undefined;
|
|
1046
1048
|
updateTime: Date | undefined;
|
|
1047
1049
|
creatorAccountId: string | undefined;
|
|
@@ -1055,28 +1057,28 @@ export interface GetTrainedModelResponse {
|
|
|
1055
1057
|
collaborationIdentifier: string | undefined;
|
|
1056
1058
|
trainedModelArn: string | undefined;
|
|
1057
1059
|
name: string | undefined;
|
|
1058
|
-
description?: string;
|
|
1060
|
+
description?: string | undefined;
|
|
1059
1061
|
status: TrainedModelStatus | undefined;
|
|
1060
|
-
statusDetails?: StatusDetails;
|
|
1062
|
+
statusDetails?: StatusDetails | undefined;
|
|
1061
1063
|
configuredModelAlgorithmAssociationArn: string | undefined;
|
|
1062
|
-
resourceConfig?: ResourceConfig;
|
|
1063
|
-
stoppingCondition?: StoppingCondition;
|
|
1064
|
-
metricsStatus?: MetricsStatus;
|
|
1065
|
-
metricsStatusDetails?: string;
|
|
1066
|
-
logsStatus?: LogsStatus;
|
|
1067
|
-
logsStatusDetails?: string;
|
|
1068
|
-
trainingContainerImageDigest?: string;
|
|
1064
|
+
resourceConfig?: ResourceConfig | undefined;
|
|
1065
|
+
stoppingCondition?: StoppingCondition | undefined;
|
|
1066
|
+
metricsStatus?: MetricsStatus | undefined;
|
|
1067
|
+
metricsStatusDetails?: string | undefined;
|
|
1068
|
+
logsStatus?: LogsStatus | undefined;
|
|
1069
|
+
logsStatusDetails?: string | undefined;
|
|
1070
|
+
trainingContainerImageDigest?: string | undefined;
|
|
1069
1071
|
createTime: Date | undefined;
|
|
1070
1072
|
updateTime: Date | undefined;
|
|
1071
|
-
hyperparameters?: Record<string, string
|
|
1072
|
-
environment?: Record<string, string
|
|
1073
|
-
kmsKeyArn?: string;
|
|
1074
|
-
tags?: Record<string, string
|
|
1073
|
+
hyperparameters?: Record<string, string> | undefined;
|
|
1074
|
+
environment?: Record<string, string> | undefined;
|
|
1075
|
+
kmsKeyArn?: string | undefined;
|
|
1076
|
+
tags?: Record<string, string> | undefined;
|
|
1075
1077
|
dataChannels: ModelTrainingDataChannel[] | undefined;
|
|
1076
1078
|
}
|
|
1077
1079
|
export interface ListTrainedModelsRequest {
|
|
1078
|
-
nextToken?: string;
|
|
1079
|
-
maxResults?: number;
|
|
1080
|
+
nextToken?: string | undefined;
|
|
1081
|
+
maxResults?: number | undefined;
|
|
1080
1082
|
membershipIdentifier: string | undefined;
|
|
1081
1083
|
}
|
|
1082
1084
|
export interface TrainedModelSummary {
|
|
@@ -1084,14 +1086,14 @@ export interface TrainedModelSummary {
|
|
|
1084
1086
|
updateTime: Date | undefined;
|
|
1085
1087
|
trainedModelArn: string | undefined;
|
|
1086
1088
|
name: string | undefined;
|
|
1087
|
-
description?: string;
|
|
1089
|
+
description?: string | undefined;
|
|
1088
1090
|
membershipIdentifier: string | undefined;
|
|
1089
1091
|
collaborationIdentifier: string | undefined;
|
|
1090
1092
|
status: TrainedModelStatus | undefined;
|
|
1091
1093
|
configuredModelAlgorithmAssociationArn: string | undefined;
|
|
1092
1094
|
}
|
|
1093
1095
|
export interface ListTrainedModelsResponse {
|
|
1094
|
-
nextToken?: string;
|
|
1096
|
+
nextToken?: string | undefined;
|
|
1095
1097
|
trainedModels: TrainedModelSummary[] | undefined;
|
|
1096
1098
|
}
|
|
1097
1099
|
export interface StartTrainedModelExportJobRequest {
|
|
@@ -1099,7 +1101,7 @@ export interface StartTrainedModelExportJobRequest {
|
|
|
1099
1101
|
trainedModelArn: string | undefined;
|
|
1100
1102
|
membershipIdentifier: string | undefined;
|
|
1101
1103
|
outputConfiguration: TrainedModelExportOutputConfiguration | undefined;
|
|
1102
|
-
description?: string;
|
|
1104
|
+
description?: string | undefined;
|
|
1103
1105
|
}
|
|
1104
1106
|
export interface CancelTrainedModelInferenceJobRequest {
|
|
1105
1107
|
membershipIdentifier: string | undefined;
|
|
@@ -1110,7 +1112,7 @@ export interface GetTrainedModelInferenceJobRequest {
|
|
|
1110
1112
|
trainedModelInferenceJobArn: string | undefined;
|
|
1111
1113
|
}
|
|
1112
1114
|
export interface InferenceContainerExecutionParameters {
|
|
1113
|
-
maxPayloadInMB?: number;
|
|
1115
|
+
maxPayloadInMB?: number | undefined;
|
|
1114
1116
|
}
|
|
1115
1117
|
export interface ModelInferenceDataSource {
|
|
1116
1118
|
mlInputChannelArn: string | undefined;
|
|
@@ -1215,13 +1217,13 @@ export type InferenceInstanceType =
|
|
|
1215
1217
|
(typeof InferenceInstanceType)[keyof typeof InferenceInstanceType];
|
|
1216
1218
|
export interface InferenceResourceConfig {
|
|
1217
1219
|
instanceType: InferenceInstanceType | undefined;
|
|
1218
|
-
instanceCount?: number;
|
|
1220
|
+
instanceCount?: number | undefined;
|
|
1219
1221
|
}
|
|
1220
1222
|
export interface GetTrainedModelInferenceJobResponse {
|
|
1221
1223
|
createTime: Date | undefined;
|
|
1222
1224
|
updateTime: Date | undefined;
|
|
1223
1225
|
trainedModelInferenceJobArn: string | undefined;
|
|
1224
|
-
configuredModelAlgorithmAssociationArn?: string;
|
|
1226
|
+
configuredModelAlgorithmAssociationArn?: string | undefined;
|
|
1225
1227
|
name: string | undefined;
|
|
1226
1228
|
status: TrainedModelInferenceJobStatus | undefined;
|
|
1227
1229
|
trainedModelArn: string | undefined;
|
|
@@ -1229,58 +1231,62 @@ export interface GetTrainedModelInferenceJobResponse {
|
|
|
1229
1231
|
outputConfiguration: InferenceOutputConfiguration | undefined;
|
|
1230
1232
|
membershipIdentifier: string | undefined;
|
|
1231
1233
|
dataSource: ModelInferenceDataSource | undefined;
|
|
1232
|
-
containerExecutionParameters?:
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1234
|
+
containerExecutionParameters?:
|
|
1235
|
+
| InferenceContainerExecutionParameters
|
|
1236
|
+
| undefined;
|
|
1237
|
+
statusDetails?: StatusDetails | undefined;
|
|
1238
|
+
description?: string | undefined;
|
|
1239
|
+
inferenceContainerImageDigest?: string | undefined;
|
|
1240
|
+
environment?: Record<string, string> | undefined;
|
|
1241
|
+
kmsKeyArn?: string | undefined;
|
|
1242
|
+
metricsStatus?: MetricsStatus | undefined;
|
|
1243
|
+
metricsStatusDetails?: string | undefined;
|
|
1244
|
+
logsStatus?: LogsStatus | undefined;
|
|
1245
|
+
logsStatusDetails?: string | undefined;
|
|
1246
|
+
tags?: Record<string, string> | undefined;
|
|
1243
1247
|
}
|
|
1244
1248
|
export interface ListTrainedModelInferenceJobsRequest {
|
|
1245
|
-
nextToken?: string;
|
|
1246
|
-
maxResults?: number;
|
|
1249
|
+
nextToken?: string | undefined;
|
|
1250
|
+
maxResults?: number | undefined;
|
|
1247
1251
|
membershipIdentifier: string | undefined;
|
|
1248
|
-
trainedModelArn?: string;
|
|
1252
|
+
trainedModelArn?: string | undefined;
|
|
1249
1253
|
}
|
|
1250
1254
|
export interface TrainedModelInferenceJobSummary {
|
|
1251
1255
|
trainedModelInferenceJobArn: string | undefined;
|
|
1252
|
-
configuredModelAlgorithmAssociationArn?: string;
|
|
1256
|
+
configuredModelAlgorithmAssociationArn?: string | undefined;
|
|
1253
1257
|
membershipIdentifier: string | undefined;
|
|
1254
1258
|
trainedModelArn: string | undefined;
|
|
1255
1259
|
collaborationIdentifier: string | undefined;
|
|
1256
1260
|
status: TrainedModelInferenceJobStatus | undefined;
|
|
1257
1261
|
outputConfiguration: InferenceOutputConfiguration | undefined;
|
|
1258
1262
|
name: string | undefined;
|
|
1259
|
-
description?: string;
|
|
1260
|
-
metricsStatus?: MetricsStatus;
|
|
1261
|
-
metricsStatusDetails?: string;
|
|
1262
|
-
logsStatus?: LogsStatus;
|
|
1263
|
-
logsStatusDetails?: string;
|
|
1263
|
+
description?: string | undefined;
|
|
1264
|
+
metricsStatus?: MetricsStatus | undefined;
|
|
1265
|
+
metricsStatusDetails?: string | undefined;
|
|
1266
|
+
logsStatus?: LogsStatus | undefined;
|
|
1267
|
+
logsStatusDetails?: string | undefined;
|
|
1264
1268
|
createTime: Date | undefined;
|
|
1265
1269
|
updateTime: Date | undefined;
|
|
1266
1270
|
}
|
|
1267
1271
|
export interface ListTrainedModelInferenceJobsResponse {
|
|
1268
|
-
nextToken?: string;
|
|
1272
|
+
nextToken?: string | undefined;
|
|
1269
1273
|
trainedModelInferenceJobs: TrainedModelInferenceJobSummary[] | undefined;
|
|
1270
1274
|
}
|
|
1271
1275
|
export interface StartTrainedModelInferenceJobRequest {
|
|
1272
1276
|
membershipIdentifier: string | undefined;
|
|
1273
1277
|
name: string | undefined;
|
|
1274
1278
|
trainedModelArn: string | undefined;
|
|
1275
|
-
configuredModelAlgorithmAssociationArn?: string;
|
|
1279
|
+
configuredModelAlgorithmAssociationArn?: string | undefined;
|
|
1276
1280
|
resourceConfig: InferenceResourceConfig | undefined;
|
|
1277
1281
|
outputConfiguration: InferenceOutputConfiguration | undefined;
|
|
1278
1282
|
dataSource: ModelInferenceDataSource | undefined;
|
|
1279
|
-
description?: string;
|
|
1280
|
-
containerExecutionParameters?:
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1283
|
+
description?: string | undefined;
|
|
1284
|
+
containerExecutionParameters?:
|
|
1285
|
+
| InferenceContainerExecutionParameters
|
|
1286
|
+
| undefined;
|
|
1287
|
+
environment?: Record<string, string> | undefined;
|
|
1288
|
+
kmsKeyArn?: string | undefined;
|
|
1289
|
+
tags?: Record<string, string> | undefined;
|
|
1284
1290
|
}
|
|
1285
1291
|
export interface StartTrainedModelInferenceJobResponse {
|
|
1286
1292
|
trainedModelInferenceJobArn: string | undefined;
|
|
@@ -1288,7 +1294,7 @@ export interface StartTrainedModelInferenceJobResponse {
|
|
|
1288
1294
|
export interface GlueDataSource {
|
|
1289
1295
|
tableName: string | undefined;
|
|
1290
1296
|
databaseName: string | undefined;
|
|
1291
|
-
catalogId?: string;
|
|
1297
|
+
catalogId?: string | undefined;
|
|
1292
1298
|
}
|
|
1293
1299
|
export interface DataSource {
|
|
1294
1300
|
glueDataSource: GlueDataSource | undefined;
|
|
@@ -1321,8 +1327,8 @@ export interface CreateTrainingDatasetRequest {
|
|
|
1321
1327
|
name: string | undefined;
|
|
1322
1328
|
roleArn: string | undefined;
|
|
1323
1329
|
trainingData: Dataset[] | undefined;
|
|
1324
|
-
tags?: Record<string, string
|
|
1325
|
-
description?: string;
|
|
1330
|
+
tags?: Record<string, string> | undefined;
|
|
1331
|
+
description?: string | undefined;
|
|
1326
1332
|
}
|
|
1327
1333
|
export interface CreateTrainingDatasetResponse {
|
|
1328
1334
|
trainingDatasetArn: string | undefined;
|
|
@@ -1346,12 +1352,12 @@ export interface GetTrainingDatasetResponse {
|
|
|
1346
1352
|
trainingData: Dataset[] | undefined;
|
|
1347
1353
|
status: TrainingDatasetStatus | undefined;
|
|
1348
1354
|
roleArn: string | undefined;
|
|
1349
|
-
tags?: Record<string, string
|
|
1350
|
-
description?: string;
|
|
1355
|
+
tags?: Record<string, string> | undefined;
|
|
1356
|
+
description?: string | undefined;
|
|
1351
1357
|
}
|
|
1352
1358
|
export interface ListTrainingDatasetsRequest {
|
|
1353
|
-
nextToken?: string;
|
|
1354
|
-
maxResults?: number;
|
|
1359
|
+
nextToken?: string | undefined;
|
|
1360
|
+
maxResults?: number | undefined;
|
|
1355
1361
|
}
|
|
1356
1362
|
export interface TrainingDatasetSummary {
|
|
1357
1363
|
createTime: Date | undefined;
|
|
@@ -1359,10 +1365,10 @@ export interface TrainingDatasetSummary {
|
|
|
1359
1365
|
trainingDatasetArn: string | undefined;
|
|
1360
1366
|
name: string | undefined;
|
|
1361
1367
|
status: TrainingDatasetStatus | undefined;
|
|
1362
|
-
description?: string;
|
|
1368
|
+
description?: string | undefined;
|
|
1363
1369
|
}
|
|
1364
1370
|
export interface ListTrainingDatasetsResponse {
|
|
1365
|
-
nextToken?: string;
|
|
1371
|
+
nextToken?: string | undefined;
|
|
1366
1372
|
trainingDatasets: TrainingDatasetSummary[] | undefined;
|
|
1367
1373
|
}
|
|
1368
1374
|
export interface UntagResourceRequest {
|