@aws-sdk/client-personalize 3.211.0 → 3.213.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/Personalize.js +90 -0
- package/dist-cjs/commands/CreateMetricAttributionCommand.js +46 -0
- package/dist-cjs/commands/DeleteMetricAttributionCommand.js +46 -0
- package/dist-cjs/commands/DescribeMetricAttributionCommand.js +46 -0
- package/dist-cjs/commands/ListMetricAttributionMetricsCommand.js +46 -0
- package/dist-cjs/commands/ListMetricAttributionsCommand.js +46 -0
- package/dist-cjs/commands/UpdateMetricAttributionCommand.js +46 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +64 -4
- package/dist-cjs/pagination/ListMetricAttributionMetricsPaginator.js +36 -0
- package/dist-cjs/pagination/ListMetricAttributionsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +499 -31
- package/dist-es/Personalize.js +90 -0
- package/dist-es/commands/CreateMetricAttributionCommand.js +42 -0
- package/dist-es/commands/DeleteMetricAttributionCommand.js +42 -0
- package/dist-es/commands/DescribeMetricAttributionCommand.js +42 -0
- package/dist-es/commands/ListMetricAttributionMetricsCommand.js +42 -0
- package/dist-es/commands/ListMetricAttributionsCommand.js +42 -0
- package/dist-es/commands/UpdateMetricAttributionCommand.js +42 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +45 -0
- package/dist-es/pagination/ListMetricAttributionMetricsPaginator.js +32 -0
- package/dist-es/pagination/ListMetricAttributionsPaginator.js +32 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +484 -28
- package/dist-types/Personalize.d.ts +44 -0
- package/dist-types/PersonalizeClient.d.ts +8 -2
- package/dist-types/commands/CreateMetricAttributionCommand.d.ts +39 -0
- package/dist-types/commands/DeleteMetricAttributionCommand.d.ts +37 -0
- package/dist-types/commands/DescribeMetricAttributionCommand.d.ts +37 -0
- package/dist-types/commands/ListMetricAttributionMetricsCommand.d.ts +37 -0
- package/dist-types/commands/ListMetricAttributionsCommand.d.ts +37 -0
- package/dist-types/commands/UpdateMetricAttributionCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +295 -0
- package/dist-types/pagination/ListMetricAttributionMetricsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListMetricAttributionsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
- package/dist-types/ts3.4/Personalize.d.ts +102 -0
- package/dist-types/ts3.4/PersonalizeClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateMetricAttributionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteMetricAttributionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DescribeMetricAttributionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListMetricAttributionMetricsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListMetricAttributionsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateMetricAttributionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +122 -0
- package/dist-types/ts3.4/pagination/ListMetricAttributionMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListMetricAttributionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
- package/package.json +28 -28
|
@@ -35,6 +35,10 @@ import {
|
|
|
35
35
|
CreateFilterCommandInput,
|
|
36
36
|
CreateFilterCommandOutput,
|
|
37
37
|
} from "./commands/CreateFilterCommand";
|
|
38
|
+
import {
|
|
39
|
+
CreateMetricAttributionCommandInput,
|
|
40
|
+
CreateMetricAttributionCommandOutput,
|
|
41
|
+
} from "./commands/CreateMetricAttributionCommand";
|
|
38
42
|
import {
|
|
39
43
|
CreateRecommenderCommandInput,
|
|
40
44
|
CreateRecommenderCommandOutput,
|
|
@@ -71,6 +75,10 @@ import {
|
|
|
71
75
|
DeleteFilterCommandInput,
|
|
72
76
|
DeleteFilterCommandOutput,
|
|
73
77
|
} from "./commands/DeleteFilterCommand";
|
|
78
|
+
import {
|
|
79
|
+
DeleteMetricAttributionCommandInput,
|
|
80
|
+
DeleteMetricAttributionCommandOutput,
|
|
81
|
+
} from "./commands/DeleteMetricAttributionCommand";
|
|
74
82
|
import {
|
|
75
83
|
DeleteRecommenderCommandInput,
|
|
76
84
|
DeleteRecommenderCommandOutput,
|
|
@@ -127,6 +135,10 @@ import {
|
|
|
127
135
|
DescribeFilterCommandInput,
|
|
128
136
|
DescribeFilterCommandOutput,
|
|
129
137
|
} from "./commands/DescribeFilterCommand";
|
|
138
|
+
import {
|
|
139
|
+
DescribeMetricAttributionCommandInput,
|
|
140
|
+
DescribeMetricAttributionCommandOutput,
|
|
141
|
+
} from "./commands/DescribeMetricAttributionCommand";
|
|
130
142
|
import {
|
|
131
143
|
DescribeRecipeCommandInput,
|
|
132
144
|
DescribeRecipeCommandOutput,
|
|
@@ -187,6 +199,14 @@ import {
|
|
|
187
199
|
ListFiltersCommandInput,
|
|
188
200
|
ListFiltersCommandOutput,
|
|
189
201
|
} from "./commands/ListFiltersCommand";
|
|
202
|
+
import {
|
|
203
|
+
ListMetricAttributionMetricsCommandInput,
|
|
204
|
+
ListMetricAttributionMetricsCommandOutput,
|
|
205
|
+
} from "./commands/ListMetricAttributionMetricsCommand";
|
|
206
|
+
import {
|
|
207
|
+
ListMetricAttributionsCommandInput,
|
|
208
|
+
ListMetricAttributionsCommandOutput,
|
|
209
|
+
} from "./commands/ListMetricAttributionsCommand";
|
|
190
210
|
import {
|
|
191
211
|
ListRecipesCommandInput,
|
|
192
212
|
ListRecipesCommandOutput,
|
|
@@ -235,6 +255,10 @@ import {
|
|
|
235
255
|
UpdateCampaignCommandInput,
|
|
236
256
|
UpdateCampaignCommandOutput,
|
|
237
257
|
} from "./commands/UpdateCampaignCommand";
|
|
258
|
+
import {
|
|
259
|
+
UpdateMetricAttributionCommandInput,
|
|
260
|
+
UpdateMetricAttributionCommandOutput,
|
|
261
|
+
} from "./commands/UpdateMetricAttributionCommand";
|
|
238
262
|
import {
|
|
239
263
|
UpdateRecommenderCommandInput,
|
|
240
264
|
UpdateRecommenderCommandOutput,
|
|
@@ -358,6 +382,19 @@ export declare class Personalize extends PersonalizeClient {
|
|
|
358
382
|
options: __HttpHandlerOptions,
|
|
359
383
|
cb: (err: any, data?: CreateFilterCommandOutput) => void
|
|
360
384
|
): void;
|
|
385
|
+
createMetricAttribution(
|
|
386
|
+
args: CreateMetricAttributionCommandInput,
|
|
387
|
+
options?: __HttpHandlerOptions
|
|
388
|
+
): Promise<CreateMetricAttributionCommandOutput>;
|
|
389
|
+
createMetricAttribution(
|
|
390
|
+
args: CreateMetricAttributionCommandInput,
|
|
391
|
+
cb: (err: any, data?: CreateMetricAttributionCommandOutput) => void
|
|
392
|
+
): void;
|
|
393
|
+
createMetricAttribution(
|
|
394
|
+
args: CreateMetricAttributionCommandInput,
|
|
395
|
+
options: __HttpHandlerOptions,
|
|
396
|
+
cb: (err: any, data?: CreateMetricAttributionCommandOutput) => void
|
|
397
|
+
): void;
|
|
361
398
|
createRecommender(
|
|
362
399
|
args: CreateRecommenderCommandInput,
|
|
363
400
|
options?: __HttpHandlerOptions
|
|
@@ -475,6 +512,19 @@ export declare class Personalize extends PersonalizeClient {
|
|
|
475
512
|
options: __HttpHandlerOptions,
|
|
476
513
|
cb: (err: any, data?: DeleteFilterCommandOutput) => void
|
|
477
514
|
): void;
|
|
515
|
+
deleteMetricAttribution(
|
|
516
|
+
args: DeleteMetricAttributionCommandInput,
|
|
517
|
+
options?: __HttpHandlerOptions
|
|
518
|
+
): Promise<DeleteMetricAttributionCommandOutput>;
|
|
519
|
+
deleteMetricAttribution(
|
|
520
|
+
args: DeleteMetricAttributionCommandInput,
|
|
521
|
+
cb: (err: any, data?: DeleteMetricAttributionCommandOutput) => void
|
|
522
|
+
): void;
|
|
523
|
+
deleteMetricAttribution(
|
|
524
|
+
args: DeleteMetricAttributionCommandInput,
|
|
525
|
+
options: __HttpHandlerOptions,
|
|
526
|
+
cb: (err: any, data?: DeleteMetricAttributionCommandOutput) => void
|
|
527
|
+
): void;
|
|
478
528
|
deleteRecommender(
|
|
479
529
|
args: DeleteRecommenderCommandInput,
|
|
480
530
|
options?: __HttpHandlerOptions
|
|
@@ -657,6 +707,19 @@ export declare class Personalize extends PersonalizeClient {
|
|
|
657
707
|
options: __HttpHandlerOptions,
|
|
658
708
|
cb: (err: any, data?: DescribeFilterCommandOutput) => void
|
|
659
709
|
): void;
|
|
710
|
+
describeMetricAttribution(
|
|
711
|
+
args: DescribeMetricAttributionCommandInput,
|
|
712
|
+
options?: __HttpHandlerOptions
|
|
713
|
+
): Promise<DescribeMetricAttributionCommandOutput>;
|
|
714
|
+
describeMetricAttribution(
|
|
715
|
+
args: DescribeMetricAttributionCommandInput,
|
|
716
|
+
cb: (err: any, data?: DescribeMetricAttributionCommandOutput) => void
|
|
717
|
+
): void;
|
|
718
|
+
describeMetricAttribution(
|
|
719
|
+
args: DescribeMetricAttributionCommandInput,
|
|
720
|
+
options: __HttpHandlerOptions,
|
|
721
|
+
cb: (err: any, data?: DescribeMetricAttributionCommandOutput) => void
|
|
722
|
+
): void;
|
|
660
723
|
describeRecipe(
|
|
661
724
|
args: DescribeRecipeCommandInput,
|
|
662
725
|
options?: __HttpHandlerOptions
|
|
@@ -852,6 +915,32 @@ export declare class Personalize extends PersonalizeClient {
|
|
|
852
915
|
options: __HttpHandlerOptions,
|
|
853
916
|
cb: (err: any, data?: ListFiltersCommandOutput) => void
|
|
854
917
|
): void;
|
|
918
|
+
listMetricAttributionMetrics(
|
|
919
|
+
args: ListMetricAttributionMetricsCommandInput,
|
|
920
|
+
options?: __HttpHandlerOptions
|
|
921
|
+
): Promise<ListMetricAttributionMetricsCommandOutput>;
|
|
922
|
+
listMetricAttributionMetrics(
|
|
923
|
+
args: ListMetricAttributionMetricsCommandInput,
|
|
924
|
+
cb: (err: any, data?: ListMetricAttributionMetricsCommandOutput) => void
|
|
925
|
+
): void;
|
|
926
|
+
listMetricAttributionMetrics(
|
|
927
|
+
args: ListMetricAttributionMetricsCommandInput,
|
|
928
|
+
options: __HttpHandlerOptions,
|
|
929
|
+
cb: (err: any, data?: ListMetricAttributionMetricsCommandOutput) => void
|
|
930
|
+
): void;
|
|
931
|
+
listMetricAttributions(
|
|
932
|
+
args: ListMetricAttributionsCommandInput,
|
|
933
|
+
options?: __HttpHandlerOptions
|
|
934
|
+
): Promise<ListMetricAttributionsCommandOutput>;
|
|
935
|
+
listMetricAttributions(
|
|
936
|
+
args: ListMetricAttributionsCommandInput,
|
|
937
|
+
cb: (err: any, data?: ListMetricAttributionsCommandOutput) => void
|
|
938
|
+
): void;
|
|
939
|
+
listMetricAttributions(
|
|
940
|
+
args: ListMetricAttributionsCommandInput,
|
|
941
|
+
options: __HttpHandlerOptions,
|
|
942
|
+
cb: (err: any, data?: ListMetricAttributionsCommandOutput) => void
|
|
943
|
+
): void;
|
|
855
944
|
listRecipes(
|
|
856
945
|
args: ListRecipesCommandInput,
|
|
857
946
|
options?: __HttpHandlerOptions
|
|
@@ -1008,6 +1097,19 @@ export declare class Personalize extends PersonalizeClient {
|
|
|
1008
1097
|
options: __HttpHandlerOptions,
|
|
1009
1098
|
cb: (err: any, data?: UpdateCampaignCommandOutput) => void
|
|
1010
1099
|
): void;
|
|
1100
|
+
updateMetricAttribution(
|
|
1101
|
+
args: UpdateMetricAttributionCommandInput,
|
|
1102
|
+
options?: __HttpHandlerOptions
|
|
1103
|
+
): Promise<UpdateMetricAttributionCommandOutput>;
|
|
1104
|
+
updateMetricAttribution(
|
|
1105
|
+
args: UpdateMetricAttributionCommandInput,
|
|
1106
|
+
cb: (err: any, data?: UpdateMetricAttributionCommandOutput) => void
|
|
1107
|
+
): void;
|
|
1108
|
+
updateMetricAttribution(
|
|
1109
|
+
args: UpdateMetricAttributionCommandInput,
|
|
1110
|
+
options: __HttpHandlerOptions,
|
|
1111
|
+
cb: (err: any, data?: UpdateMetricAttributionCommandOutput) => void
|
|
1112
|
+
): void;
|
|
1011
1113
|
updateRecommender(
|
|
1012
1114
|
args: UpdateRecommenderCommandInput,
|
|
1013
1115
|
options?: __HttpHandlerOptions
|
|
@@ -79,6 +79,10 @@ import {
|
|
|
79
79
|
CreateFilterCommandInput,
|
|
80
80
|
CreateFilterCommandOutput,
|
|
81
81
|
} from "./commands/CreateFilterCommand";
|
|
82
|
+
import {
|
|
83
|
+
CreateMetricAttributionCommandInput,
|
|
84
|
+
CreateMetricAttributionCommandOutput,
|
|
85
|
+
} from "./commands/CreateMetricAttributionCommand";
|
|
82
86
|
import {
|
|
83
87
|
CreateRecommenderCommandInput,
|
|
84
88
|
CreateRecommenderCommandOutput,
|
|
@@ -115,6 +119,10 @@ import {
|
|
|
115
119
|
DeleteFilterCommandInput,
|
|
116
120
|
DeleteFilterCommandOutput,
|
|
117
121
|
} from "./commands/DeleteFilterCommand";
|
|
122
|
+
import {
|
|
123
|
+
DeleteMetricAttributionCommandInput,
|
|
124
|
+
DeleteMetricAttributionCommandOutput,
|
|
125
|
+
} from "./commands/DeleteMetricAttributionCommand";
|
|
118
126
|
import {
|
|
119
127
|
DeleteRecommenderCommandInput,
|
|
120
128
|
DeleteRecommenderCommandOutput,
|
|
@@ -171,6 +179,10 @@ import {
|
|
|
171
179
|
DescribeFilterCommandInput,
|
|
172
180
|
DescribeFilterCommandOutput,
|
|
173
181
|
} from "./commands/DescribeFilterCommand";
|
|
182
|
+
import {
|
|
183
|
+
DescribeMetricAttributionCommandInput,
|
|
184
|
+
DescribeMetricAttributionCommandOutput,
|
|
185
|
+
} from "./commands/DescribeMetricAttributionCommand";
|
|
174
186
|
import {
|
|
175
187
|
DescribeRecipeCommandInput,
|
|
176
188
|
DescribeRecipeCommandOutput,
|
|
@@ -231,6 +243,14 @@ import {
|
|
|
231
243
|
ListFiltersCommandInput,
|
|
232
244
|
ListFiltersCommandOutput,
|
|
233
245
|
} from "./commands/ListFiltersCommand";
|
|
246
|
+
import {
|
|
247
|
+
ListMetricAttributionMetricsCommandInput,
|
|
248
|
+
ListMetricAttributionMetricsCommandOutput,
|
|
249
|
+
} from "./commands/ListMetricAttributionMetricsCommand";
|
|
250
|
+
import {
|
|
251
|
+
ListMetricAttributionsCommandInput,
|
|
252
|
+
ListMetricAttributionsCommandOutput,
|
|
253
|
+
} from "./commands/ListMetricAttributionsCommand";
|
|
234
254
|
import {
|
|
235
255
|
ListRecipesCommandInput,
|
|
236
256
|
ListRecipesCommandOutput,
|
|
@@ -279,6 +299,10 @@ import {
|
|
|
279
299
|
UpdateCampaignCommandInput,
|
|
280
300
|
UpdateCampaignCommandOutput,
|
|
281
301
|
} from "./commands/UpdateCampaignCommand";
|
|
302
|
+
import {
|
|
303
|
+
UpdateMetricAttributionCommandInput,
|
|
304
|
+
UpdateMetricAttributionCommandOutput,
|
|
305
|
+
} from "./commands/UpdateMetricAttributionCommand";
|
|
282
306
|
import {
|
|
283
307
|
UpdateRecommenderCommandInput,
|
|
284
308
|
UpdateRecommenderCommandOutput,
|
|
@@ -298,6 +322,7 @@ export declare type ServiceInputTypes =
|
|
|
298
322
|
| CreateDatasetImportJobCommandInput
|
|
299
323
|
| CreateEventTrackerCommandInput
|
|
300
324
|
| CreateFilterCommandInput
|
|
325
|
+
| CreateMetricAttributionCommandInput
|
|
301
326
|
| CreateRecommenderCommandInput
|
|
302
327
|
| CreateSchemaCommandInput
|
|
303
328
|
| CreateSolutionCommandInput
|
|
@@ -307,6 +332,7 @@ export declare type ServiceInputTypes =
|
|
|
307
332
|
| DeleteDatasetGroupCommandInput
|
|
308
333
|
| DeleteEventTrackerCommandInput
|
|
309
334
|
| DeleteFilterCommandInput
|
|
335
|
+
| DeleteMetricAttributionCommandInput
|
|
310
336
|
| DeleteRecommenderCommandInput
|
|
311
337
|
| DeleteSchemaCommandInput
|
|
312
338
|
| DeleteSolutionCommandInput
|
|
@@ -321,6 +347,7 @@ export declare type ServiceInputTypes =
|
|
|
321
347
|
| DescribeEventTrackerCommandInput
|
|
322
348
|
| DescribeFeatureTransformationCommandInput
|
|
323
349
|
| DescribeFilterCommandInput
|
|
350
|
+
| DescribeMetricAttributionCommandInput
|
|
324
351
|
| DescribeRecipeCommandInput
|
|
325
352
|
| DescribeRecommenderCommandInput
|
|
326
353
|
| DescribeSchemaCommandInput
|
|
@@ -336,6 +363,8 @@ export declare type ServiceInputTypes =
|
|
|
336
363
|
| ListDatasetsCommandInput
|
|
337
364
|
| ListEventTrackersCommandInput
|
|
338
365
|
| ListFiltersCommandInput
|
|
366
|
+
| ListMetricAttributionMetricsCommandInput
|
|
367
|
+
| ListMetricAttributionsCommandInput
|
|
339
368
|
| ListRecipesCommandInput
|
|
340
369
|
| ListRecommendersCommandInput
|
|
341
370
|
| ListSchemasCommandInput
|
|
@@ -348,6 +377,7 @@ export declare type ServiceInputTypes =
|
|
|
348
377
|
| TagResourceCommandInput
|
|
349
378
|
| UntagResourceCommandInput
|
|
350
379
|
| UpdateCampaignCommandInput
|
|
380
|
+
| UpdateMetricAttributionCommandInput
|
|
351
381
|
| UpdateRecommenderCommandInput;
|
|
352
382
|
export declare type ServiceOutputTypes =
|
|
353
383
|
| CreateBatchInferenceJobCommandOutput
|
|
@@ -359,6 +389,7 @@ export declare type ServiceOutputTypes =
|
|
|
359
389
|
| CreateDatasetImportJobCommandOutput
|
|
360
390
|
| CreateEventTrackerCommandOutput
|
|
361
391
|
| CreateFilterCommandOutput
|
|
392
|
+
| CreateMetricAttributionCommandOutput
|
|
362
393
|
| CreateRecommenderCommandOutput
|
|
363
394
|
| CreateSchemaCommandOutput
|
|
364
395
|
| CreateSolutionCommandOutput
|
|
@@ -368,6 +399,7 @@ export declare type ServiceOutputTypes =
|
|
|
368
399
|
| DeleteDatasetGroupCommandOutput
|
|
369
400
|
| DeleteEventTrackerCommandOutput
|
|
370
401
|
| DeleteFilterCommandOutput
|
|
402
|
+
| DeleteMetricAttributionCommandOutput
|
|
371
403
|
| DeleteRecommenderCommandOutput
|
|
372
404
|
| DeleteSchemaCommandOutput
|
|
373
405
|
| DeleteSolutionCommandOutput
|
|
@@ -382,6 +414,7 @@ export declare type ServiceOutputTypes =
|
|
|
382
414
|
| DescribeEventTrackerCommandOutput
|
|
383
415
|
| DescribeFeatureTransformationCommandOutput
|
|
384
416
|
| DescribeFilterCommandOutput
|
|
417
|
+
| DescribeMetricAttributionCommandOutput
|
|
385
418
|
| DescribeRecipeCommandOutput
|
|
386
419
|
| DescribeRecommenderCommandOutput
|
|
387
420
|
| DescribeSchemaCommandOutput
|
|
@@ -397,6 +430,8 @@ export declare type ServiceOutputTypes =
|
|
|
397
430
|
| ListDatasetsCommandOutput
|
|
398
431
|
| ListEventTrackersCommandOutput
|
|
399
432
|
| ListFiltersCommandOutput
|
|
433
|
+
| ListMetricAttributionMetricsCommandOutput
|
|
434
|
+
| ListMetricAttributionsCommandOutput
|
|
400
435
|
| ListRecipesCommandOutput
|
|
401
436
|
| ListRecommendersCommandOutput
|
|
402
437
|
| ListSchemasCommandOutput
|
|
@@ -409,6 +444,7 @@ export declare type ServiceOutputTypes =
|
|
|
409
444
|
| TagResourceCommandOutput
|
|
410
445
|
| UntagResourceCommandOutput
|
|
411
446
|
| UpdateCampaignCommandOutput
|
|
447
|
+
| UpdateMetricAttributionCommandOutput
|
|
412
448
|
| UpdateRecommenderCommandOutput;
|
|
413
449
|
export interface ClientDefaults
|
|
414
450
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateMetricAttributionRequest,
|
|
11
|
+
CreateMetricAttributionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PersonalizeClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PersonalizeClient";
|
|
18
|
+
export interface CreateMetricAttributionCommandInput
|
|
19
|
+
extends CreateMetricAttributionRequest {}
|
|
20
|
+
export interface CreateMetricAttributionCommandOutput
|
|
21
|
+
extends CreateMetricAttributionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateMetricAttributionCommand extends $Command<
|
|
24
|
+
CreateMetricAttributionCommandInput,
|
|
25
|
+
CreateMetricAttributionCommandOutput,
|
|
26
|
+
PersonalizeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateMetricAttributionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateMetricAttributionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: PersonalizeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateMetricAttributionCommandInput,
|
|
37
|
+
CreateMetricAttributionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { DeleteMetricAttributionRequest } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
PersonalizeClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../PersonalizeClient";
|
|
15
|
+
export interface DeleteMetricAttributionCommandInput
|
|
16
|
+
extends DeleteMetricAttributionRequest {}
|
|
17
|
+
export interface DeleteMetricAttributionCommandOutput
|
|
18
|
+
extends __MetadataBearer {}
|
|
19
|
+
export declare class DeleteMetricAttributionCommand extends $Command<
|
|
20
|
+
DeleteMetricAttributionCommandInput,
|
|
21
|
+
DeleteMetricAttributionCommandOutput,
|
|
22
|
+
PersonalizeClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteMetricAttributionCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteMetricAttributionCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: PersonalizeClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeleteMetricAttributionCommandInput,
|
|
33
|
+
DeleteMetricAttributionCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DescribeMetricAttributionRequest,
|
|
11
|
+
DescribeMetricAttributionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PersonalizeClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PersonalizeClient";
|
|
18
|
+
export interface DescribeMetricAttributionCommandInput
|
|
19
|
+
extends DescribeMetricAttributionRequest {}
|
|
20
|
+
export interface DescribeMetricAttributionCommandOutput
|
|
21
|
+
extends DescribeMetricAttributionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DescribeMetricAttributionCommand extends $Command<
|
|
24
|
+
DescribeMetricAttributionCommandInput,
|
|
25
|
+
DescribeMetricAttributionCommandOutput,
|
|
26
|
+
PersonalizeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeMetricAttributionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeMetricAttributionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: PersonalizeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeMetricAttributionCommandInput,
|
|
37
|
+
DescribeMetricAttributionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListMetricAttributionMetricsRequest,
|
|
11
|
+
ListMetricAttributionMetricsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PersonalizeClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PersonalizeClient";
|
|
18
|
+
export interface ListMetricAttributionMetricsCommandInput
|
|
19
|
+
extends ListMetricAttributionMetricsRequest {}
|
|
20
|
+
export interface ListMetricAttributionMetricsCommandOutput
|
|
21
|
+
extends ListMetricAttributionMetricsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListMetricAttributionMetricsCommand extends $Command<
|
|
24
|
+
ListMetricAttributionMetricsCommandInput,
|
|
25
|
+
ListMetricAttributionMetricsCommandOutput,
|
|
26
|
+
PersonalizeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListMetricAttributionMetricsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListMetricAttributionMetricsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: PersonalizeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListMetricAttributionMetricsCommandInput,
|
|
37
|
+
ListMetricAttributionMetricsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListMetricAttributionsRequest,
|
|
11
|
+
ListMetricAttributionsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PersonalizeClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PersonalizeClient";
|
|
18
|
+
export interface ListMetricAttributionsCommandInput
|
|
19
|
+
extends ListMetricAttributionsRequest {}
|
|
20
|
+
export interface ListMetricAttributionsCommandOutput
|
|
21
|
+
extends ListMetricAttributionsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListMetricAttributionsCommand extends $Command<
|
|
24
|
+
ListMetricAttributionsCommandInput,
|
|
25
|
+
ListMetricAttributionsCommandOutput,
|
|
26
|
+
PersonalizeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListMetricAttributionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListMetricAttributionsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: PersonalizeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListMetricAttributionsCommandInput,
|
|
37
|
+
ListMetricAttributionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
UpdateMetricAttributionRequest,
|
|
11
|
+
UpdateMetricAttributionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PersonalizeClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PersonalizeClient";
|
|
18
|
+
export interface UpdateMetricAttributionCommandInput
|
|
19
|
+
extends UpdateMetricAttributionRequest {}
|
|
20
|
+
export interface UpdateMetricAttributionCommandOutput
|
|
21
|
+
extends UpdateMetricAttributionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UpdateMetricAttributionCommand extends $Command<
|
|
24
|
+
UpdateMetricAttributionCommandInput,
|
|
25
|
+
UpdateMetricAttributionCommandOutput,
|
|
26
|
+
PersonalizeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateMetricAttributionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UpdateMetricAttributionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: PersonalizeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateMetricAttributionCommandInput,
|
|
37
|
+
UpdateMetricAttributionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -7,6 +7,7 @@ export * from "./CreateDatasetGroupCommand";
|
|
|
7
7
|
export * from "./CreateDatasetImportJobCommand";
|
|
8
8
|
export * from "./CreateEventTrackerCommand";
|
|
9
9
|
export * from "./CreateFilterCommand";
|
|
10
|
+
export * from "./CreateMetricAttributionCommand";
|
|
10
11
|
export * from "./CreateRecommenderCommand";
|
|
11
12
|
export * from "./CreateSchemaCommand";
|
|
12
13
|
export * from "./CreateSolutionCommand";
|
|
@@ -16,6 +17,7 @@ export * from "./DeleteDatasetCommand";
|
|
|
16
17
|
export * from "./DeleteDatasetGroupCommand";
|
|
17
18
|
export * from "./DeleteEventTrackerCommand";
|
|
18
19
|
export * from "./DeleteFilterCommand";
|
|
20
|
+
export * from "./DeleteMetricAttributionCommand";
|
|
19
21
|
export * from "./DeleteRecommenderCommand";
|
|
20
22
|
export * from "./DeleteSchemaCommand";
|
|
21
23
|
export * from "./DeleteSolutionCommand";
|
|
@@ -30,6 +32,7 @@ export * from "./DescribeDatasetImportJobCommand";
|
|
|
30
32
|
export * from "./DescribeEventTrackerCommand";
|
|
31
33
|
export * from "./DescribeFeatureTransformationCommand";
|
|
32
34
|
export * from "./DescribeFilterCommand";
|
|
35
|
+
export * from "./DescribeMetricAttributionCommand";
|
|
33
36
|
export * from "./DescribeRecipeCommand";
|
|
34
37
|
export * from "./DescribeRecommenderCommand";
|
|
35
38
|
export * from "./DescribeSchemaCommand";
|
|
@@ -45,6 +48,8 @@ export * from "./ListDatasetImportJobsCommand";
|
|
|
45
48
|
export * from "./ListDatasetsCommand";
|
|
46
49
|
export * from "./ListEventTrackersCommand";
|
|
47
50
|
export * from "./ListFiltersCommand";
|
|
51
|
+
export * from "./ListMetricAttributionMetricsCommand";
|
|
52
|
+
export * from "./ListMetricAttributionsCommand";
|
|
48
53
|
export * from "./ListRecipesCommand";
|
|
49
54
|
export * from "./ListRecommendersCommand";
|
|
50
55
|
export * from "./ListSchemasCommand";
|
|
@@ -57,4 +62,5 @@ export * from "./StopSolutionVersionCreationCommand";
|
|
|
57
62
|
export * from "./TagResourceCommand";
|
|
58
63
|
export * from "./UntagResourceCommand";
|
|
59
64
|
export * from "./UpdateCampaignCommand";
|
|
65
|
+
export * from "./UpdateMetricAttributionCommand";
|
|
60
66
|
export * from "./UpdateRecommenderCommand";
|