@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
|
@@ -201,6 +201,7 @@ export interface CreateDatasetImportJobRequest {
|
|
|
201
201
|
roleArn: string | undefined;
|
|
202
202
|
tags?: Tag[];
|
|
203
203
|
importMode?: ImportMode | string;
|
|
204
|
+
publishAttributionMetricsToS3?: boolean;
|
|
204
205
|
}
|
|
205
206
|
export interface CreateDatasetImportJobResponse {
|
|
206
207
|
datasetImportJobArn?: string;
|
|
@@ -223,6 +224,24 @@ export interface CreateFilterRequest {
|
|
|
223
224
|
export interface CreateFilterResponse {
|
|
224
225
|
filterArn?: string;
|
|
225
226
|
}
|
|
227
|
+
export interface MetricAttribute {
|
|
228
|
+
eventType: string | undefined;
|
|
229
|
+
metricName: string | undefined;
|
|
230
|
+
expression: string | undefined;
|
|
231
|
+
}
|
|
232
|
+
export interface MetricAttributionOutput {
|
|
233
|
+
s3DataDestination?: S3DataConfig;
|
|
234
|
+
roleArn: string | undefined;
|
|
235
|
+
}
|
|
236
|
+
export interface CreateMetricAttributionRequest {
|
|
237
|
+
name: string | undefined;
|
|
238
|
+
datasetGroupArn: string | undefined;
|
|
239
|
+
metrics: MetricAttribute[] | undefined;
|
|
240
|
+
metricsOutputConfig: MetricAttributionOutput | undefined;
|
|
241
|
+
}
|
|
242
|
+
export interface CreateMetricAttributionResponse {
|
|
243
|
+
metricAttributionArn?: string;
|
|
244
|
+
}
|
|
226
245
|
export interface RecommenderConfig {
|
|
227
246
|
itemExplorationConfig?: Record<string, string>;
|
|
228
247
|
minRecommendationRequestsPerSecond?: number;
|
|
@@ -318,6 +337,7 @@ export declare enum TrainingMode {
|
|
|
318
337
|
UPDATE = "UPDATE",
|
|
319
338
|
}
|
|
320
339
|
export interface CreateSolutionVersionRequest {
|
|
340
|
+
name?: string;
|
|
321
341
|
solutionArn: string | undefined;
|
|
322
342
|
trainingMode?: TrainingMode | string;
|
|
323
343
|
tags?: Tag[];
|
|
@@ -340,6 +360,9 @@ export interface DeleteEventTrackerRequest {
|
|
|
340
360
|
export interface DeleteFilterRequest {
|
|
341
361
|
filterArn: string | undefined;
|
|
342
362
|
}
|
|
363
|
+
export interface DeleteMetricAttributionRequest {
|
|
364
|
+
metricAttributionArn: string | undefined;
|
|
365
|
+
}
|
|
343
366
|
export interface DeleteRecommenderRequest {
|
|
344
367
|
recommenderArn: string | undefined;
|
|
345
368
|
}
|
|
@@ -488,6 +511,7 @@ export interface DatasetImportJob {
|
|
|
488
511
|
lastUpdatedDateTime?: Date;
|
|
489
512
|
failureReason?: string;
|
|
490
513
|
importMode?: ImportMode | string;
|
|
514
|
+
publishAttributionMetricsToS3?: boolean;
|
|
491
515
|
}
|
|
492
516
|
export interface DescribeDatasetImportJobResponse {
|
|
493
517
|
datasetImportJob?: DatasetImportJob;
|
|
@@ -538,6 +562,22 @@ export interface Filter {
|
|
|
538
562
|
export interface DescribeFilterResponse {
|
|
539
563
|
filter?: Filter;
|
|
540
564
|
}
|
|
565
|
+
export interface DescribeMetricAttributionRequest {
|
|
566
|
+
metricAttributionArn: string | undefined;
|
|
567
|
+
}
|
|
568
|
+
export interface MetricAttribution {
|
|
569
|
+
name?: string;
|
|
570
|
+
metricAttributionArn?: string;
|
|
571
|
+
datasetGroupArn?: string;
|
|
572
|
+
metricsOutputConfig?: MetricAttributionOutput;
|
|
573
|
+
status?: string;
|
|
574
|
+
creationDateTime?: Date;
|
|
575
|
+
lastUpdatedDateTime?: Date;
|
|
576
|
+
failureReason?: string;
|
|
577
|
+
}
|
|
578
|
+
export interface DescribeMetricAttributionResponse {
|
|
579
|
+
metricAttribution?: MetricAttribution;
|
|
580
|
+
}
|
|
541
581
|
export interface DescribeRecipeRequest {
|
|
542
582
|
recipeArn: string | undefined;
|
|
543
583
|
}
|
|
@@ -633,6 +673,7 @@ export interface TunedHPOParams {
|
|
|
633
673
|
algorithmHyperParameters?: Record<string, string>;
|
|
634
674
|
}
|
|
635
675
|
export interface SolutionVersion {
|
|
676
|
+
name?: string;
|
|
636
677
|
solutionVersionArn?: string;
|
|
637
678
|
solutionArn?: string;
|
|
638
679
|
performHPO?: boolean;
|
|
@@ -822,6 +863,32 @@ export interface ListFiltersResponse {
|
|
|
822
863
|
Filters?: FilterSummary[];
|
|
823
864
|
nextToken?: string;
|
|
824
865
|
}
|
|
866
|
+
export interface ListMetricAttributionMetricsRequest {
|
|
867
|
+
metricAttributionArn?: string;
|
|
868
|
+
nextToken?: string;
|
|
869
|
+
maxResults?: number;
|
|
870
|
+
}
|
|
871
|
+
export interface ListMetricAttributionMetricsResponse {
|
|
872
|
+
metrics?: MetricAttribute[];
|
|
873
|
+
nextToken?: string;
|
|
874
|
+
}
|
|
875
|
+
export interface ListMetricAttributionsRequest {
|
|
876
|
+
datasetGroupArn?: string;
|
|
877
|
+
nextToken?: string;
|
|
878
|
+
maxResults?: number;
|
|
879
|
+
}
|
|
880
|
+
export interface MetricAttributionSummary {
|
|
881
|
+
name?: string;
|
|
882
|
+
metricAttributionArn?: string;
|
|
883
|
+
status?: string;
|
|
884
|
+
creationDateTime?: Date;
|
|
885
|
+
lastUpdatedDateTime?: Date;
|
|
886
|
+
failureReason?: string;
|
|
887
|
+
}
|
|
888
|
+
export interface ListMetricAttributionsResponse {
|
|
889
|
+
metricAttributions?: MetricAttributionSummary[];
|
|
890
|
+
nextToken?: string;
|
|
891
|
+
}
|
|
825
892
|
export declare enum RecipeProvider {
|
|
826
893
|
SERVICE = "SERVICE",
|
|
827
894
|
}
|
|
@@ -888,6 +955,7 @@ export interface SolutionSummary {
|
|
|
888
955
|
status?: string;
|
|
889
956
|
creationDateTime?: Date;
|
|
890
957
|
lastUpdatedDateTime?: Date;
|
|
958
|
+
recipeArn?: string;
|
|
891
959
|
}
|
|
892
960
|
export interface ListSolutionsResponse {
|
|
893
961
|
solutions?: SolutionSummary[];
|
|
@@ -949,6 +1017,15 @@ export interface UpdateCampaignRequest {
|
|
|
949
1017
|
export interface UpdateCampaignResponse {
|
|
950
1018
|
campaignArn?: string;
|
|
951
1019
|
}
|
|
1020
|
+
export interface UpdateMetricAttributionRequest {
|
|
1021
|
+
addMetrics?: MetricAttribute[];
|
|
1022
|
+
removeMetrics?: string[];
|
|
1023
|
+
metricsOutputConfig?: MetricAttributionOutput;
|
|
1024
|
+
metricAttributionArn?: string;
|
|
1025
|
+
}
|
|
1026
|
+
export interface UpdateMetricAttributionResponse {
|
|
1027
|
+
metricAttributionArn?: string;
|
|
1028
|
+
}
|
|
952
1029
|
export interface UpdateRecommenderRequest {
|
|
953
1030
|
recommenderArn: string | undefined;
|
|
954
1031
|
recommenderConfig: RecommenderConfig | undefined;
|
|
@@ -1050,6 +1127,18 @@ export declare const CreateFilterRequestFilterSensitiveLog: (
|
|
|
1050
1127
|
export declare const CreateFilterResponseFilterSensitiveLog: (
|
|
1051
1128
|
obj: CreateFilterResponse
|
|
1052
1129
|
) => any;
|
|
1130
|
+
export declare const MetricAttributeFilterSensitiveLog: (
|
|
1131
|
+
obj: MetricAttribute
|
|
1132
|
+
) => any;
|
|
1133
|
+
export declare const MetricAttributionOutputFilterSensitiveLog: (
|
|
1134
|
+
obj: MetricAttributionOutput
|
|
1135
|
+
) => any;
|
|
1136
|
+
export declare const CreateMetricAttributionRequestFilterSensitiveLog: (
|
|
1137
|
+
obj: CreateMetricAttributionRequest
|
|
1138
|
+
) => any;
|
|
1139
|
+
export declare const CreateMetricAttributionResponseFilterSensitiveLog: (
|
|
1140
|
+
obj: CreateMetricAttributionResponse
|
|
1141
|
+
) => any;
|
|
1053
1142
|
export declare const RecommenderConfigFilterSensitiveLog: (
|
|
1054
1143
|
obj: RecommenderConfig
|
|
1055
1144
|
) => any;
|
|
@@ -1116,6 +1205,9 @@ export declare const DeleteEventTrackerRequestFilterSensitiveLog: (
|
|
|
1116
1205
|
export declare const DeleteFilterRequestFilterSensitiveLog: (
|
|
1117
1206
|
obj: DeleteFilterRequest
|
|
1118
1207
|
) => any;
|
|
1208
|
+
export declare const DeleteMetricAttributionRequestFilterSensitiveLog: (
|
|
1209
|
+
obj: DeleteMetricAttributionRequest
|
|
1210
|
+
) => any;
|
|
1119
1211
|
export declare const DeleteRecommenderRequestFilterSensitiveLog: (
|
|
1120
1212
|
obj: DeleteRecommenderRequest
|
|
1121
1213
|
) => any;
|
|
@@ -1214,6 +1306,15 @@ export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
|
1214
1306
|
export declare const DescribeFilterResponseFilterSensitiveLog: (
|
|
1215
1307
|
obj: DescribeFilterResponse
|
|
1216
1308
|
) => any;
|
|
1309
|
+
export declare const DescribeMetricAttributionRequestFilterSensitiveLog: (
|
|
1310
|
+
obj: DescribeMetricAttributionRequest
|
|
1311
|
+
) => any;
|
|
1312
|
+
export declare const MetricAttributionFilterSensitiveLog: (
|
|
1313
|
+
obj: MetricAttribution
|
|
1314
|
+
) => any;
|
|
1315
|
+
export declare const DescribeMetricAttributionResponseFilterSensitiveLog: (
|
|
1316
|
+
obj: DescribeMetricAttributionResponse
|
|
1317
|
+
) => any;
|
|
1217
1318
|
export declare const DescribeRecipeRequestFilterSensitiveLog: (
|
|
1218
1319
|
obj: DescribeRecipeRequest
|
|
1219
1320
|
) => any;
|
|
@@ -1350,6 +1451,21 @@ export declare const FilterSummaryFilterSensitiveLog: (
|
|
|
1350
1451
|
export declare const ListFiltersResponseFilterSensitiveLog: (
|
|
1351
1452
|
obj: ListFiltersResponse
|
|
1352
1453
|
) => any;
|
|
1454
|
+
export declare const ListMetricAttributionMetricsRequestFilterSensitiveLog: (
|
|
1455
|
+
obj: ListMetricAttributionMetricsRequest
|
|
1456
|
+
) => any;
|
|
1457
|
+
export declare const ListMetricAttributionMetricsResponseFilterSensitiveLog: (
|
|
1458
|
+
obj: ListMetricAttributionMetricsResponse
|
|
1459
|
+
) => any;
|
|
1460
|
+
export declare const ListMetricAttributionsRequestFilterSensitiveLog: (
|
|
1461
|
+
obj: ListMetricAttributionsRequest
|
|
1462
|
+
) => any;
|
|
1463
|
+
export declare const MetricAttributionSummaryFilterSensitiveLog: (
|
|
1464
|
+
obj: MetricAttributionSummary
|
|
1465
|
+
) => any;
|
|
1466
|
+
export declare const ListMetricAttributionsResponseFilterSensitiveLog: (
|
|
1467
|
+
obj: ListMetricAttributionsResponse
|
|
1468
|
+
) => any;
|
|
1353
1469
|
export declare const ListRecipesRequestFilterSensitiveLog: (
|
|
1354
1470
|
obj: ListRecipesRequest
|
|
1355
1471
|
) => any;
|
|
@@ -1431,6 +1547,12 @@ export declare const UpdateCampaignRequestFilterSensitiveLog: (
|
|
|
1431
1547
|
export declare const UpdateCampaignResponseFilterSensitiveLog: (
|
|
1432
1548
|
obj: UpdateCampaignResponse
|
|
1433
1549
|
) => any;
|
|
1550
|
+
export declare const UpdateMetricAttributionRequestFilterSensitiveLog: (
|
|
1551
|
+
obj: UpdateMetricAttributionRequest
|
|
1552
|
+
) => any;
|
|
1553
|
+
export declare const UpdateMetricAttributionResponseFilterSensitiveLog: (
|
|
1554
|
+
obj: UpdateMetricAttributionResponse
|
|
1555
|
+
) => any;
|
|
1434
1556
|
export declare const UpdateRecommenderRequestFilterSensitiveLog: (
|
|
1435
1557
|
obj: UpdateRecommenderRequest
|
|
1436
1558
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListMetricAttributionMetricsCommandInput,
|
|
4
|
+
ListMetricAttributionMetricsCommandOutput,
|
|
5
|
+
} from "../commands/ListMetricAttributionMetricsCommand";
|
|
6
|
+
import { PersonalizePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListMetricAttributionMetrics(
|
|
8
|
+
config: PersonalizePaginationConfiguration,
|
|
9
|
+
input: ListMetricAttributionMetricsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListMetricAttributionMetricsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListMetricAttributionsCommandInput,
|
|
4
|
+
ListMetricAttributionsCommandOutput,
|
|
5
|
+
} from "../commands/ListMetricAttributionsCommand";
|
|
6
|
+
import { PersonalizePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListMetricAttributions(
|
|
8
|
+
config: PersonalizePaginationConfiguration,
|
|
9
|
+
input: ListMetricAttributionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListMetricAttributionsCommandOutput>;
|
|
@@ -8,6 +8,8 @@ export * from "./ListDatasetImportJobsPaginator";
|
|
|
8
8
|
export * from "./ListDatasetsPaginator";
|
|
9
9
|
export * from "./ListEventTrackersPaginator";
|
|
10
10
|
export * from "./ListFiltersPaginator";
|
|
11
|
+
export * from "./ListMetricAttributionMetricsPaginator";
|
|
12
|
+
export * from "./ListMetricAttributionsPaginator";
|
|
11
13
|
export * from "./ListRecipesPaginator";
|
|
12
14
|
export * from "./ListRecommendersPaginator";
|
|
13
15
|
export * from "./ListSchemasPaginator";
|
|
@@ -39,6 +39,10 @@ import {
|
|
|
39
39
|
CreateFilterCommandInput,
|
|
40
40
|
CreateFilterCommandOutput,
|
|
41
41
|
} from "../commands/CreateFilterCommand";
|
|
42
|
+
import {
|
|
43
|
+
CreateMetricAttributionCommandInput,
|
|
44
|
+
CreateMetricAttributionCommandOutput,
|
|
45
|
+
} from "../commands/CreateMetricAttributionCommand";
|
|
42
46
|
import {
|
|
43
47
|
CreateRecommenderCommandInput,
|
|
44
48
|
CreateRecommenderCommandOutput,
|
|
@@ -75,6 +79,10 @@ import {
|
|
|
75
79
|
DeleteFilterCommandInput,
|
|
76
80
|
DeleteFilterCommandOutput,
|
|
77
81
|
} from "../commands/DeleteFilterCommand";
|
|
82
|
+
import {
|
|
83
|
+
DeleteMetricAttributionCommandInput,
|
|
84
|
+
DeleteMetricAttributionCommandOutput,
|
|
85
|
+
} from "../commands/DeleteMetricAttributionCommand";
|
|
78
86
|
import {
|
|
79
87
|
DeleteRecommenderCommandInput,
|
|
80
88
|
DeleteRecommenderCommandOutput,
|
|
@@ -131,6 +139,10 @@ import {
|
|
|
131
139
|
DescribeFilterCommandInput,
|
|
132
140
|
DescribeFilterCommandOutput,
|
|
133
141
|
} from "../commands/DescribeFilterCommand";
|
|
142
|
+
import {
|
|
143
|
+
DescribeMetricAttributionCommandInput,
|
|
144
|
+
DescribeMetricAttributionCommandOutput,
|
|
145
|
+
} from "../commands/DescribeMetricAttributionCommand";
|
|
134
146
|
import {
|
|
135
147
|
DescribeRecipeCommandInput,
|
|
136
148
|
DescribeRecipeCommandOutput,
|
|
@@ -191,6 +203,14 @@ import {
|
|
|
191
203
|
ListFiltersCommandInput,
|
|
192
204
|
ListFiltersCommandOutput,
|
|
193
205
|
} from "../commands/ListFiltersCommand";
|
|
206
|
+
import {
|
|
207
|
+
ListMetricAttributionMetricsCommandInput,
|
|
208
|
+
ListMetricAttributionMetricsCommandOutput,
|
|
209
|
+
} from "../commands/ListMetricAttributionMetricsCommand";
|
|
210
|
+
import {
|
|
211
|
+
ListMetricAttributionsCommandInput,
|
|
212
|
+
ListMetricAttributionsCommandOutput,
|
|
213
|
+
} from "../commands/ListMetricAttributionsCommand";
|
|
194
214
|
import {
|
|
195
215
|
ListRecipesCommandInput,
|
|
196
216
|
ListRecipesCommandOutput,
|
|
@@ -239,6 +259,10 @@ import {
|
|
|
239
259
|
UpdateCampaignCommandInput,
|
|
240
260
|
UpdateCampaignCommandOutput,
|
|
241
261
|
} from "../commands/UpdateCampaignCommand";
|
|
262
|
+
import {
|
|
263
|
+
UpdateMetricAttributionCommandInput,
|
|
264
|
+
UpdateMetricAttributionCommandOutput,
|
|
265
|
+
} from "../commands/UpdateMetricAttributionCommand";
|
|
242
266
|
import {
|
|
243
267
|
UpdateRecommenderCommandInput,
|
|
244
268
|
UpdateRecommenderCommandOutput,
|
|
@@ -279,6 +303,10 @@ export declare const serializeAws_json1_1CreateFilterCommand: (
|
|
|
279
303
|
input: CreateFilterCommandInput,
|
|
280
304
|
context: __SerdeContext
|
|
281
305
|
) => Promise<__HttpRequest>;
|
|
306
|
+
export declare const serializeAws_json1_1CreateMetricAttributionCommand: (
|
|
307
|
+
input: CreateMetricAttributionCommandInput,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<__HttpRequest>;
|
|
282
310
|
export declare const serializeAws_json1_1CreateRecommenderCommand: (
|
|
283
311
|
input: CreateRecommenderCommandInput,
|
|
284
312
|
context: __SerdeContext
|
|
@@ -315,6 +343,10 @@ export declare const serializeAws_json1_1DeleteFilterCommand: (
|
|
|
315
343
|
input: DeleteFilterCommandInput,
|
|
316
344
|
context: __SerdeContext
|
|
317
345
|
) => Promise<__HttpRequest>;
|
|
346
|
+
export declare const serializeAws_json1_1DeleteMetricAttributionCommand: (
|
|
347
|
+
input: DeleteMetricAttributionCommandInput,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<__HttpRequest>;
|
|
318
350
|
export declare const serializeAws_json1_1DeleteRecommenderCommand: (
|
|
319
351
|
input: DeleteRecommenderCommandInput,
|
|
320
352
|
context: __SerdeContext
|
|
@@ -371,6 +403,10 @@ export declare const serializeAws_json1_1DescribeFilterCommand: (
|
|
|
371
403
|
input: DescribeFilterCommandInput,
|
|
372
404
|
context: __SerdeContext
|
|
373
405
|
) => Promise<__HttpRequest>;
|
|
406
|
+
export declare const serializeAws_json1_1DescribeMetricAttributionCommand: (
|
|
407
|
+
input: DescribeMetricAttributionCommandInput,
|
|
408
|
+
context: __SerdeContext
|
|
409
|
+
) => Promise<__HttpRequest>;
|
|
374
410
|
export declare const serializeAws_json1_1DescribeRecipeCommand: (
|
|
375
411
|
input: DescribeRecipeCommandInput,
|
|
376
412
|
context: __SerdeContext
|
|
@@ -431,6 +467,14 @@ export declare const serializeAws_json1_1ListFiltersCommand: (
|
|
|
431
467
|
input: ListFiltersCommandInput,
|
|
432
468
|
context: __SerdeContext
|
|
433
469
|
) => Promise<__HttpRequest>;
|
|
470
|
+
export declare const serializeAws_json1_1ListMetricAttributionMetricsCommand: (
|
|
471
|
+
input: ListMetricAttributionMetricsCommandInput,
|
|
472
|
+
context: __SerdeContext
|
|
473
|
+
) => Promise<__HttpRequest>;
|
|
474
|
+
export declare const serializeAws_json1_1ListMetricAttributionsCommand: (
|
|
475
|
+
input: ListMetricAttributionsCommandInput,
|
|
476
|
+
context: __SerdeContext
|
|
477
|
+
) => Promise<__HttpRequest>;
|
|
434
478
|
export declare const serializeAws_json1_1ListRecipesCommand: (
|
|
435
479
|
input: ListRecipesCommandInput,
|
|
436
480
|
context: __SerdeContext
|
|
@@ -479,6 +523,10 @@ export declare const serializeAws_json1_1UpdateCampaignCommand: (
|
|
|
479
523
|
input: UpdateCampaignCommandInput,
|
|
480
524
|
context: __SerdeContext
|
|
481
525
|
) => Promise<__HttpRequest>;
|
|
526
|
+
export declare const serializeAws_json1_1UpdateMetricAttributionCommand: (
|
|
527
|
+
input: UpdateMetricAttributionCommandInput,
|
|
528
|
+
context: __SerdeContext
|
|
529
|
+
) => Promise<__HttpRequest>;
|
|
482
530
|
export declare const serializeAws_json1_1UpdateRecommenderCommand: (
|
|
483
531
|
input: UpdateRecommenderCommandInput,
|
|
484
532
|
context: __SerdeContext
|
|
@@ -519,6 +567,10 @@ export declare const deserializeAws_json1_1CreateFilterCommand: (
|
|
|
519
567
|
output: __HttpResponse,
|
|
520
568
|
context: __SerdeContext
|
|
521
569
|
) => Promise<CreateFilterCommandOutput>;
|
|
570
|
+
export declare const deserializeAws_json1_1CreateMetricAttributionCommand: (
|
|
571
|
+
output: __HttpResponse,
|
|
572
|
+
context: __SerdeContext
|
|
573
|
+
) => Promise<CreateMetricAttributionCommandOutput>;
|
|
522
574
|
export declare const deserializeAws_json1_1CreateRecommenderCommand: (
|
|
523
575
|
output: __HttpResponse,
|
|
524
576
|
context: __SerdeContext
|
|
@@ -555,6 +607,10 @@ export declare const deserializeAws_json1_1DeleteFilterCommand: (
|
|
|
555
607
|
output: __HttpResponse,
|
|
556
608
|
context: __SerdeContext
|
|
557
609
|
) => Promise<DeleteFilterCommandOutput>;
|
|
610
|
+
export declare const deserializeAws_json1_1DeleteMetricAttributionCommand: (
|
|
611
|
+
output: __HttpResponse,
|
|
612
|
+
context: __SerdeContext
|
|
613
|
+
) => Promise<DeleteMetricAttributionCommandOutput>;
|
|
558
614
|
export declare const deserializeAws_json1_1DeleteRecommenderCommand: (
|
|
559
615
|
output: __HttpResponse,
|
|
560
616
|
context: __SerdeContext
|
|
@@ -611,6 +667,10 @@ export declare const deserializeAws_json1_1DescribeFilterCommand: (
|
|
|
611
667
|
output: __HttpResponse,
|
|
612
668
|
context: __SerdeContext
|
|
613
669
|
) => Promise<DescribeFilterCommandOutput>;
|
|
670
|
+
export declare const deserializeAws_json1_1DescribeMetricAttributionCommand: (
|
|
671
|
+
output: __HttpResponse,
|
|
672
|
+
context: __SerdeContext
|
|
673
|
+
) => Promise<DescribeMetricAttributionCommandOutput>;
|
|
614
674
|
export declare const deserializeAws_json1_1DescribeRecipeCommand: (
|
|
615
675
|
output: __HttpResponse,
|
|
616
676
|
context: __SerdeContext
|
|
@@ -671,6 +731,14 @@ export declare const deserializeAws_json1_1ListFiltersCommand: (
|
|
|
671
731
|
output: __HttpResponse,
|
|
672
732
|
context: __SerdeContext
|
|
673
733
|
) => Promise<ListFiltersCommandOutput>;
|
|
734
|
+
export declare const deserializeAws_json1_1ListMetricAttributionMetricsCommand: (
|
|
735
|
+
output: __HttpResponse,
|
|
736
|
+
context: __SerdeContext
|
|
737
|
+
) => Promise<ListMetricAttributionMetricsCommandOutput>;
|
|
738
|
+
export declare const deserializeAws_json1_1ListMetricAttributionsCommand: (
|
|
739
|
+
output: __HttpResponse,
|
|
740
|
+
context: __SerdeContext
|
|
741
|
+
) => Promise<ListMetricAttributionsCommandOutput>;
|
|
674
742
|
export declare const deserializeAws_json1_1ListRecipesCommand: (
|
|
675
743
|
output: __HttpResponse,
|
|
676
744
|
context: __SerdeContext
|
|
@@ -719,6 +787,10 @@ export declare const deserializeAws_json1_1UpdateCampaignCommand: (
|
|
|
719
787
|
output: __HttpResponse,
|
|
720
788
|
context: __SerdeContext
|
|
721
789
|
) => Promise<UpdateCampaignCommandOutput>;
|
|
790
|
+
export declare const deserializeAws_json1_1UpdateMetricAttributionCommand: (
|
|
791
|
+
output: __HttpResponse,
|
|
792
|
+
context: __SerdeContext
|
|
793
|
+
) => Promise<UpdateMetricAttributionCommandOutput>;
|
|
722
794
|
export declare const deserializeAws_json1_1UpdateRecommenderCommand: (
|
|
723
795
|
output: __HttpResponse,
|
|
724
796
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-personalize",
|
|
3
3
|
"description": "AWS SDK for JavaScript Personalize Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.213.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,36 +19,36 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.213.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.212.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.212.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.212.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.212.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.212.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.212.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.212.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.212.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.212.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.212.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.212.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.212.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.212.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.212.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.212.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.212.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.212.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.212.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.212.0",
|
|
42
|
+
"@aws-sdk/types": "3.212.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.212.0",
|
|
44
44
|
"@aws-sdk/util-base64": "3.208.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.212.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.212.0",
|
|
49
|
+
"@aws-sdk/util-endpoints": "3.212.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.212.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.212.0",
|
|
52
52
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
53
53
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
54
54
|
"tslib": "^2.3.1"
|