@aws-sdk/client-personalize 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 +550 -550
- package/dist-types/ts3.4/models/models_0.d.ts +556 -550
- package/package.json +7 -7
|
@@ -1,45 +1,49 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { PersonalizeServiceException as __BaseException } from "./PersonalizeServiceException";
|
|
3
3
|
export interface AlgorithmImage {
|
|
4
|
-
name?: string;
|
|
4
|
+
name?: string | undefined;
|
|
5
5
|
dockerURI: string | undefined;
|
|
6
6
|
}
|
|
7
7
|
export interface DefaultCategoricalHyperParameterRange {
|
|
8
|
-
name?: string;
|
|
9
|
-
values?: string[];
|
|
10
|
-
isTunable?: boolean;
|
|
8
|
+
name?: string | undefined;
|
|
9
|
+
values?: string[] | undefined;
|
|
10
|
+
isTunable?: boolean | undefined;
|
|
11
11
|
}
|
|
12
12
|
export interface DefaultContinuousHyperParameterRange {
|
|
13
|
-
name?: string;
|
|
14
|
-
minValue?: number;
|
|
15
|
-
maxValue?: number;
|
|
16
|
-
isTunable?: boolean;
|
|
13
|
+
name?: string | undefined;
|
|
14
|
+
minValue?: number | undefined;
|
|
15
|
+
maxValue?: number | undefined;
|
|
16
|
+
isTunable?: boolean | undefined;
|
|
17
17
|
}
|
|
18
18
|
export interface DefaultIntegerHyperParameterRange {
|
|
19
|
-
name?: string;
|
|
20
|
-
minValue?: number;
|
|
21
|
-
maxValue?: number;
|
|
22
|
-
isTunable?: boolean;
|
|
19
|
+
name?: string | undefined;
|
|
20
|
+
minValue?: number | undefined;
|
|
21
|
+
maxValue?: number | undefined;
|
|
22
|
+
isTunable?: boolean | undefined;
|
|
23
23
|
}
|
|
24
24
|
export interface DefaultHyperParameterRanges {
|
|
25
|
-
integerHyperParameterRanges?: DefaultIntegerHyperParameterRange[];
|
|
26
|
-
continuousHyperParameterRanges?:
|
|
27
|
-
|
|
25
|
+
integerHyperParameterRanges?: DefaultIntegerHyperParameterRange[] | undefined;
|
|
26
|
+
continuousHyperParameterRanges?:
|
|
27
|
+
| DefaultContinuousHyperParameterRange[]
|
|
28
|
+
| undefined;
|
|
29
|
+
categoricalHyperParameterRanges?:
|
|
30
|
+
| DefaultCategoricalHyperParameterRange[]
|
|
31
|
+
| undefined;
|
|
28
32
|
}
|
|
29
33
|
export interface Algorithm {
|
|
30
|
-
name?: string;
|
|
31
|
-
algorithmArn?: string;
|
|
32
|
-
algorithmImage?: AlgorithmImage;
|
|
33
|
-
defaultHyperParameters?: Record<string, string
|
|
34
|
-
defaultHyperParameterRanges?: DefaultHyperParameterRanges;
|
|
35
|
-
defaultResourceConfig?: Record<string, string
|
|
36
|
-
trainingInputMode?: string;
|
|
37
|
-
roleArn?: string;
|
|
38
|
-
creationDateTime?: Date;
|
|
39
|
-
lastUpdatedDateTime?: Date;
|
|
34
|
+
name?: string | undefined;
|
|
35
|
+
algorithmArn?: string | undefined;
|
|
36
|
+
algorithmImage?: AlgorithmImage | undefined;
|
|
37
|
+
defaultHyperParameters?: Record<string, string> | undefined;
|
|
38
|
+
defaultHyperParameterRanges?: DefaultHyperParameterRanges | undefined;
|
|
39
|
+
defaultResourceConfig?: Record<string, string> | undefined;
|
|
40
|
+
trainingInputMode?: string | undefined;
|
|
41
|
+
roleArn?: string | undefined;
|
|
42
|
+
creationDateTime?: Date | undefined;
|
|
43
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
40
44
|
}
|
|
41
45
|
export interface BatchInferenceJobConfig {
|
|
42
|
-
itemExplorationConfig?: Record<string, string
|
|
46
|
+
itemExplorationConfig?: Record<string, string> | undefined;
|
|
43
47
|
}
|
|
44
48
|
export declare const BatchInferenceJobMode: {
|
|
45
49
|
readonly BATCH_INFERENCE: "BATCH_INFERENCE";
|
|
@@ -49,7 +53,7 @@ export type BatchInferenceJobMode =
|
|
|
49
53
|
(typeof BatchInferenceJobMode)[keyof typeof BatchInferenceJobMode];
|
|
50
54
|
export interface S3DataConfig {
|
|
51
55
|
path: string | undefined;
|
|
52
|
-
kmsKeyArn?: string;
|
|
56
|
+
kmsKeyArn?: string | undefined;
|
|
53
57
|
}
|
|
54
58
|
export interface BatchInferenceJobInput {
|
|
55
59
|
s3DataSource: S3DataConfig | undefined;
|
|
@@ -70,18 +74,18 @@ export interface ThemeGenerationConfig {
|
|
|
70
74
|
export interface CreateBatchInferenceJobRequest {
|
|
71
75
|
jobName: string | undefined;
|
|
72
76
|
solutionVersionArn: string | undefined;
|
|
73
|
-
filterArn?: string;
|
|
74
|
-
numResults?: number;
|
|
77
|
+
filterArn?: string | undefined;
|
|
78
|
+
numResults?: number | undefined;
|
|
75
79
|
jobInput: BatchInferenceJobInput | undefined;
|
|
76
80
|
jobOutput: BatchInferenceJobOutput | undefined;
|
|
77
81
|
roleArn: string | undefined;
|
|
78
|
-
batchInferenceJobConfig?: BatchInferenceJobConfig;
|
|
79
|
-
tags?: Tag[];
|
|
80
|
-
batchInferenceJobMode?: BatchInferenceJobMode;
|
|
81
|
-
themeGenerationConfig?: ThemeGenerationConfig;
|
|
82
|
+
batchInferenceJobConfig?: BatchInferenceJobConfig | undefined;
|
|
83
|
+
tags?: Tag[] | undefined;
|
|
84
|
+
batchInferenceJobMode?: BatchInferenceJobMode | undefined;
|
|
85
|
+
themeGenerationConfig?: ThemeGenerationConfig | undefined;
|
|
82
86
|
}
|
|
83
87
|
export interface CreateBatchInferenceJobResponse {
|
|
84
|
-
batchInferenceJobArn?: string;
|
|
88
|
+
batchInferenceJobArn?: string | undefined;
|
|
85
89
|
}
|
|
86
90
|
export declare class InvalidInputException extends __BaseException {
|
|
87
91
|
readonly name: "InvalidInputException";
|
|
@@ -134,53 +138,53 @@ export interface BatchSegmentJobOutput {
|
|
|
134
138
|
export interface CreateBatchSegmentJobRequest {
|
|
135
139
|
jobName: string | undefined;
|
|
136
140
|
solutionVersionArn: string | undefined;
|
|
137
|
-
filterArn?: string;
|
|
138
|
-
numResults?: number;
|
|
141
|
+
filterArn?: string | undefined;
|
|
142
|
+
numResults?: number | undefined;
|
|
139
143
|
jobInput: BatchSegmentJobInput | undefined;
|
|
140
144
|
jobOutput: BatchSegmentJobOutput | undefined;
|
|
141
145
|
roleArn: string | undefined;
|
|
142
|
-
tags?: Tag[];
|
|
146
|
+
tags?: Tag[] | undefined;
|
|
143
147
|
}
|
|
144
148
|
export interface CreateBatchSegmentJobResponse {
|
|
145
|
-
batchSegmentJobArn?: string;
|
|
149
|
+
batchSegmentJobArn?: string | undefined;
|
|
146
150
|
}
|
|
147
151
|
export interface CampaignConfig {
|
|
148
|
-
itemExplorationConfig?: Record<string, string
|
|
149
|
-
enableMetadataWithRecommendations?: boolean;
|
|
150
|
-
syncWithLatestSolutionVersion?: boolean;
|
|
152
|
+
itemExplorationConfig?: Record<string, string> | undefined;
|
|
153
|
+
enableMetadataWithRecommendations?: boolean | undefined;
|
|
154
|
+
syncWithLatestSolutionVersion?: boolean | undefined;
|
|
151
155
|
}
|
|
152
156
|
export interface CreateCampaignRequest {
|
|
153
157
|
name: string | undefined;
|
|
154
158
|
solutionVersionArn: string | undefined;
|
|
155
|
-
minProvisionedTPS?: number;
|
|
156
|
-
campaignConfig?: CampaignConfig;
|
|
157
|
-
tags?: Tag[];
|
|
159
|
+
minProvisionedTPS?: number | undefined;
|
|
160
|
+
campaignConfig?: CampaignConfig | undefined;
|
|
161
|
+
tags?: Tag[] | undefined;
|
|
158
162
|
}
|
|
159
163
|
export interface CreateCampaignResponse {
|
|
160
|
-
campaignArn?: string;
|
|
164
|
+
campaignArn?: string | undefined;
|
|
161
165
|
}
|
|
162
166
|
export interface DataSource {
|
|
163
|
-
dataLocation?: string;
|
|
167
|
+
dataLocation?: string | undefined;
|
|
164
168
|
}
|
|
165
169
|
export interface CreateDataDeletionJobRequest {
|
|
166
170
|
jobName: string | undefined;
|
|
167
171
|
datasetGroupArn: string | undefined;
|
|
168
172
|
dataSource: DataSource | undefined;
|
|
169
173
|
roleArn: string | undefined;
|
|
170
|
-
tags?: Tag[];
|
|
174
|
+
tags?: Tag[] | undefined;
|
|
171
175
|
}
|
|
172
176
|
export interface CreateDataDeletionJobResponse {
|
|
173
|
-
dataDeletionJobArn?: string;
|
|
177
|
+
dataDeletionJobArn?: string | undefined;
|
|
174
178
|
}
|
|
175
179
|
export interface CreateDatasetRequest {
|
|
176
180
|
name: string | undefined;
|
|
177
181
|
schemaArn: string | undefined;
|
|
178
182
|
datasetGroupArn: string | undefined;
|
|
179
183
|
datasetType: string | undefined;
|
|
180
|
-
tags?: Tag[];
|
|
184
|
+
tags?: Tag[] | undefined;
|
|
181
185
|
}
|
|
182
186
|
export interface CreateDatasetResponse {
|
|
183
|
-
datasetArn?: string;
|
|
187
|
+
datasetArn?: string | undefined;
|
|
184
188
|
}
|
|
185
189
|
export declare const IngestionMode: {
|
|
186
190
|
readonly ALL: "ALL";
|
|
@@ -194,13 +198,13 @@ export interface DatasetExportJobOutput {
|
|
|
194
198
|
export interface CreateDatasetExportJobRequest {
|
|
195
199
|
jobName: string | undefined;
|
|
196
200
|
datasetArn: string | undefined;
|
|
197
|
-
ingestionMode?: IngestionMode;
|
|
201
|
+
ingestionMode?: IngestionMode | undefined;
|
|
198
202
|
roleArn: string | undefined;
|
|
199
203
|
jobOutput: DatasetExportJobOutput | undefined;
|
|
200
|
-
tags?: Tag[];
|
|
204
|
+
tags?: Tag[] | undefined;
|
|
201
205
|
}
|
|
202
206
|
export interface CreateDatasetExportJobResponse {
|
|
203
|
-
datasetExportJobArn?: string;
|
|
207
|
+
datasetExportJobArn?: string | undefined;
|
|
204
208
|
}
|
|
205
209
|
export declare const Domain: {
|
|
206
210
|
readonly ECOMMERCE: "ECOMMERCE";
|
|
@@ -209,14 +213,14 @@ export declare const Domain: {
|
|
|
209
213
|
export type Domain = (typeof Domain)[keyof typeof Domain];
|
|
210
214
|
export interface CreateDatasetGroupRequest {
|
|
211
215
|
name: string | undefined;
|
|
212
|
-
roleArn?: string;
|
|
213
|
-
kmsKeyArn?: string;
|
|
214
|
-
domain?: Domain;
|
|
215
|
-
tags?: Tag[];
|
|
216
|
+
roleArn?: string | undefined;
|
|
217
|
+
kmsKeyArn?: string | undefined;
|
|
218
|
+
domain?: Domain | undefined;
|
|
219
|
+
tags?: Tag[] | undefined;
|
|
216
220
|
}
|
|
217
221
|
export interface CreateDatasetGroupResponse {
|
|
218
|
-
datasetGroupArn?: string;
|
|
219
|
-
domain?: Domain;
|
|
222
|
+
datasetGroupArn?: string | undefined;
|
|
223
|
+
domain?: Domain | undefined;
|
|
220
224
|
}
|
|
221
225
|
export declare const ImportMode: {
|
|
222
226
|
readonly FULL: "FULL";
|
|
@@ -228,30 +232,30 @@ export interface CreateDatasetImportJobRequest {
|
|
|
228
232
|
datasetArn: string | undefined;
|
|
229
233
|
dataSource: DataSource | undefined;
|
|
230
234
|
roleArn: string | undefined;
|
|
231
|
-
tags?: Tag[];
|
|
232
|
-
importMode?: ImportMode;
|
|
233
|
-
publishAttributionMetricsToS3?: boolean;
|
|
235
|
+
tags?: Tag[] | undefined;
|
|
236
|
+
importMode?: ImportMode | undefined;
|
|
237
|
+
publishAttributionMetricsToS3?: boolean | undefined;
|
|
234
238
|
}
|
|
235
239
|
export interface CreateDatasetImportJobResponse {
|
|
236
|
-
datasetImportJobArn?: string;
|
|
240
|
+
datasetImportJobArn?: string | undefined;
|
|
237
241
|
}
|
|
238
242
|
export interface CreateEventTrackerRequest {
|
|
239
243
|
name: string | undefined;
|
|
240
244
|
datasetGroupArn: string | undefined;
|
|
241
|
-
tags?: Tag[];
|
|
245
|
+
tags?: Tag[] | undefined;
|
|
242
246
|
}
|
|
243
247
|
export interface CreateEventTrackerResponse {
|
|
244
|
-
eventTrackerArn?: string;
|
|
245
|
-
trackingId?: string;
|
|
248
|
+
eventTrackerArn?: string | undefined;
|
|
249
|
+
trackingId?: string | undefined;
|
|
246
250
|
}
|
|
247
251
|
export interface CreateFilterRequest {
|
|
248
252
|
name: string | undefined;
|
|
249
253
|
datasetGroupArn: string | undefined;
|
|
250
254
|
filterExpression: string | undefined;
|
|
251
|
-
tags?: Tag[];
|
|
255
|
+
tags?: Tag[] | undefined;
|
|
252
256
|
}
|
|
253
257
|
export interface CreateFilterResponse {
|
|
254
|
-
filterArn?: string;
|
|
258
|
+
filterArn?: string | undefined;
|
|
255
259
|
}
|
|
256
260
|
export interface MetricAttribute {
|
|
257
261
|
eventType: string | undefined;
|
|
@@ -259,7 +263,7 @@ export interface MetricAttribute {
|
|
|
259
263
|
expression: string | undefined;
|
|
260
264
|
}
|
|
261
265
|
export interface MetricAttributionOutput {
|
|
262
|
-
s3DataDestination?: S3DataConfig;
|
|
266
|
+
s3DataDestination?: S3DataConfig | undefined;
|
|
263
267
|
roleArn: string | undefined;
|
|
264
268
|
}
|
|
265
269
|
export interface CreateMetricAttributionRequest {
|
|
@@ -269,74 +273,76 @@ export interface CreateMetricAttributionRequest {
|
|
|
269
273
|
metricsOutputConfig: MetricAttributionOutput | undefined;
|
|
270
274
|
}
|
|
271
275
|
export interface CreateMetricAttributionResponse {
|
|
272
|
-
metricAttributionArn?: string;
|
|
276
|
+
metricAttributionArn?: string | undefined;
|
|
273
277
|
}
|
|
274
278
|
export interface TrainingDataConfig {
|
|
275
|
-
excludedDatasetColumns?: Record<string, string[]
|
|
279
|
+
excludedDatasetColumns?: Record<string, string[]> | undefined;
|
|
276
280
|
}
|
|
277
281
|
export interface RecommenderConfig {
|
|
278
|
-
itemExplorationConfig?: Record<string, string
|
|
279
|
-
minRecommendationRequestsPerSecond?: number;
|
|
280
|
-
trainingDataConfig?: TrainingDataConfig;
|
|
281
|
-
enableMetadataWithRecommendations?: boolean;
|
|
282
|
+
itemExplorationConfig?: Record<string, string> | undefined;
|
|
283
|
+
minRecommendationRequestsPerSecond?: number | undefined;
|
|
284
|
+
trainingDataConfig?: TrainingDataConfig | undefined;
|
|
285
|
+
enableMetadataWithRecommendations?: boolean | undefined;
|
|
282
286
|
}
|
|
283
287
|
export interface CreateRecommenderRequest {
|
|
284
288
|
name: string | undefined;
|
|
285
289
|
datasetGroupArn: string | undefined;
|
|
286
290
|
recipeArn: string | undefined;
|
|
287
|
-
recommenderConfig?: RecommenderConfig;
|
|
288
|
-
tags?: Tag[];
|
|
291
|
+
recommenderConfig?: RecommenderConfig | undefined;
|
|
292
|
+
tags?: Tag[] | undefined;
|
|
289
293
|
}
|
|
290
294
|
export interface CreateRecommenderResponse {
|
|
291
|
-
recommenderArn?: string;
|
|
295
|
+
recommenderArn?: string | undefined;
|
|
292
296
|
}
|
|
293
297
|
export interface CreateSchemaRequest {
|
|
294
298
|
name: string | undefined;
|
|
295
299
|
schema: string | undefined;
|
|
296
|
-
domain?: Domain;
|
|
300
|
+
domain?: Domain | undefined;
|
|
297
301
|
}
|
|
298
302
|
export interface CreateSchemaResponse {
|
|
299
|
-
schemaArn?: string;
|
|
303
|
+
schemaArn?: string | undefined;
|
|
300
304
|
}
|
|
301
305
|
export interface AutoMLConfig {
|
|
302
|
-
metricName?: string;
|
|
303
|
-
recipeList?: string[];
|
|
306
|
+
metricName?: string | undefined;
|
|
307
|
+
recipeList?: string[] | undefined;
|
|
304
308
|
}
|
|
305
309
|
export interface AutoTrainingConfig {
|
|
306
|
-
schedulingExpression?: string;
|
|
310
|
+
schedulingExpression?: string | undefined;
|
|
307
311
|
}
|
|
308
312
|
export interface CategoricalHyperParameterRange {
|
|
309
|
-
name?: string;
|
|
310
|
-
values?: string[];
|
|
313
|
+
name?: string | undefined;
|
|
314
|
+
values?: string[] | undefined;
|
|
311
315
|
}
|
|
312
316
|
export interface ContinuousHyperParameterRange {
|
|
313
|
-
name?: string;
|
|
314
|
-
minValue?: number;
|
|
315
|
-
maxValue?: number;
|
|
317
|
+
name?: string | undefined;
|
|
318
|
+
minValue?: number | undefined;
|
|
319
|
+
maxValue?: number | undefined;
|
|
316
320
|
}
|
|
317
321
|
export interface IntegerHyperParameterRange {
|
|
318
|
-
name?: string;
|
|
319
|
-
minValue?: number;
|
|
320
|
-
maxValue?: number;
|
|
322
|
+
name?: string | undefined;
|
|
323
|
+
minValue?: number | undefined;
|
|
324
|
+
maxValue?: number | undefined;
|
|
321
325
|
}
|
|
322
326
|
export interface HyperParameterRanges {
|
|
323
|
-
integerHyperParameterRanges?: IntegerHyperParameterRange[];
|
|
324
|
-
continuousHyperParameterRanges?: ContinuousHyperParameterRange[];
|
|
325
|
-
categoricalHyperParameterRanges?:
|
|
327
|
+
integerHyperParameterRanges?: IntegerHyperParameterRange[] | undefined;
|
|
328
|
+
continuousHyperParameterRanges?: ContinuousHyperParameterRange[] | undefined;
|
|
329
|
+
categoricalHyperParameterRanges?:
|
|
330
|
+
| CategoricalHyperParameterRange[]
|
|
331
|
+
| undefined;
|
|
326
332
|
}
|
|
327
333
|
export interface HPOObjective {
|
|
328
|
-
type?: string;
|
|
329
|
-
metricName?: string;
|
|
330
|
-
metricRegex?: string;
|
|
334
|
+
type?: string | undefined;
|
|
335
|
+
metricName?: string | undefined;
|
|
336
|
+
metricRegex?: string | undefined;
|
|
331
337
|
}
|
|
332
338
|
export interface HPOResourceConfig {
|
|
333
|
-
maxNumberOfTrainingJobs?: string;
|
|
334
|
-
maxParallelTrainingJobs?: string;
|
|
339
|
+
maxNumberOfTrainingJobs?: string | undefined;
|
|
340
|
+
maxParallelTrainingJobs?: string | undefined;
|
|
335
341
|
}
|
|
336
342
|
export interface HPOConfig {
|
|
337
|
-
hpoObjective?: HPOObjective;
|
|
338
|
-
hpoResourceConfig?: HPOResourceConfig;
|
|
339
|
-
algorithmHyperParameterRanges?: HyperParameterRanges;
|
|
343
|
+
hpoObjective?: HPOObjective | undefined;
|
|
344
|
+
hpoResourceConfig?: HPOResourceConfig | undefined;
|
|
345
|
+
algorithmHyperParameterRanges?: HyperParameterRanges | undefined;
|
|
340
346
|
}
|
|
341
347
|
export declare const ObjectiveSensitivity: {
|
|
342
348
|
readonly HIGH: "HIGH";
|
|
@@ -347,32 +353,32 @@ export declare const ObjectiveSensitivity: {
|
|
|
347
353
|
export type ObjectiveSensitivity =
|
|
348
354
|
(typeof ObjectiveSensitivity)[keyof typeof ObjectiveSensitivity];
|
|
349
355
|
export interface OptimizationObjective {
|
|
350
|
-
itemAttribute?: string;
|
|
351
|
-
objectiveSensitivity?: ObjectiveSensitivity;
|
|
356
|
+
itemAttribute?: string | undefined;
|
|
357
|
+
objectiveSensitivity?: ObjectiveSensitivity | undefined;
|
|
352
358
|
}
|
|
353
359
|
export interface SolutionConfig {
|
|
354
|
-
eventValueThreshold?: string;
|
|
355
|
-
hpoConfig?: HPOConfig;
|
|
356
|
-
algorithmHyperParameters?: Record<string, string
|
|
357
|
-
featureTransformationParameters?: Record<string, string
|
|
358
|
-
autoMLConfig?: AutoMLConfig;
|
|
359
|
-
optimizationObjective?: OptimizationObjective;
|
|
360
|
-
trainingDataConfig?: TrainingDataConfig;
|
|
361
|
-
autoTrainingConfig?: AutoTrainingConfig;
|
|
360
|
+
eventValueThreshold?: string | undefined;
|
|
361
|
+
hpoConfig?: HPOConfig | undefined;
|
|
362
|
+
algorithmHyperParameters?: Record<string, string> | undefined;
|
|
363
|
+
featureTransformationParameters?: Record<string, string> | undefined;
|
|
364
|
+
autoMLConfig?: AutoMLConfig | undefined;
|
|
365
|
+
optimizationObjective?: OptimizationObjective | undefined;
|
|
366
|
+
trainingDataConfig?: TrainingDataConfig | undefined;
|
|
367
|
+
autoTrainingConfig?: AutoTrainingConfig | undefined;
|
|
362
368
|
}
|
|
363
369
|
export interface CreateSolutionRequest {
|
|
364
370
|
name: string | undefined;
|
|
365
|
-
performHPO?: boolean;
|
|
366
|
-
performAutoML?: boolean;
|
|
367
|
-
performAutoTraining?: boolean;
|
|
368
|
-
recipeArn?: string;
|
|
371
|
+
performHPO?: boolean | undefined;
|
|
372
|
+
performAutoML?: boolean | undefined;
|
|
373
|
+
performAutoTraining?: boolean | undefined;
|
|
374
|
+
recipeArn?: string | undefined;
|
|
369
375
|
datasetGroupArn: string | undefined;
|
|
370
|
-
eventType?: string;
|
|
371
|
-
solutionConfig?: SolutionConfig;
|
|
372
|
-
tags?: Tag[];
|
|
376
|
+
eventType?: string | undefined;
|
|
377
|
+
solutionConfig?: SolutionConfig | undefined;
|
|
378
|
+
tags?: Tag[] | undefined;
|
|
373
379
|
}
|
|
374
380
|
export interface CreateSolutionResponse {
|
|
375
|
-
solutionArn?: string;
|
|
381
|
+
solutionArn?: string | undefined;
|
|
376
382
|
}
|
|
377
383
|
export declare const TrainingMode: {
|
|
378
384
|
readonly AUTOTRAIN: "AUTOTRAIN";
|
|
@@ -381,13 +387,13 @@ export declare const TrainingMode: {
|
|
|
381
387
|
};
|
|
382
388
|
export type TrainingMode = (typeof TrainingMode)[keyof typeof TrainingMode];
|
|
383
389
|
export interface CreateSolutionVersionRequest {
|
|
384
|
-
name?: string;
|
|
390
|
+
name?: string | undefined;
|
|
385
391
|
solutionArn: string | undefined;
|
|
386
|
-
trainingMode?: TrainingMode;
|
|
387
|
-
tags?: Tag[];
|
|
392
|
+
trainingMode?: TrainingMode | undefined;
|
|
393
|
+
tags?: Tag[] | undefined;
|
|
388
394
|
}
|
|
389
395
|
export interface CreateSolutionVersionResponse {
|
|
390
|
-
solutionVersionArn?: string;
|
|
396
|
+
solutionVersionArn?: string | undefined;
|
|
391
397
|
}
|
|
392
398
|
export interface DeleteCampaignRequest {
|
|
393
399
|
campaignArn: string | undefined;
|
|
@@ -420,310 +426,310 @@ export interface DescribeAlgorithmRequest {
|
|
|
420
426
|
algorithmArn: string | undefined;
|
|
421
427
|
}
|
|
422
428
|
export interface DescribeAlgorithmResponse {
|
|
423
|
-
algorithm?: Algorithm;
|
|
429
|
+
algorithm?: Algorithm | undefined;
|
|
424
430
|
}
|
|
425
431
|
export interface DescribeBatchInferenceJobRequest {
|
|
426
432
|
batchInferenceJobArn: string | undefined;
|
|
427
433
|
}
|
|
428
434
|
export interface BatchInferenceJob {
|
|
429
|
-
jobName?: string;
|
|
430
|
-
batchInferenceJobArn?: string;
|
|
431
|
-
filterArn?: string;
|
|
432
|
-
failureReason?: string;
|
|
433
|
-
solutionVersionArn?: string;
|
|
434
|
-
numResults?: number;
|
|
435
|
-
jobInput?: BatchInferenceJobInput;
|
|
436
|
-
jobOutput?: BatchInferenceJobOutput;
|
|
437
|
-
batchInferenceJobConfig?: BatchInferenceJobConfig;
|
|
438
|
-
roleArn?: string;
|
|
439
|
-
batchInferenceJobMode?: BatchInferenceJobMode;
|
|
440
|
-
themeGenerationConfig?: ThemeGenerationConfig;
|
|
441
|
-
status?: string;
|
|
442
|
-
creationDateTime?: Date;
|
|
443
|
-
lastUpdatedDateTime?: Date;
|
|
435
|
+
jobName?: string | undefined;
|
|
436
|
+
batchInferenceJobArn?: string | undefined;
|
|
437
|
+
filterArn?: string | undefined;
|
|
438
|
+
failureReason?: string | undefined;
|
|
439
|
+
solutionVersionArn?: string | undefined;
|
|
440
|
+
numResults?: number | undefined;
|
|
441
|
+
jobInput?: BatchInferenceJobInput | undefined;
|
|
442
|
+
jobOutput?: BatchInferenceJobOutput | undefined;
|
|
443
|
+
batchInferenceJobConfig?: BatchInferenceJobConfig | undefined;
|
|
444
|
+
roleArn?: string | undefined;
|
|
445
|
+
batchInferenceJobMode?: BatchInferenceJobMode | undefined;
|
|
446
|
+
themeGenerationConfig?: ThemeGenerationConfig | undefined;
|
|
447
|
+
status?: string | undefined;
|
|
448
|
+
creationDateTime?: Date | undefined;
|
|
449
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
444
450
|
}
|
|
445
451
|
export interface DescribeBatchInferenceJobResponse {
|
|
446
|
-
batchInferenceJob?: BatchInferenceJob;
|
|
452
|
+
batchInferenceJob?: BatchInferenceJob | undefined;
|
|
447
453
|
}
|
|
448
454
|
export interface DescribeBatchSegmentJobRequest {
|
|
449
455
|
batchSegmentJobArn: string | undefined;
|
|
450
456
|
}
|
|
451
457
|
export interface BatchSegmentJob {
|
|
452
|
-
jobName?: string;
|
|
453
|
-
batchSegmentJobArn?: string;
|
|
454
|
-
filterArn?: string;
|
|
455
|
-
failureReason?: string;
|
|
456
|
-
solutionVersionArn?: string;
|
|
457
|
-
numResults?: number;
|
|
458
|
-
jobInput?: BatchSegmentJobInput;
|
|
459
|
-
jobOutput?: BatchSegmentJobOutput;
|
|
460
|
-
roleArn?: string;
|
|
461
|
-
status?: string;
|
|
462
|
-
creationDateTime?: Date;
|
|
463
|
-
lastUpdatedDateTime?: Date;
|
|
458
|
+
jobName?: string | undefined;
|
|
459
|
+
batchSegmentJobArn?: string | undefined;
|
|
460
|
+
filterArn?: string | undefined;
|
|
461
|
+
failureReason?: string | undefined;
|
|
462
|
+
solutionVersionArn?: string | undefined;
|
|
463
|
+
numResults?: number | undefined;
|
|
464
|
+
jobInput?: BatchSegmentJobInput | undefined;
|
|
465
|
+
jobOutput?: BatchSegmentJobOutput | undefined;
|
|
466
|
+
roleArn?: string | undefined;
|
|
467
|
+
status?: string | undefined;
|
|
468
|
+
creationDateTime?: Date | undefined;
|
|
469
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
464
470
|
}
|
|
465
471
|
export interface DescribeBatchSegmentJobResponse {
|
|
466
|
-
batchSegmentJob?: BatchSegmentJob;
|
|
472
|
+
batchSegmentJob?: BatchSegmentJob | undefined;
|
|
467
473
|
}
|
|
468
474
|
export interface DescribeCampaignRequest {
|
|
469
475
|
campaignArn: string | undefined;
|
|
470
476
|
}
|
|
471
477
|
export interface CampaignUpdateSummary {
|
|
472
|
-
solutionVersionArn?: string;
|
|
473
|
-
minProvisionedTPS?: number;
|
|
474
|
-
campaignConfig?: CampaignConfig;
|
|
475
|
-
status?: string;
|
|
476
|
-
failureReason?: string;
|
|
477
|
-
creationDateTime?: Date;
|
|
478
|
-
lastUpdatedDateTime?: Date;
|
|
478
|
+
solutionVersionArn?: string | undefined;
|
|
479
|
+
minProvisionedTPS?: number | undefined;
|
|
480
|
+
campaignConfig?: CampaignConfig | undefined;
|
|
481
|
+
status?: string | undefined;
|
|
482
|
+
failureReason?: string | undefined;
|
|
483
|
+
creationDateTime?: Date | undefined;
|
|
484
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
479
485
|
}
|
|
480
486
|
export interface Campaign {
|
|
481
|
-
name?: string;
|
|
482
|
-
campaignArn?: string;
|
|
483
|
-
solutionVersionArn?: string;
|
|
484
|
-
minProvisionedTPS?: number;
|
|
485
|
-
campaignConfig?: CampaignConfig;
|
|
486
|
-
status?: string;
|
|
487
|
-
failureReason?: string;
|
|
488
|
-
creationDateTime?: Date;
|
|
489
|
-
lastUpdatedDateTime?: Date;
|
|
490
|
-
latestCampaignUpdate?: CampaignUpdateSummary;
|
|
487
|
+
name?: string | undefined;
|
|
488
|
+
campaignArn?: string | undefined;
|
|
489
|
+
solutionVersionArn?: string | undefined;
|
|
490
|
+
minProvisionedTPS?: number | undefined;
|
|
491
|
+
campaignConfig?: CampaignConfig | undefined;
|
|
492
|
+
status?: string | undefined;
|
|
493
|
+
failureReason?: string | undefined;
|
|
494
|
+
creationDateTime?: Date | undefined;
|
|
495
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
496
|
+
latestCampaignUpdate?: CampaignUpdateSummary | undefined;
|
|
491
497
|
}
|
|
492
498
|
export interface DescribeCampaignResponse {
|
|
493
|
-
campaign?: Campaign;
|
|
499
|
+
campaign?: Campaign | undefined;
|
|
494
500
|
}
|
|
495
501
|
export interface DescribeDataDeletionJobRequest {
|
|
496
502
|
dataDeletionJobArn: string | undefined;
|
|
497
503
|
}
|
|
498
504
|
export interface DataDeletionJob {
|
|
499
|
-
jobName?: string;
|
|
500
|
-
dataDeletionJobArn?: string;
|
|
501
|
-
datasetGroupArn?: string;
|
|
502
|
-
dataSource?: DataSource;
|
|
503
|
-
roleArn?: string;
|
|
504
|
-
status?: string;
|
|
505
|
-
numDeleted?: number;
|
|
506
|
-
creationDateTime?: Date;
|
|
507
|
-
lastUpdatedDateTime?: Date;
|
|
508
|
-
failureReason?: string;
|
|
505
|
+
jobName?: string | undefined;
|
|
506
|
+
dataDeletionJobArn?: string | undefined;
|
|
507
|
+
datasetGroupArn?: string | undefined;
|
|
508
|
+
dataSource?: DataSource | undefined;
|
|
509
|
+
roleArn?: string | undefined;
|
|
510
|
+
status?: string | undefined;
|
|
511
|
+
numDeleted?: number | undefined;
|
|
512
|
+
creationDateTime?: Date | undefined;
|
|
513
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
514
|
+
failureReason?: string | undefined;
|
|
509
515
|
}
|
|
510
516
|
export interface DescribeDataDeletionJobResponse {
|
|
511
|
-
dataDeletionJob?: DataDeletionJob;
|
|
517
|
+
dataDeletionJob?: DataDeletionJob | undefined;
|
|
512
518
|
}
|
|
513
519
|
export interface DescribeDatasetRequest {
|
|
514
520
|
datasetArn: string | undefined;
|
|
515
521
|
}
|
|
516
522
|
export interface DatasetUpdateSummary {
|
|
517
|
-
schemaArn?: string;
|
|
518
|
-
status?: string;
|
|
519
|
-
failureReason?: string;
|
|
520
|
-
creationDateTime?: Date;
|
|
521
|
-
lastUpdatedDateTime?: Date;
|
|
523
|
+
schemaArn?: string | undefined;
|
|
524
|
+
status?: string | undefined;
|
|
525
|
+
failureReason?: string | undefined;
|
|
526
|
+
creationDateTime?: Date | undefined;
|
|
527
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
522
528
|
}
|
|
523
529
|
export interface Dataset {
|
|
524
|
-
name?: string;
|
|
525
|
-
datasetArn?: string;
|
|
526
|
-
datasetGroupArn?: string;
|
|
527
|
-
datasetType?: string;
|
|
528
|
-
schemaArn?: string;
|
|
529
|
-
status?: string;
|
|
530
|
-
creationDateTime?: Date;
|
|
531
|
-
lastUpdatedDateTime?: Date;
|
|
532
|
-
latestDatasetUpdate?: DatasetUpdateSummary;
|
|
533
|
-
trackingId?: string;
|
|
530
|
+
name?: string | undefined;
|
|
531
|
+
datasetArn?: string | undefined;
|
|
532
|
+
datasetGroupArn?: string | undefined;
|
|
533
|
+
datasetType?: string | undefined;
|
|
534
|
+
schemaArn?: string | undefined;
|
|
535
|
+
status?: string | undefined;
|
|
536
|
+
creationDateTime?: Date | undefined;
|
|
537
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
538
|
+
latestDatasetUpdate?: DatasetUpdateSummary | undefined;
|
|
539
|
+
trackingId?: string | undefined;
|
|
534
540
|
}
|
|
535
541
|
export interface DescribeDatasetResponse {
|
|
536
|
-
dataset?: Dataset;
|
|
542
|
+
dataset?: Dataset | undefined;
|
|
537
543
|
}
|
|
538
544
|
export interface DescribeDatasetExportJobRequest {
|
|
539
545
|
datasetExportJobArn: string | undefined;
|
|
540
546
|
}
|
|
541
547
|
export interface DatasetExportJob {
|
|
542
|
-
jobName?: string;
|
|
543
|
-
datasetExportJobArn?: string;
|
|
544
|
-
datasetArn?: string;
|
|
545
|
-
ingestionMode?: IngestionMode;
|
|
546
|
-
roleArn?: string;
|
|
547
|
-
status?: string;
|
|
548
|
-
jobOutput?: DatasetExportJobOutput;
|
|
549
|
-
creationDateTime?: Date;
|
|
550
|
-
lastUpdatedDateTime?: Date;
|
|
551
|
-
failureReason?: string;
|
|
548
|
+
jobName?: string | undefined;
|
|
549
|
+
datasetExportJobArn?: string | undefined;
|
|
550
|
+
datasetArn?: string | undefined;
|
|
551
|
+
ingestionMode?: IngestionMode | undefined;
|
|
552
|
+
roleArn?: string | undefined;
|
|
553
|
+
status?: string | undefined;
|
|
554
|
+
jobOutput?: DatasetExportJobOutput | undefined;
|
|
555
|
+
creationDateTime?: Date | undefined;
|
|
556
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
557
|
+
failureReason?: string | undefined;
|
|
552
558
|
}
|
|
553
559
|
export interface DescribeDatasetExportJobResponse {
|
|
554
|
-
datasetExportJob?: DatasetExportJob;
|
|
560
|
+
datasetExportJob?: DatasetExportJob | undefined;
|
|
555
561
|
}
|
|
556
562
|
export interface DescribeDatasetGroupRequest {
|
|
557
563
|
datasetGroupArn: string | undefined;
|
|
558
564
|
}
|
|
559
565
|
export interface DatasetGroup {
|
|
560
|
-
name?: string;
|
|
561
|
-
datasetGroupArn?: string;
|
|
562
|
-
status?: string;
|
|
563
|
-
roleArn?: string;
|
|
564
|
-
kmsKeyArn?: string;
|
|
565
|
-
creationDateTime?: Date;
|
|
566
|
-
lastUpdatedDateTime?: Date;
|
|
567
|
-
failureReason?: string;
|
|
568
|
-
domain?: Domain;
|
|
566
|
+
name?: string | undefined;
|
|
567
|
+
datasetGroupArn?: string | undefined;
|
|
568
|
+
status?: string | undefined;
|
|
569
|
+
roleArn?: string | undefined;
|
|
570
|
+
kmsKeyArn?: string | undefined;
|
|
571
|
+
creationDateTime?: Date | undefined;
|
|
572
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
573
|
+
failureReason?: string | undefined;
|
|
574
|
+
domain?: Domain | undefined;
|
|
569
575
|
}
|
|
570
576
|
export interface DescribeDatasetGroupResponse {
|
|
571
|
-
datasetGroup?: DatasetGroup;
|
|
577
|
+
datasetGroup?: DatasetGroup | undefined;
|
|
572
578
|
}
|
|
573
579
|
export interface DescribeDatasetImportJobRequest {
|
|
574
580
|
datasetImportJobArn: string | undefined;
|
|
575
581
|
}
|
|
576
582
|
export interface DatasetImportJob {
|
|
577
|
-
jobName?: string;
|
|
578
|
-
datasetImportJobArn?: string;
|
|
579
|
-
datasetArn?: string;
|
|
580
|
-
dataSource?: DataSource;
|
|
581
|
-
roleArn?: string;
|
|
582
|
-
status?: string;
|
|
583
|
-
creationDateTime?: Date;
|
|
584
|
-
lastUpdatedDateTime?: Date;
|
|
585
|
-
failureReason?: string;
|
|
586
|
-
importMode?: ImportMode;
|
|
587
|
-
publishAttributionMetricsToS3?: boolean;
|
|
583
|
+
jobName?: string | undefined;
|
|
584
|
+
datasetImportJobArn?: string | undefined;
|
|
585
|
+
datasetArn?: string | undefined;
|
|
586
|
+
dataSource?: DataSource | undefined;
|
|
587
|
+
roleArn?: string | undefined;
|
|
588
|
+
status?: string | undefined;
|
|
589
|
+
creationDateTime?: Date | undefined;
|
|
590
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
591
|
+
failureReason?: string | undefined;
|
|
592
|
+
importMode?: ImportMode | undefined;
|
|
593
|
+
publishAttributionMetricsToS3?: boolean | undefined;
|
|
588
594
|
}
|
|
589
595
|
export interface DescribeDatasetImportJobResponse {
|
|
590
|
-
datasetImportJob?: DatasetImportJob;
|
|
596
|
+
datasetImportJob?: DatasetImportJob | undefined;
|
|
591
597
|
}
|
|
592
598
|
export interface DescribeEventTrackerRequest {
|
|
593
599
|
eventTrackerArn: string | undefined;
|
|
594
600
|
}
|
|
595
601
|
export interface EventTracker {
|
|
596
|
-
name?: string;
|
|
597
|
-
eventTrackerArn?: string;
|
|
598
|
-
accountId?: string;
|
|
599
|
-
trackingId?: string;
|
|
600
|
-
datasetGroupArn?: string;
|
|
601
|
-
status?: string;
|
|
602
|
-
creationDateTime?: Date;
|
|
603
|
-
lastUpdatedDateTime?: Date;
|
|
602
|
+
name?: string | undefined;
|
|
603
|
+
eventTrackerArn?: string | undefined;
|
|
604
|
+
accountId?: string | undefined;
|
|
605
|
+
trackingId?: string | undefined;
|
|
606
|
+
datasetGroupArn?: string | undefined;
|
|
607
|
+
status?: string | undefined;
|
|
608
|
+
creationDateTime?: Date | undefined;
|
|
609
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
604
610
|
}
|
|
605
611
|
export interface DescribeEventTrackerResponse {
|
|
606
|
-
eventTracker?: EventTracker;
|
|
612
|
+
eventTracker?: EventTracker | undefined;
|
|
607
613
|
}
|
|
608
614
|
export interface DescribeFeatureTransformationRequest {
|
|
609
615
|
featureTransformationArn: string | undefined;
|
|
610
616
|
}
|
|
611
617
|
export interface FeatureTransformation {
|
|
612
|
-
name?: string;
|
|
613
|
-
featureTransformationArn?: string;
|
|
614
|
-
defaultParameters?: Record<string, string
|
|
615
|
-
creationDateTime?: Date;
|
|
616
|
-
lastUpdatedDateTime?: Date;
|
|
617
|
-
status?: string;
|
|
618
|
+
name?: string | undefined;
|
|
619
|
+
featureTransformationArn?: string | undefined;
|
|
620
|
+
defaultParameters?: Record<string, string> | undefined;
|
|
621
|
+
creationDateTime?: Date | undefined;
|
|
622
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
623
|
+
status?: string | undefined;
|
|
618
624
|
}
|
|
619
625
|
export interface DescribeFeatureTransformationResponse {
|
|
620
|
-
featureTransformation?: FeatureTransformation;
|
|
626
|
+
featureTransformation?: FeatureTransformation | undefined;
|
|
621
627
|
}
|
|
622
628
|
export interface DescribeFilterRequest {
|
|
623
629
|
filterArn: string | undefined;
|
|
624
630
|
}
|
|
625
631
|
export interface Filter {
|
|
626
|
-
name?: string;
|
|
627
|
-
filterArn?: string;
|
|
628
|
-
creationDateTime?: Date;
|
|
629
|
-
lastUpdatedDateTime?: Date;
|
|
630
|
-
datasetGroupArn?: string;
|
|
631
|
-
failureReason?: string;
|
|
632
|
-
filterExpression?: string;
|
|
633
|
-
status?: string;
|
|
632
|
+
name?: string | undefined;
|
|
633
|
+
filterArn?: string | undefined;
|
|
634
|
+
creationDateTime?: Date | undefined;
|
|
635
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
636
|
+
datasetGroupArn?: string | undefined;
|
|
637
|
+
failureReason?: string | undefined;
|
|
638
|
+
filterExpression?: string | undefined;
|
|
639
|
+
status?: string | undefined;
|
|
634
640
|
}
|
|
635
641
|
export interface DescribeFilterResponse {
|
|
636
|
-
filter?: Filter;
|
|
642
|
+
filter?: Filter | undefined;
|
|
637
643
|
}
|
|
638
644
|
export interface DescribeMetricAttributionRequest {
|
|
639
645
|
metricAttributionArn: string | undefined;
|
|
640
646
|
}
|
|
641
647
|
export interface MetricAttribution {
|
|
642
|
-
name?: string;
|
|
643
|
-
metricAttributionArn?: string;
|
|
644
|
-
datasetGroupArn?: string;
|
|
645
|
-
metricsOutputConfig?: MetricAttributionOutput;
|
|
646
|
-
status?: string;
|
|
647
|
-
creationDateTime?: Date;
|
|
648
|
-
lastUpdatedDateTime?: Date;
|
|
649
|
-
failureReason?: string;
|
|
648
|
+
name?: string | undefined;
|
|
649
|
+
metricAttributionArn?: string | undefined;
|
|
650
|
+
datasetGroupArn?: string | undefined;
|
|
651
|
+
metricsOutputConfig?: MetricAttributionOutput | undefined;
|
|
652
|
+
status?: string | undefined;
|
|
653
|
+
creationDateTime?: Date | undefined;
|
|
654
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
655
|
+
failureReason?: string | undefined;
|
|
650
656
|
}
|
|
651
657
|
export interface DescribeMetricAttributionResponse {
|
|
652
|
-
metricAttribution?: MetricAttribution;
|
|
658
|
+
metricAttribution?: MetricAttribution | undefined;
|
|
653
659
|
}
|
|
654
660
|
export interface DescribeRecipeRequest {
|
|
655
661
|
recipeArn: string | undefined;
|
|
656
662
|
}
|
|
657
663
|
export interface Recipe {
|
|
658
|
-
name?: string;
|
|
659
|
-
recipeArn?: string;
|
|
660
|
-
algorithmArn?: string;
|
|
661
|
-
featureTransformationArn?: string;
|
|
662
|
-
status?: string;
|
|
663
|
-
description?: string;
|
|
664
|
-
creationDateTime?: Date;
|
|
665
|
-
recipeType?: string;
|
|
666
|
-
lastUpdatedDateTime?: Date;
|
|
664
|
+
name?: string | undefined;
|
|
665
|
+
recipeArn?: string | undefined;
|
|
666
|
+
algorithmArn?: string | undefined;
|
|
667
|
+
featureTransformationArn?: string | undefined;
|
|
668
|
+
status?: string | undefined;
|
|
669
|
+
description?: string | undefined;
|
|
670
|
+
creationDateTime?: Date | undefined;
|
|
671
|
+
recipeType?: string | undefined;
|
|
672
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
667
673
|
}
|
|
668
674
|
export interface DescribeRecipeResponse {
|
|
669
|
-
recipe?: Recipe;
|
|
675
|
+
recipe?: Recipe | undefined;
|
|
670
676
|
}
|
|
671
677
|
export interface DescribeRecommenderRequest {
|
|
672
678
|
recommenderArn: string | undefined;
|
|
673
679
|
}
|
|
674
680
|
export interface RecommenderUpdateSummary {
|
|
675
|
-
recommenderConfig?: RecommenderConfig;
|
|
676
|
-
creationDateTime?: Date;
|
|
677
|
-
lastUpdatedDateTime?: Date;
|
|
678
|
-
status?: string;
|
|
679
|
-
failureReason?: string;
|
|
681
|
+
recommenderConfig?: RecommenderConfig | undefined;
|
|
682
|
+
creationDateTime?: Date | undefined;
|
|
683
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
684
|
+
status?: string | undefined;
|
|
685
|
+
failureReason?: string | undefined;
|
|
680
686
|
}
|
|
681
687
|
export interface Recommender {
|
|
682
|
-
recommenderArn?: string;
|
|
683
|
-
datasetGroupArn?: string;
|
|
684
|
-
name?: string;
|
|
685
|
-
recipeArn?: string;
|
|
686
|
-
recommenderConfig?: RecommenderConfig;
|
|
687
|
-
creationDateTime?: Date;
|
|
688
|
-
lastUpdatedDateTime?: Date;
|
|
689
|
-
status?: string;
|
|
690
|
-
failureReason?: string;
|
|
691
|
-
latestRecommenderUpdate?: RecommenderUpdateSummary;
|
|
692
|
-
modelMetrics?: Record<string, number
|
|
688
|
+
recommenderArn?: string | undefined;
|
|
689
|
+
datasetGroupArn?: string | undefined;
|
|
690
|
+
name?: string | undefined;
|
|
691
|
+
recipeArn?: string | undefined;
|
|
692
|
+
recommenderConfig?: RecommenderConfig | undefined;
|
|
693
|
+
creationDateTime?: Date | undefined;
|
|
694
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
695
|
+
status?: string | undefined;
|
|
696
|
+
failureReason?: string | undefined;
|
|
697
|
+
latestRecommenderUpdate?: RecommenderUpdateSummary | undefined;
|
|
698
|
+
modelMetrics?: Record<string, number> | undefined;
|
|
693
699
|
}
|
|
694
700
|
export interface DescribeRecommenderResponse {
|
|
695
|
-
recommender?: Recommender;
|
|
701
|
+
recommender?: Recommender | undefined;
|
|
696
702
|
}
|
|
697
703
|
export interface DescribeSchemaRequest {
|
|
698
704
|
schemaArn: string | undefined;
|
|
699
705
|
}
|
|
700
706
|
export interface DatasetSchema {
|
|
701
|
-
name?: string;
|
|
702
|
-
schemaArn?: string;
|
|
703
|
-
schema?: string;
|
|
704
|
-
creationDateTime?: Date;
|
|
705
|
-
lastUpdatedDateTime?: Date;
|
|
706
|
-
domain?: Domain;
|
|
707
|
+
name?: string | undefined;
|
|
708
|
+
schemaArn?: string | undefined;
|
|
709
|
+
schema?: string | undefined;
|
|
710
|
+
creationDateTime?: Date | undefined;
|
|
711
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
712
|
+
domain?: Domain | undefined;
|
|
707
713
|
}
|
|
708
714
|
export interface DescribeSchemaResponse {
|
|
709
|
-
schema?: DatasetSchema;
|
|
715
|
+
schema?: DatasetSchema | undefined;
|
|
710
716
|
}
|
|
711
717
|
export interface DescribeSolutionRequest {
|
|
712
718
|
solutionArn: string | undefined;
|
|
713
719
|
}
|
|
714
720
|
export interface AutoMLResult {
|
|
715
|
-
bestRecipeArn?: string;
|
|
721
|
+
bestRecipeArn?: string | undefined;
|
|
716
722
|
}
|
|
717
723
|
export interface SolutionUpdateConfig {
|
|
718
|
-
autoTrainingConfig?: AutoTrainingConfig;
|
|
724
|
+
autoTrainingConfig?: AutoTrainingConfig | undefined;
|
|
719
725
|
}
|
|
720
726
|
export interface SolutionUpdateSummary {
|
|
721
|
-
solutionUpdateConfig?: SolutionUpdateConfig;
|
|
722
|
-
status?: string;
|
|
723
|
-
performAutoTraining?: boolean;
|
|
724
|
-
creationDateTime?: Date;
|
|
725
|
-
lastUpdatedDateTime?: Date;
|
|
726
|
-
failureReason?: string;
|
|
727
|
+
solutionUpdateConfig?: SolutionUpdateConfig | undefined;
|
|
728
|
+
status?: string | undefined;
|
|
729
|
+
performAutoTraining?: boolean | undefined;
|
|
730
|
+
creationDateTime?: Date | undefined;
|
|
731
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
732
|
+
failureReason?: string | undefined;
|
|
727
733
|
}
|
|
728
734
|
export declare const TrainingType: {
|
|
729
735
|
readonly AUTOMATIC: "AUTOMATIC";
|
|
@@ -731,68 +737,68 @@ export declare const TrainingType: {
|
|
|
731
737
|
};
|
|
732
738
|
export type TrainingType = (typeof TrainingType)[keyof typeof TrainingType];
|
|
733
739
|
export interface SolutionVersionSummary {
|
|
734
|
-
solutionVersionArn?: string;
|
|
735
|
-
status?: string;
|
|
736
|
-
trainingMode?: TrainingMode;
|
|
737
|
-
trainingType?: TrainingType;
|
|
738
|
-
creationDateTime?: Date;
|
|
739
|
-
lastUpdatedDateTime?: Date;
|
|
740
|
-
failureReason?: string;
|
|
740
|
+
solutionVersionArn?: string | undefined;
|
|
741
|
+
status?: string | undefined;
|
|
742
|
+
trainingMode?: TrainingMode | undefined;
|
|
743
|
+
trainingType?: TrainingType | undefined;
|
|
744
|
+
creationDateTime?: Date | undefined;
|
|
745
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
746
|
+
failureReason?: string | undefined;
|
|
741
747
|
}
|
|
742
748
|
export interface Solution {
|
|
743
|
-
name?: string;
|
|
744
|
-
solutionArn?: string;
|
|
745
|
-
performHPO?: boolean;
|
|
746
|
-
performAutoML?: boolean;
|
|
747
|
-
performAutoTraining?: boolean;
|
|
748
|
-
recipeArn?: string;
|
|
749
|
-
datasetGroupArn?: string;
|
|
750
|
-
eventType?: string;
|
|
751
|
-
solutionConfig?: SolutionConfig;
|
|
752
|
-
autoMLResult?: AutoMLResult;
|
|
753
|
-
status?: string;
|
|
754
|
-
creationDateTime?: Date;
|
|
755
|
-
lastUpdatedDateTime?: Date;
|
|
756
|
-
latestSolutionVersion?: SolutionVersionSummary;
|
|
757
|
-
latestSolutionUpdate?: SolutionUpdateSummary;
|
|
749
|
+
name?: string | undefined;
|
|
750
|
+
solutionArn?: string | undefined;
|
|
751
|
+
performHPO?: boolean | undefined;
|
|
752
|
+
performAutoML?: boolean | undefined;
|
|
753
|
+
performAutoTraining?: boolean | undefined;
|
|
754
|
+
recipeArn?: string | undefined;
|
|
755
|
+
datasetGroupArn?: string | undefined;
|
|
756
|
+
eventType?: string | undefined;
|
|
757
|
+
solutionConfig?: SolutionConfig | undefined;
|
|
758
|
+
autoMLResult?: AutoMLResult | undefined;
|
|
759
|
+
status?: string | undefined;
|
|
760
|
+
creationDateTime?: Date | undefined;
|
|
761
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
762
|
+
latestSolutionVersion?: SolutionVersionSummary | undefined;
|
|
763
|
+
latestSolutionUpdate?: SolutionUpdateSummary | undefined;
|
|
758
764
|
}
|
|
759
765
|
export interface DescribeSolutionResponse {
|
|
760
|
-
solution?: Solution;
|
|
766
|
+
solution?: Solution | undefined;
|
|
761
767
|
}
|
|
762
768
|
export interface DescribeSolutionVersionRequest {
|
|
763
769
|
solutionVersionArn: string | undefined;
|
|
764
770
|
}
|
|
765
771
|
export interface TunedHPOParams {
|
|
766
|
-
algorithmHyperParameters?: Record<string, string
|
|
772
|
+
algorithmHyperParameters?: Record<string, string> | undefined;
|
|
767
773
|
}
|
|
768
774
|
export interface SolutionVersion {
|
|
769
|
-
name?: string;
|
|
770
|
-
solutionVersionArn?: string;
|
|
771
|
-
solutionArn?: string;
|
|
772
|
-
performHPO?: boolean;
|
|
773
|
-
performAutoML?: boolean;
|
|
774
|
-
recipeArn?: string;
|
|
775
|
-
eventType?: string;
|
|
776
|
-
datasetGroupArn?: string;
|
|
777
|
-
solutionConfig?: SolutionConfig;
|
|
778
|
-
trainingHours?: number;
|
|
779
|
-
trainingMode?: TrainingMode;
|
|
780
|
-
tunedHPOParams?: TunedHPOParams;
|
|
781
|
-
status?: string;
|
|
782
|
-
failureReason?: string;
|
|
783
|
-
creationDateTime?: Date;
|
|
784
|
-
lastUpdatedDateTime?: Date;
|
|
785
|
-
trainingType?: TrainingType;
|
|
775
|
+
name?: string | undefined;
|
|
776
|
+
solutionVersionArn?: string | undefined;
|
|
777
|
+
solutionArn?: string | undefined;
|
|
778
|
+
performHPO?: boolean | undefined;
|
|
779
|
+
performAutoML?: boolean | undefined;
|
|
780
|
+
recipeArn?: string | undefined;
|
|
781
|
+
eventType?: string | undefined;
|
|
782
|
+
datasetGroupArn?: string | undefined;
|
|
783
|
+
solutionConfig?: SolutionConfig | undefined;
|
|
784
|
+
trainingHours?: number | undefined;
|
|
785
|
+
trainingMode?: TrainingMode | undefined;
|
|
786
|
+
tunedHPOParams?: TunedHPOParams | undefined;
|
|
787
|
+
status?: string | undefined;
|
|
788
|
+
failureReason?: string | undefined;
|
|
789
|
+
creationDateTime?: Date | undefined;
|
|
790
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
791
|
+
trainingType?: TrainingType | undefined;
|
|
786
792
|
}
|
|
787
793
|
export interface DescribeSolutionVersionResponse {
|
|
788
|
-
solutionVersion?: SolutionVersion;
|
|
794
|
+
solutionVersion?: SolutionVersion | undefined;
|
|
789
795
|
}
|
|
790
796
|
export interface GetSolutionMetricsRequest {
|
|
791
797
|
solutionVersionArn: string | undefined;
|
|
792
798
|
}
|
|
793
799
|
export interface GetSolutionMetricsResponse {
|
|
794
|
-
solutionVersionArn?: string;
|
|
795
|
-
metrics?: Record<string, number
|
|
800
|
+
solutionVersionArn?: string | undefined;
|
|
801
|
+
metrics?: Record<string, number> | undefined;
|
|
796
802
|
}
|
|
797
803
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
798
804
|
readonly name: "InvalidNextTokenException";
|
|
@@ -802,205 +808,205 @@ export declare class InvalidNextTokenException extends __BaseException {
|
|
|
802
808
|
);
|
|
803
809
|
}
|
|
804
810
|
export interface ListBatchInferenceJobsRequest {
|
|
805
|
-
solutionVersionArn?: string;
|
|
806
|
-
nextToken?: string;
|
|
807
|
-
maxResults?: number;
|
|
811
|
+
solutionVersionArn?: string | undefined;
|
|
812
|
+
nextToken?: string | undefined;
|
|
813
|
+
maxResults?: number | undefined;
|
|
808
814
|
}
|
|
809
815
|
export interface BatchInferenceJobSummary {
|
|
810
|
-
batchInferenceJobArn?: string;
|
|
811
|
-
jobName?: string;
|
|
812
|
-
status?: string;
|
|
813
|
-
creationDateTime?: Date;
|
|
814
|
-
lastUpdatedDateTime?: Date;
|
|
815
|
-
failureReason?: string;
|
|
816
|
-
solutionVersionArn?: string;
|
|
817
|
-
batchInferenceJobMode?: BatchInferenceJobMode;
|
|
816
|
+
batchInferenceJobArn?: string | undefined;
|
|
817
|
+
jobName?: string | undefined;
|
|
818
|
+
status?: string | undefined;
|
|
819
|
+
creationDateTime?: Date | undefined;
|
|
820
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
821
|
+
failureReason?: string | undefined;
|
|
822
|
+
solutionVersionArn?: string | undefined;
|
|
823
|
+
batchInferenceJobMode?: BatchInferenceJobMode | undefined;
|
|
818
824
|
}
|
|
819
825
|
export interface ListBatchInferenceJobsResponse {
|
|
820
|
-
batchInferenceJobs?: BatchInferenceJobSummary[];
|
|
821
|
-
nextToken?: string;
|
|
826
|
+
batchInferenceJobs?: BatchInferenceJobSummary[] | undefined;
|
|
827
|
+
nextToken?: string | undefined;
|
|
822
828
|
}
|
|
823
829
|
export interface ListBatchSegmentJobsRequest {
|
|
824
|
-
solutionVersionArn?: string;
|
|
825
|
-
nextToken?: string;
|
|
826
|
-
maxResults?: number;
|
|
830
|
+
solutionVersionArn?: string | undefined;
|
|
831
|
+
nextToken?: string | undefined;
|
|
832
|
+
maxResults?: number | undefined;
|
|
827
833
|
}
|
|
828
834
|
export interface BatchSegmentJobSummary {
|
|
829
|
-
batchSegmentJobArn?: string;
|
|
830
|
-
jobName?: string;
|
|
831
|
-
status?: string;
|
|
832
|
-
creationDateTime?: Date;
|
|
833
|
-
lastUpdatedDateTime?: Date;
|
|
834
|
-
failureReason?: string;
|
|
835
|
-
solutionVersionArn?: string;
|
|
835
|
+
batchSegmentJobArn?: string | undefined;
|
|
836
|
+
jobName?: string | undefined;
|
|
837
|
+
status?: string | undefined;
|
|
838
|
+
creationDateTime?: Date | undefined;
|
|
839
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
840
|
+
failureReason?: string | undefined;
|
|
841
|
+
solutionVersionArn?: string | undefined;
|
|
836
842
|
}
|
|
837
843
|
export interface ListBatchSegmentJobsResponse {
|
|
838
|
-
batchSegmentJobs?: BatchSegmentJobSummary[];
|
|
839
|
-
nextToken?: string;
|
|
844
|
+
batchSegmentJobs?: BatchSegmentJobSummary[] | undefined;
|
|
845
|
+
nextToken?: string | undefined;
|
|
840
846
|
}
|
|
841
847
|
export interface ListCampaignsRequest {
|
|
842
|
-
solutionArn?: string;
|
|
843
|
-
nextToken?: string;
|
|
844
|
-
maxResults?: number;
|
|
848
|
+
solutionArn?: string | undefined;
|
|
849
|
+
nextToken?: string | undefined;
|
|
850
|
+
maxResults?: number | undefined;
|
|
845
851
|
}
|
|
846
852
|
export interface CampaignSummary {
|
|
847
|
-
name?: string;
|
|
848
|
-
campaignArn?: string;
|
|
849
|
-
status?: string;
|
|
850
|
-
creationDateTime?: Date;
|
|
851
|
-
lastUpdatedDateTime?: Date;
|
|
852
|
-
failureReason?: string;
|
|
853
|
+
name?: string | undefined;
|
|
854
|
+
campaignArn?: string | undefined;
|
|
855
|
+
status?: string | undefined;
|
|
856
|
+
creationDateTime?: Date | undefined;
|
|
857
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
858
|
+
failureReason?: string | undefined;
|
|
853
859
|
}
|
|
854
860
|
export interface ListCampaignsResponse {
|
|
855
|
-
campaigns?: CampaignSummary[];
|
|
856
|
-
nextToken?: string;
|
|
861
|
+
campaigns?: CampaignSummary[] | undefined;
|
|
862
|
+
nextToken?: string | undefined;
|
|
857
863
|
}
|
|
858
864
|
export interface ListDataDeletionJobsRequest {
|
|
859
|
-
datasetGroupArn?: string;
|
|
860
|
-
nextToken?: string;
|
|
861
|
-
maxResults?: number;
|
|
865
|
+
datasetGroupArn?: string | undefined;
|
|
866
|
+
nextToken?: string | undefined;
|
|
867
|
+
maxResults?: number | undefined;
|
|
862
868
|
}
|
|
863
869
|
export interface DataDeletionJobSummary {
|
|
864
|
-
dataDeletionJobArn?: string;
|
|
865
|
-
datasetGroupArn?: string;
|
|
866
|
-
jobName?: string;
|
|
867
|
-
status?: string;
|
|
868
|
-
creationDateTime?: Date;
|
|
869
|
-
lastUpdatedDateTime?: Date;
|
|
870
|
-
failureReason?: string;
|
|
870
|
+
dataDeletionJobArn?: string | undefined;
|
|
871
|
+
datasetGroupArn?: string | undefined;
|
|
872
|
+
jobName?: string | undefined;
|
|
873
|
+
status?: string | undefined;
|
|
874
|
+
creationDateTime?: Date | undefined;
|
|
875
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
876
|
+
failureReason?: string | undefined;
|
|
871
877
|
}
|
|
872
878
|
export interface ListDataDeletionJobsResponse {
|
|
873
|
-
dataDeletionJobs?: DataDeletionJobSummary[];
|
|
874
|
-
nextToken?: string;
|
|
879
|
+
dataDeletionJobs?: DataDeletionJobSummary[] | undefined;
|
|
880
|
+
nextToken?: string | undefined;
|
|
875
881
|
}
|
|
876
882
|
export interface ListDatasetExportJobsRequest {
|
|
877
|
-
datasetArn?: string;
|
|
878
|
-
nextToken?: string;
|
|
879
|
-
maxResults?: number;
|
|
883
|
+
datasetArn?: string | undefined;
|
|
884
|
+
nextToken?: string | undefined;
|
|
885
|
+
maxResults?: number | undefined;
|
|
880
886
|
}
|
|
881
887
|
export interface DatasetExportJobSummary {
|
|
882
|
-
datasetExportJobArn?: string;
|
|
883
|
-
jobName?: string;
|
|
884
|
-
status?: string;
|
|
885
|
-
creationDateTime?: Date;
|
|
886
|
-
lastUpdatedDateTime?: Date;
|
|
887
|
-
failureReason?: string;
|
|
888
|
+
datasetExportJobArn?: string | undefined;
|
|
889
|
+
jobName?: string | undefined;
|
|
890
|
+
status?: string | undefined;
|
|
891
|
+
creationDateTime?: Date | undefined;
|
|
892
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
893
|
+
failureReason?: string | undefined;
|
|
888
894
|
}
|
|
889
895
|
export interface ListDatasetExportJobsResponse {
|
|
890
|
-
datasetExportJobs?: DatasetExportJobSummary[];
|
|
891
|
-
nextToken?: string;
|
|
896
|
+
datasetExportJobs?: DatasetExportJobSummary[] | undefined;
|
|
897
|
+
nextToken?: string | undefined;
|
|
892
898
|
}
|
|
893
899
|
export interface ListDatasetGroupsRequest {
|
|
894
|
-
nextToken?: string;
|
|
895
|
-
maxResults?: number;
|
|
900
|
+
nextToken?: string | undefined;
|
|
901
|
+
maxResults?: number | undefined;
|
|
896
902
|
}
|
|
897
903
|
export interface DatasetGroupSummary {
|
|
898
|
-
name?: string;
|
|
899
|
-
datasetGroupArn?: string;
|
|
900
|
-
status?: string;
|
|
901
|
-
creationDateTime?: Date;
|
|
902
|
-
lastUpdatedDateTime?: Date;
|
|
903
|
-
failureReason?: string;
|
|
904
|
-
domain?: Domain;
|
|
904
|
+
name?: string | undefined;
|
|
905
|
+
datasetGroupArn?: string | undefined;
|
|
906
|
+
status?: string | undefined;
|
|
907
|
+
creationDateTime?: Date | undefined;
|
|
908
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
909
|
+
failureReason?: string | undefined;
|
|
910
|
+
domain?: Domain | undefined;
|
|
905
911
|
}
|
|
906
912
|
export interface ListDatasetGroupsResponse {
|
|
907
|
-
datasetGroups?: DatasetGroupSummary[];
|
|
908
|
-
nextToken?: string;
|
|
913
|
+
datasetGroups?: DatasetGroupSummary[] | undefined;
|
|
914
|
+
nextToken?: string | undefined;
|
|
909
915
|
}
|
|
910
916
|
export interface ListDatasetImportJobsRequest {
|
|
911
|
-
datasetArn?: string;
|
|
912
|
-
nextToken?: string;
|
|
913
|
-
maxResults?: number;
|
|
917
|
+
datasetArn?: string | undefined;
|
|
918
|
+
nextToken?: string | undefined;
|
|
919
|
+
maxResults?: number | undefined;
|
|
914
920
|
}
|
|
915
921
|
export interface DatasetImportJobSummary {
|
|
916
|
-
datasetImportJobArn?: string;
|
|
917
|
-
jobName?: string;
|
|
918
|
-
status?: string;
|
|
919
|
-
creationDateTime?: Date;
|
|
920
|
-
lastUpdatedDateTime?: Date;
|
|
921
|
-
failureReason?: string;
|
|
922
|
-
importMode?: ImportMode;
|
|
922
|
+
datasetImportJobArn?: string | undefined;
|
|
923
|
+
jobName?: string | undefined;
|
|
924
|
+
status?: string | undefined;
|
|
925
|
+
creationDateTime?: Date | undefined;
|
|
926
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
927
|
+
failureReason?: string | undefined;
|
|
928
|
+
importMode?: ImportMode | undefined;
|
|
923
929
|
}
|
|
924
930
|
export interface ListDatasetImportJobsResponse {
|
|
925
|
-
datasetImportJobs?: DatasetImportJobSummary[];
|
|
926
|
-
nextToken?: string;
|
|
931
|
+
datasetImportJobs?: DatasetImportJobSummary[] | undefined;
|
|
932
|
+
nextToken?: string | undefined;
|
|
927
933
|
}
|
|
928
934
|
export interface ListDatasetsRequest {
|
|
929
|
-
datasetGroupArn?: string;
|
|
930
|
-
nextToken?: string;
|
|
931
|
-
maxResults?: number;
|
|
935
|
+
datasetGroupArn?: string | undefined;
|
|
936
|
+
nextToken?: string | undefined;
|
|
937
|
+
maxResults?: number | undefined;
|
|
932
938
|
}
|
|
933
939
|
export interface DatasetSummary {
|
|
934
|
-
name?: string;
|
|
935
|
-
datasetArn?: string;
|
|
936
|
-
datasetType?: string;
|
|
937
|
-
status?: string;
|
|
938
|
-
creationDateTime?: Date;
|
|
939
|
-
lastUpdatedDateTime?: Date;
|
|
940
|
+
name?: string | undefined;
|
|
941
|
+
datasetArn?: string | undefined;
|
|
942
|
+
datasetType?: string | undefined;
|
|
943
|
+
status?: string | undefined;
|
|
944
|
+
creationDateTime?: Date | undefined;
|
|
945
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
940
946
|
}
|
|
941
947
|
export interface ListDatasetsResponse {
|
|
942
|
-
datasets?: DatasetSummary[];
|
|
943
|
-
nextToken?: string;
|
|
948
|
+
datasets?: DatasetSummary[] | undefined;
|
|
949
|
+
nextToken?: string | undefined;
|
|
944
950
|
}
|
|
945
951
|
export interface ListEventTrackersRequest {
|
|
946
|
-
datasetGroupArn?: string;
|
|
947
|
-
nextToken?: string;
|
|
948
|
-
maxResults?: number;
|
|
952
|
+
datasetGroupArn?: string | undefined;
|
|
953
|
+
nextToken?: string | undefined;
|
|
954
|
+
maxResults?: number | undefined;
|
|
949
955
|
}
|
|
950
956
|
export interface EventTrackerSummary {
|
|
951
|
-
name?: string;
|
|
952
|
-
eventTrackerArn?: string;
|
|
953
|
-
status?: string;
|
|
954
|
-
creationDateTime?: Date;
|
|
955
|
-
lastUpdatedDateTime?: Date;
|
|
957
|
+
name?: string | undefined;
|
|
958
|
+
eventTrackerArn?: string | undefined;
|
|
959
|
+
status?: string | undefined;
|
|
960
|
+
creationDateTime?: Date | undefined;
|
|
961
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
956
962
|
}
|
|
957
963
|
export interface ListEventTrackersResponse {
|
|
958
|
-
eventTrackers?: EventTrackerSummary[];
|
|
959
|
-
nextToken?: string;
|
|
964
|
+
eventTrackers?: EventTrackerSummary[] | undefined;
|
|
965
|
+
nextToken?: string | undefined;
|
|
960
966
|
}
|
|
961
967
|
export interface ListFiltersRequest {
|
|
962
|
-
datasetGroupArn?: string;
|
|
963
|
-
nextToken?: string;
|
|
964
|
-
maxResults?: number;
|
|
968
|
+
datasetGroupArn?: string | undefined;
|
|
969
|
+
nextToken?: string | undefined;
|
|
970
|
+
maxResults?: number | undefined;
|
|
965
971
|
}
|
|
966
972
|
export interface FilterSummary {
|
|
967
|
-
name?: string;
|
|
968
|
-
filterArn?: string;
|
|
969
|
-
creationDateTime?: Date;
|
|
970
|
-
lastUpdatedDateTime?: Date;
|
|
971
|
-
datasetGroupArn?: string;
|
|
972
|
-
failureReason?: string;
|
|
973
|
-
status?: string;
|
|
973
|
+
name?: string | undefined;
|
|
974
|
+
filterArn?: string | undefined;
|
|
975
|
+
creationDateTime?: Date | undefined;
|
|
976
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
977
|
+
datasetGroupArn?: string | undefined;
|
|
978
|
+
failureReason?: string | undefined;
|
|
979
|
+
status?: string | undefined;
|
|
974
980
|
}
|
|
975
981
|
export interface ListFiltersResponse {
|
|
976
|
-
Filters?: FilterSummary[];
|
|
977
|
-
nextToken?: string;
|
|
982
|
+
Filters?: FilterSummary[] | undefined;
|
|
983
|
+
nextToken?: string | undefined;
|
|
978
984
|
}
|
|
979
985
|
export interface ListMetricAttributionMetricsRequest {
|
|
980
|
-
metricAttributionArn?: string;
|
|
981
|
-
nextToken?: string;
|
|
982
|
-
maxResults?: number;
|
|
986
|
+
metricAttributionArn?: string | undefined;
|
|
987
|
+
nextToken?: string | undefined;
|
|
988
|
+
maxResults?: number | undefined;
|
|
983
989
|
}
|
|
984
990
|
export interface ListMetricAttributionMetricsResponse {
|
|
985
|
-
metrics?: MetricAttribute[];
|
|
986
|
-
nextToken?: string;
|
|
991
|
+
metrics?: MetricAttribute[] | undefined;
|
|
992
|
+
nextToken?: string | undefined;
|
|
987
993
|
}
|
|
988
994
|
export interface ListMetricAttributionsRequest {
|
|
989
|
-
datasetGroupArn?: string;
|
|
990
|
-
nextToken?: string;
|
|
991
|
-
maxResults?: number;
|
|
995
|
+
datasetGroupArn?: string | undefined;
|
|
996
|
+
nextToken?: string | undefined;
|
|
997
|
+
maxResults?: number | undefined;
|
|
992
998
|
}
|
|
993
999
|
export interface MetricAttributionSummary {
|
|
994
|
-
name?: string;
|
|
995
|
-
metricAttributionArn?: string;
|
|
996
|
-
status?: string;
|
|
997
|
-
creationDateTime?: Date;
|
|
998
|
-
lastUpdatedDateTime?: Date;
|
|
999
|
-
failureReason?: string;
|
|
1000
|
+
name?: string | undefined;
|
|
1001
|
+
metricAttributionArn?: string | undefined;
|
|
1002
|
+
status?: string | undefined;
|
|
1003
|
+
creationDateTime?: Date | undefined;
|
|
1004
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
1005
|
+
failureReason?: string | undefined;
|
|
1000
1006
|
}
|
|
1001
1007
|
export interface ListMetricAttributionsResponse {
|
|
1002
|
-
metricAttributions?: MetricAttributionSummary[];
|
|
1003
|
-
nextToken?: string;
|
|
1008
|
+
metricAttributions?: MetricAttributionSummary[] | undefined;
|
|
1009
|
+
nextToken?: string | undefined;
|
|
1004
1010
|
}
|
|
1005
1011
|
export declare const RecipeProvider: {
|
|
1006
1012
|
readonly SERVICE: "SERVICE";
|
|
@@ -1008,100 +1014,100 @@ export declare const RecipeProvider: {
|
|
|
1008
1014
|
export type RecipeProvider =
|
|
1009
1015
|
(typeof RecipeProvider)[keyof typeof RecipeProvider];
|
|
1010
1016
|
export interface ListRecipesRequest {
|
|
1011
|
-
recipeProvider?: RecipeProvider;
|
|
1012
|
-
nextToken?: string;
|
|
1013
|
-
maxResults?: number;
|
|
1014
|
-
domain?: Domain;
|
|
1017
|
+
recipeProvider?: RecipeProvider | undefined;
|
|
1018
|
+
nextToken?: string | undefined;
|
|
1019
|
+
maxResults?: number | undefined;
|
|
1020
|
+
domain?: Domain | undefined;
|
|
1015
1021
|
}
|
|
1016
1022
|
export interface RecipeSummary {
|
|
1017
|
-
name?: string;
|
|
1018
|
-
recipeArn?: string;
|
|
1019
|
-
status?: string;
|
|
1020
|
-
creationDateTime?: Date;
|
|
1021
|
-
lastUpdatedDateTime?: Date;
|
|
1022
|
-
domain?: Domain;
|
|
1023
|
+
name?: string | undefined;
|
|
1024
|
+
recipeArn?: string | undefined;
|
|
1025
|
+
status?: string | undefined;
|
|
1026
|
+
creationDateTime?: Date | undefined;
|
|
1027
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
1028
|
+
domain?: Domain | undefined;
|
|
1023
1029
|
}
|
|
1024
1030
|
export interface ListRecipesResponse {
|
|
1025
|
-
recipes?: RecipeSummary[];
|
|
1026
|
-
nextToken?: string;
|
|
1031
|
+
recipes?: RecipeSummary[] | undefined;
|
|
1032
|
+
nextToken?: string | undefined;
|
|
1027
1033
|
}
|
|
1028
1034
|
export interface ListRecommendersRequest {
|
|
1029
|
-
datasetGroupArn?: string;
|
|
1030
|
-
nextToken?: string;
|
|
1031
|
-
maxResults?: number;
|
|
1035
|
+
datasetGroupArn?: string | undefined;
|
|
1036
|
+
nextToken?: string | undefined;
|
|
1037
|
+
maxResults?: number | undefined;
|
|
1032
1038
|
}
|
|
1033
1039
|
export interface RecommenderSummary {
|
|
1034
|
-
name?: string;
|
|
1035
|
-
recommenderArn?: string;
|
|
1036
|
-
datasetGroupArn?: string;
|
|
1037
|
-
recipeArn?: string;
|
|
1038
|
-
recommenderConfig?: RecommenderConfig;
|
|
1039
|
-
status?: string;
|
|
1040
|
-
creationDateTime?: Date;
|
|
1041
|
-
lastUpdatedDateTime?: Date;
|
|
1040
|
+
name?: string | undefined;
|
|
1041
|
+
recommenderArn?: string | undefined;
|
|
1042
|
+
datasetGroupArn?: string | undefined;
|
|
1043
|
+
recipeArn?: string | undefined;
|
|
1044
|
+
recommenderConfig?: RecommenderConfig | undefined;
|
|
1045
|
+
status?: string | undefined;
|
|
1046
|
+
creationDateTime?: Date | undefined;
|
|
1047
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
1042
1048
|
}
|
|
1043
1049
|
export interface ListRecommendersResponse {
|
|
1044
|
-
recommenders?: RecommenderSummary[];
|
|
1045
|
-
nextToken?: string;
|
|
1050
|
+
recommenders?: RecommenderSummary[] | undefined;
|
|
1051
|
+
nextToken?: string | undefined;
|
|
1046
1052
|
}
|
|
1047
1053
|
export interface ListSchemasRequest {
|
|
1048
|
-
nextToken?: string;
|
|
1049
|
-
maxResults?: number;
|
|
1054
|
+
nextToken?: string | undefined;
|
|
1055
|
+
maxResults?: number | undefined;
|
|
1050
1056
|
}
|
|
1051
1057
|
export interface DatasetSchemaSummary {
|
|
1052
|
-
name?: string;
|
|
1053
|
-
schemaArn?: string;
|
|
1054
|
-
creationDateTime?: Date;
|
|
1055
|
-
lastUpdatedDateTime?: Date;
|
|
1056
|
-
domain?: Domain;
|
|
1058
|
+
name?: string | undefined;
|
|
1059
|
+
schemaArn?: string | undefined;
|
|
1060
|
+
creationDateTime?: Date | undefined;
|
|
1061
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
1062
|
+
domain?: Domain | undefined;
|
|
1057
1063
|
}
|
|
1058
1064
|
export interface ListSchemasResponse {
|
|
1059
|
-
schemas?: DatasetSchemaSummary[];
|
|
1060
|
-
nextToken?: string;
|
|
1065
|
+
schemas?: DatasetSchemaSummary[] | undefined;
|
|
1066
|
+
nextToken?: string | undefined;
|
|
1061
1067
|
}
|
|
1062
1068
|
export interface ListSolutionsRequest {
|
|
1063
|
-
datasetGroupArn?: string;
|
|
1064
|
-
nextToken?: string;
|
|
1065
|
-
maxResults?: number;
|
|
1069
|
+
datasetGroupArn?: string | undefined;
|
|
1070
|
+
nextToken?: string | undefined;
|
|
1071
|
+
maxResults?: number | undefined;
|
|
1066
1072
|
}
|
|
1067
1073
|
export interface SolutionSummary {
|
|
1068
|
-
name?: string;
|
|
1069
|
-
solutionArn?: string;
|
|
1070
|
-
status?: string;
|
|
1071
|
-
creationDateTime?: Date;
|
|
1072
|
-
lastUpdatedDateTime?: Date;
|
|
1073
|
-
recipeArn?: string;
|
|
1074
|
+
name?: string | undefined;
|
|
1075
|
+
solutionArn?: string | undefined;
|
|
1076
|
+
status?: string | undefined;
|
|
1077
|
+
creationDateTime?: Date | undefined;
|
|
1078
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
1079
|
+
recipeArn?: string | undefined;
|
|
1074
1080
|
}
|
|
1075
1081
|
export interface ListSolutionsResponse {
|
|
1076
|
-
solutions?: SolutionSummary[];
|
|
1077
|
-
nextToken?: string;
|
|
1082
|
+
solutions?: SolutionSummary[] | undefined;
|
|
1083
|
+
nextToken?: string | undefined;
|
|
1078
1084
|
}
|
|
1079
1085
|
export interface ListSolutionVersionsRequest {
|
|
1080
|
-
solutionArn?: string;
|
|
1081
|
-
nextToken?: string;
|
|
1082
|
-
maxResults?: number;
|
|
1086
|
+
solutionArn?: string | undefined;
|
|
1087
|
+
nextToken?: string | undefined;
|
|
1088
|
+
maxResults?: number | undefined;
|
|
1083
1089
|
}
|
|
1084
1090
|
export interface ListSolutionVersionsResponse {
|
|
1085
|
-
solutionVersions?: SolutionVersionSummary[];
|
|
1086
|
-
nextToken?: string;
|
|
1091
|
+
solutionVersions?: SolutionVersionSummary[] | undefined;
|
|
1092
|
+
nextToken?: string | undefined;
|
|
1087
1093
|
}
|
|
1088
1094
|
export interface ListTagsForResourceRequest {
|
|
1089
1095
|
resourceArn: string | undefined;
|
|
1090
1096
|
}
|
|
1091
1097
|
export interface ListTagsForResourceResponse {
|
|
1092
|
-
tags?: Tag[];
|
|
1098
|
+
tags?: Tag[] | undefined;
|
|
1093
1099
|
}
|
|
1094
1100
|
export interface StartRecommenderRequest {
|
|
1095
1101
|
recommenderArn: string | undefined;
|
|
1096
1102
|
}
|
|
1097
1103
|
export interface StartRecommenderResponse {
|
|
1098
|
-
recommenderArn?: string;
|
|
1104
|
+
recommenderArn?: string | undefined;
|
|
1099
1105
|
}
|
|
1100
1106
|
export interface StopRecommenderRequest {
|
|
1101
1107
|
recommenderArn: string | undefined;
|
|
1102
1108
|
}
|
|
1103
1109
|
export interface StopRecommenderResponse {
|
|
1104
|
-
recommenderArn?: string;
|
|
1110
|
+
recommenderArn?: string | undefined;
|
|
1105
1111
|
}
|
|
1106
1112
|
export interface StopSolutionVersionCreationRequest {
|
|
1107
1113
|
solutionVersionArn: string | undefined;
|
|
@@ -1125,43 +1131,43 @@ export interface UntagResourceRequest {
|
|
|
1125
1131
|
export interface UntagResourceResponse {}
|
|
1126
1132
|
export interface UpdateCampaignRequest {
|
|
1127
1133
|
campaignArn: string | undefined;
|
|
1128
|
-
solutionVersionArn?: string;
|
|
1129
|
-
minProvisionedTPS?: number;
|
|
1130
|
-
campaignConfig?: CampaignConfig;
|
|
1134
|
+
solutionVersionArn?: string | undefined;
|
|
1135
|
+
minProvisionedTPS?: number | undefined;
|
|
1136
|
+
campaignConfig?: CampaignConfig | undefined;
|
|
1131
1137
|
}
|
|
1132
1138
|
export interface UpdateCampaignResponse {
|
|
1133
|
-
campaignArn?: string;
|
|
1139
|
+
campaignArn?: string | undefined;
|
|
1134
1140
|
}
|
|
1135
1141
|
export interface UpdateDatasetRequest {
|
|
1136
1142
|
datasetArn: string | undefined;
|
|
1137
1143
|
schemaArn: string | undefined;
|
|
1138
1144
|
}
|
|
1139
1145
|
export interface UpdateDatasetResponse {
|
|
1140
|
-
datasetArn?: string;
|
|
1146
|
+
datasetArn?: string | undefined;
|
|
1141
1147
|
}
|
|
1142
1148
|
export interface UpdateMetricAttributionRequest {
|
|
1143
|
-
addMetrics?: MetricAttribute[];
|
|
1144
|
-
removeMetrics?: string[];
|
|
1145
|
-
metricsOutputConfig?: MetricAttributionOutput;
|
|
1146
|
-
metricAttributionArn?: string;
|
|
1149
|
+
addMetrics?: MetricAttribute[] | undefined;
|
|
1150
|
+
removeMetrics?: string[] | undefined;
|
|
1151
|
+
metricsOutputConfig?: MetricAttributionOutput | undefined;
|
|
1152
|
+
metricAttributionArn?: string | undefined;
|
|
1147
1153
|
}
|
|
1148
1154
|
export interface UpdateMetricAttributionResponse {
|
|
1149
|
-
metricAttributionArn?: string;
|
|
1155
|
+
metricAttributionArn?: string | undefined;
|
|
1150
1156
|
}
|
|
1151
1157
|
export interface UpdateRecommenderRequest {
|
|
1152
1158
|
recommenderArn: string | undefined;
|
|
1153
1159
|
recommenderConfig: RecommenderConfig | undefined;
|
|
1154
1160
|
}
|
|
1155
1161
|
export interface UpdateRecommenderResponse {
|
|
1156
|
-
recommenderArn?: string;
|
|
1162
|
+
recommenderArn?: string | undefined;
|
|
1157
1163
|
}
|
|
1158
1164
|
export interface UpdateSolutionRequest {
|
|
1159
1165
|
solutionArn: string | undefined;
|
|
1160
|
-
performAutoTraining?: boolean;
|
|
1161
|
-
solutionUpdateConfig?: SolutionUpdateConfig;
|
|
1166
|
+
performAutoTraining?: boolean | undefined;
|
|
1167
|
+
solutionUpdateConfig?: SolutionUpdateConfig | undefined;
|
|
1162
1168
|
}
|
|
1163
1169
|
export interface UpdateSolutionResponse {
|
|
1164
|
-
solutionArn?: string;
|
|
1170
|
+
solutionArn?: string | undefined;
|
|
1165
1171
|
}
|
|
1166
1172
|
export declare const CreateFilterRequestFilterSensitiveLog: (
|
|
1167
1173
|
obj: CreateFilterRequest
|