@aws-sdk/client-personalize 3.212.0 → 3.215.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 +485 -3
- 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 +470 -0
- 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/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- 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/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
- package/package.json +28 -28
|
@@ -615,6 +615,10 @@ export interface CreateDatasetImportJobRequest {
|
|
|
615
615
|
* </ul>
|
|
616
616
|
*/
|
|
617
617
|
importMode?: ImportMode | string;
|
|
618
|
+
/**
|
|
619
|
+
* <p>If you created a metric attribution, specify whether to publish metrics for this import job to Amazon S3</p>
|
|
620
|
+
*/
|
|
621
|
+
publishAttributionMetricsToS3?: boolean;
|
|
618
622
|
}
|
|
619
623
|
export interface CreateDatasetImportJobResponse {
|
|
620
624
|
/**
|
|
@@ -673,6 +677,63 @@ export interface CreateFilterResponse {
|
|
|
673
677
|
*/
|
|
674
678
|
filterArn?: string;
|
|
675
679
|
}
|
|
680
|
+
/**
|
|
681
|
+
* <p>Contains information on a metric that a metric attribution reports on. For more information, see <a href="https://docs.aws.amazon.com/personalize/latest/dg/measuring-recommendation-impact.html">Measuring impact of recommendations</a>.</p>
|
|
682
|
+
*/
|
|
683
|
+
export interface MetricAttribute {
|
|
684
|
+
/**
|
|
685
|
+
* <p>The metric's event type.</p>
|
|
686
|
+
*/
|
|
687
|
+
eventType: string | undefined;
|
|
688
|
+
/**
|
|
689
|
+
* <p>The metric's name. The name helps you identify the metric in Amazon CloudWatch or Amazon S3.</p>
|
|
690
|
+
*/
|
|
691
|
+
metricName: string | undefined;
|
|
692
|
+
/**
|
|
693
|
+
* <p>The attribute's expression. Available functions are <code>SUM()</code> or <code>SAMPLECOUNT()</code>. For SUM() functions, provide the
|
|
694
|
+
* dataset type (either Interactions or Items) and column to sum as a parameter. For example SUM(Items.PRICE).</p>
|
|
695
|
+
*/
|
|
696
|
+
expression: string | undefined;
|
|
697
|
+
}
|
|
698
|
+
/**
|
|
699
|
+
* <p>The output configuration details for a metric attribution.</p>
|
|
700
|
+
*/
|
|
701
|
+
export interface MetricAttributionOutput {
|
|
702
|
+
/**
|
|
703
|
+
* <p>The configuration details of an Amazon S3 input or output bucket.</p>
|
|
704
|
+
*/
|
|
705
|
+
s3DataDestination?: S3DataConfig;
|
|
706
|
+
/**
|
|
707
|
+
* <p>The Amazon Resource Name (ARN) of the IAM service role that has permissions to add data to your output Amazon S3 bucket and add metrics to Amazon CloudWatch. For more information, see <a href="https://docs.aws.amazon.com/personalize/latest/dg/measuring-recommendation-impact.html">Measuring impact of recommendations</a>.</p>
|
|
708
|
+
*/
|
|
709
|
+
roleArn: string | undefined;
|
|
710
|
+
}
|
|
711
|
+
export interface CreateMetricAttributionRequest {
|
|
712
|
+
/**
|
|
713
|
+
* <p>A name for the metric attribution.</p>
|
|
714
|
+
*/
|
|
715
|
+
name: string | undefined;
|
|
716
|
+
/**
|
|
717
|
+
* <p>The Amazon Resource Name (ARN) of the destination dataset group for the metric attribution.</p>
|
|
718
|
+
*/
|
|
719
|
+
datasetGroupArn: string | undefined;
|
|
720
|
+
/**
|
|
721
|
+
* <p>A list of metric attributes for the metric attribution. Each metric attribute specifies an event type to track and a function.
|
|
722
|
+
* Available functions are <code>SUM()</code> or <code>SAMPLECOUNT()</code>. For SUM() functions, provide the
|
|
723
|
+
* dataset type (either Interactions or Items) and column to sum as a parameter. For example SUM(Items.PRICE).</p>
|
|
724
|
+
*/
|
|
725
|
+
metrics: MetricAttribute[] | undefined;
|
|
726
|
+
/**
|
|
727
|
+
* <p>The output configuration details for the metric attribution.</p>
|
|
728
|
+
*/
|
|
729
|
+
metricsOutputConfig: MetricAttributionOutput | undefined;
|
|
730
|
+
}
|
|
731
|
+
export interface CreateMetricAttributionResponse {
|
|
732
|
+
/**
|
|
733
|
+
* <p>The Amazon Resource Name (ARN) for the new metric attribution.</p>
|
|
734
|
+
*/
|
|
735
|
+
metricAttributionArn?: string;
|
|
736
|
+
}
|
|
676
737
|
/**
|
|
677
738
|
* <p>The configuration details of the recommender.</p>
|
|
678
739
|
*/
|
|
@@ -1004,6 +1065,10 @@ export declare enum TrainingMode {
|
|
|
1004
1065
|
UPDATE = "UPDATE"
|
|
1005
1066
|
}
|
|
1006
1067
|
export interface CreateSolutionVersionRequest {
|
|
1068
|
+
/**
|
|
1069
|
+
* <p>The name of the solution version.</p>
|
|
1070
|
+
*/
|
|
1071
|
+
name?: string;
|
|
1007
1072
|
/**
|
|
1008
1073
|
* <p>The Amazon Resource Name (ARN) of the solution containing the training configuration
|
|
1009
1074
|
* information.</p>
|
|
@@ -1066,6 +1131,12 @@ export interface DeleteFilterRequest {
|
|
|
1066
1131
|
*/
|
|
1067
1132
|
filterArn: string | undefined;
|
|
1068
1133
|
}
|
|
1134
|
+
export interface DeleteMetricAttributionRequest {
|
|
1135
|
+
/**
|
|
1136
|
+
* <p>The metric attribution's Amazon Resource Name (ARN).</p>
|
|
1137
|
+
*/
|
|
1138
|
+
metricAttributionArn: string | undefined;
|
|
1139
|
+
}
|
|
1069
1140
|
export interface DeleteRecommenderRequest {
|
|
1070
1141
|
/**
|
|
1071
1142
|
* <p>The Amazon Resource Name (ARN) of the recommender to delete.</p>
|
|
@@ -1686,6 +1757,10 @@ export interface DatasetImportJob {
|
|
|
1686
1757
|
* records.</p>
|
|
1687
1758
|
*/
|
|
1688
1759
|
importMode?: ImportMode | string;
|
|
1760
|
+
/**
|
|
1761
|
+
* <p>Whether the job publishes metrics to Amazon S3 for a metric attribution.</p>
|
|
1762
|
+
*/
|
|
1763
|
+
publishAttributionMetricsToS3?: boolean;
|
|
1689
1764
|
}
|
|
1690
1765
|
export interface DescribeDatasetImportJobResponse {
|
|
1691
1766
|
/**
|
|
@@ -1867,6 +1942,57 @@ export interface DescribeFilterResponse {
|
|
|
1867
1942
|
*/
|
|
1868
1943
|
filter?: Filter;
|
|
1869
1944
|
}
|
|
1945
|
+
export interface DescribeMetricAttributionRequest {
|
|
1946
|
+
/**
|
|
1947
|
+
* <p>The metric attribution's Amazon Resource Name (ARN).</p>
|
|
1948
|
+
*/
|
|
1949
|
+
metricAttributionArn: string | undefined;
|
|
1950
|
+
}
|
|
1951
|
+
/**
|
|
1952
|
+
* <p>Contains information on a metric attribution. A metric attribution creates reports on the data that you import into Amazon Personalize.
|
|
1953
|
+
* Depending on how you import the data, you can view reports in Amazon CloudWatch or Amazon S3.
|
|
1954
|
+
* For more information, see <a href="https://docs.aws.amazon.com/personalize/latest/dg/measuring-recommendation-impact.html">Measuring impact of recommendations</a>.</p>
|
|
1955
|
+
*/
|
|
1956
|
+
export interface MetricAttribution {
|
|
1957
|
+
/**
|
|
1958
|
+
* <p>The metric attribution's name.</p>
|
|
1959
|
+
*/
|
|
1960
|
+
name?: string;
|
|
1961
|
+
/**
|
|
1962
|
+
* <p>The metric attribution's Amazon Resource Name (ARN).</p>
|
|
1963
|
+
*/
|
|
1964
|
+
metricAttributionArn?: string;
|
|
1965
|
+
/**
|
|
1966
|
+
* <p>The metric attribution's dataset group Amazon Resource Name (ARN).</p>
|
|
1967
|
+
*/
|
|
1968
|
+
datasetGroupArn?: string;
|
|
1969
|
+
/**
|
|
1970
|
+
* <p>The metric attribution's output configuration.</p>
|
|
1971
|
+
*/
|
|
1972
|
+
metricsOutputConfig?: MetricAttributionOutput;
|
|
1973
|
+
/**
|
|
1974
|
+
* <p>The metric attribution's status.</p>
|
|
1975
|
+
*/
|
|
1976
|
+
status?: string;
|
|
1977
|
+
/**
|
|
1978
|
+
* <p>The metric attribution's creation date time.</p>
|
|
1979
|
+
*/
|
|
1980
|
+
creationDateTime?: Date;
|
|
1981
|
+
/**
|
|
1982
|
+
* <p>The metric attribution's last updated date time.</p>
|
|
1983
|
+
*/
|
|
1984
|
+
lastUpdatedDateTime?: Date;
|
|
1985
|
+
/**
|
|
1986
|
+
* <p>The metric attribution's failure reason.</p>
|
|
1987
|
+
*/
|
|
1988
|
+
failureReason?: string;
|
|
1989
|
+
}
|
|
1990
|
+
export interface DescribeMetricAttributionResponse {
|
|
1991
|
+
/**
|
|
1992
|
+
* <p>The details of the metric attribution.</p>
|
|
1993
|
+
*/
|
|
1994
|
+
metricAttribution?: MetricAttribution;
|
|
1995
|
+
}
|
|
1870
1996
|
export interface DescribeRecipeRequest {
|
|
1871
1997
|
/**
|
|
1872
1998
|
* <p>The Amazon Resource Name (ARN) of the recipe to describe.</p>
|
|
@@ -2239,6 +2365,10 @@ export interface TunedHPOParams {
|
|
|
2239
2365
|
* <p>An object that provides information about a specific version of a <a href="https://docs.aws.amazon.com/personalize/latest/dg/API_Solution.html">Solution</a> in a Custom dataset group.</p>
|
|
2240
2366
|
*/
|
|
2241
2367
|
export interface SolutionVersion {
|
|
2368
|
+
/**
|
|
2369
|
+
* <p>The name of the solution version.</p>
|
|
2370
|
+
*/
|
|
2371
|
+
name?: string;
|
|
2242
2372
|
/**
|
|
2243
2373
|
* <p>The ARN of the solution version.</p>
|
|
2244
2374
|
*/
|
|
@@ -2994,6 +3124,83 @@ export interface ListFiltersResponse {
|
|
|
2994
3124
|
*/
|
|
2995
3125
|
nextToken?: string;
|
|
2996
3126
|
}
|
|
3127
|
+
export interface ListMetricAttributionMetricsRequest {
|
|
3128
|
+
/**
|
|
3129
|
+
* <p>The Amazon Resource Name (ARN) of the metric attribution to retrieve attributes for.</p>
|
|
3130
|
+
*/
|
|
3131
|
+
metricAttributionArn?: string;
|
|
3132
|
+
/**
|
|
3133
|
+
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3134
|
+
*/
|
|
3135
|
+
nextToken?: string;
|
|
3136
|
+
/**
|
|
3137
|
+
* <p>The maximum number of metrics to return in one page of results.</p>
|
|
3138
|
+
*/
|
|
3139
|
+
maxResults?: number;
|
|
3140
|
+
}
|
|
3141
|
+
export interface ListMetricAttributionMetricsResponse {
|
|
3142
|
+
/**
|
|
3143
|
+
* <p>The metrics for the specified metric attribution.</p>
|
|
3144
|
+
*/
|
|
3145
|
+
metrics?: MetricAttribute[];
|
|
3146
|
+
/**
|
|
3147
|
+
* <p>Specify the pagination token from a previous <code>ListMetricAttributionMetricsResponse</code> request to retrieve the next page of results.</p>
|
|
3148
|
+
*/
|
|
3149
|
+
nextToken?: string;
|
|
3150
|
+
}
|
|
3151
|
+
export interface ListMetricAttributionsRequest {
|
|
3152
|
+
/**
|
|
3153
|
+
* <p>The metric attributions' dataset group Amazon Resource Name (ARN).</p>
|
|
3154
|
+
*/
|
|
3155
|
+
datasetGroupArn?: string;
|
|
3156
|
+
/**
|
|
3157
|
+
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3158
|
+
*/
|
|
3159
|
+
nextToken?: string;
|
|
3160
|
+
/**
|
|
3161
|
+
* <p>The maximum number of metric attributions to return in one page of results.</p>
|
|
3162
|
+
*/
|
|
3163
|
+
maxResults?: number;
|
|
3164
|
+
}
|
|
3165
|
+
/**
|
|
3166
|
+
* <p>Provides a summary of the properties of a metric attribution. For a complete listing, call the <a href="https://docs.aws.amazon.com/personalize/latest/dg/API_DescribeMetricAttribution.html">DescribeMetricAttribution</a>.</p>
|
|
3167
|
+
*/
|
|
3168
|
+
export interface MetricAttributionSummary {
|
|
3169
|
+
/**
|
|
3170
|
+
* <p>The name of the metric attribution.</p>
|
|
3171
|
+
*/
|
|
3172
|
+
name?: string;
|
|
3173
|
+
/**
|
|
3174
|
+
* <p>The metric attribution's Amazon Resource Name (ARN).</p>
|
|
3175
|
+
*/
|
|
3176
|
+
metricAttributionArn?: string;
|
|
3177
|
+
/**
|
|
3178
|
+
* <p>The metric attribution's status.</p>
|
|
3179
|
+
*/
|
|
3180
|
+
status?: string;
|
|
3181
|
+
/**
|
|
3182
|
+
* <p>The metric attribution's creation date time.</p>
|
|
3183
|
+
*/
|
|
3184
|
+
creationDateTime?: Date;
|
|
3185
|
+
/**
|
|
3186
|
+
* <p>The metric attribution's last updated date time.</p>
|
|
3187
|
+
*/
|
|
3188
|
+
lastUpdatedDateTime?: Date;
|
|
3189
|
+
/**
|
|
3190
|
+
* <p>The metric attribution's failure reason.</p>
|
|
3191
|
+
*/
|
|
3192
|
+
failureReason?: string;
|
|
3193
|
+
}
|
|
3194
|
+
export interface ListMetricAttributionsResponse {
|
|
3195
|
+
/**
|
|
3196
|
+
* <p>The list of metric attributions.</p>
|
|
3197
|
+
*/
|
|
3198
|
+
metricAttributions?: MetricAttributionSummary[];
|
|
3199
|
+
/**
|
|
3200
|
+
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3201
|
+
*/
|
|
3202
|
+
nextToken?: string;
|
|
3203
|
+
}
|
|
2997
3204
|
export declare enum RecipeProvider {
|
|
2998
3205
|
SERVICE = "SERVICE"
|
|
2999
3206
|
}
|
|
@@ -3229,6 +3436,10 @@ export interface SolutionSummary {
|
|
|
3229
3436
|
* <p>The date and time (in Unix time) that the solution was last updated.</p>
|
|
3230
3437
|
*/
|
|
3231
3438
|
lastUpdatedDateTime?: Date;
|
|
3439
|
+
/**
|
|
3440
|
+
* <p>The Amazon Resource Name (ARN) of the recipe used by the solution.</p>
|
|
3441
|
+
*/
|
|
3442
|
+
recipeArn?: string;
|
|
3232
3443
|
}
|
|
3233
3444
|
export interface ListSolutionsResponse {
|
|
3234
3445
|
/**
|
|
@@ -3367,6 +3578,30 @@ export interface UpdateCampaignResponse {
|
|
|
3367
3578
|
*/
|
|
3368
3579
|
campaignArn?: string;
|
|
3369
3580
|
}
|
|
3581
|
+
export interface UpdateMetricAttributionRequest {
|
|
3582
|
+
/**
|
|
3583
|
+
* <p>Add new metric attributes to the metric attribution.</p>
|
|
3584
|
+
*/
|
|
3585
|
+
addMetrics?: MetricAttribute[];
|
|
3586
|
+
/**
|
|
3587
|
+
* <p>Remove metric attributes from the metric attribution.</p>
|
|
3588
|
+
*/
|
|
3589
|
+
removeMetrics?: string[];
|
|
3590
|
+
/**
|
|
3591
|
+
* <p>An output config for the metric attribution.</p>
|
|
3592
|
+
*/
|
|
3593
|
+
metricsOutputConfig?: MetricAttributionOutput;
|
|
3594
|
+
/**
|
|
3595
|
+
* <p>The Amazon Resource Name (ARN) for the metric attribution to update.</p>
|
|
3596
|
+
*/
|
|
3597
|
+
metricAttributionArn?: string;
|
|
3598
|
+
}
|
|
3599
|
+
export interface UpdateMetricAttributionResponse {
|
|
3600
|
+
/**
|
|
3601
|
+
* <p>The Amazon Resource Name (ARN) for the metric attribution that you updated.</p>
|
|
3602
|
+
*/
|
|
3603
|
+
metricAttributionArn?: string;
|
|
3604
|
+
}
|
|
3370
3605
|
export interface UpdateRecommenderRequest {
|
|
3371
3606
|
/**
|
|
3372
3607
|
* <p>The Amazon Resource Name (ARN) of the recommender to modify.</p>
|
|
@@ -3519,6 +3754,22 @@ export declare const CreateFilterRequestFilterSensitiveLog: (obj: CreateFilterRe
|
|
|
3519
3754
|
* @internal
|
|
3520
3755
|
*/
|
|
3521
3756
|
export declare const CreateFilterResponseFilterSensitiveLog: (obj: CreateFilterResponse) => any;
|
|
3757
|
+
/**
|
|
3758
|
+
* @internal
|
|
3759
|
+
*/
|
|
3760
|
+
export declare const MetricAttributeFilterSensitiveLog: (obj: MetricAttribute) => any;
|
|
3761
|
+
/**
|
|
3762
|
+
* @internal
|
|
3763
|
+
*/
|
|
3764
|
+
export declare const MetricAttributionOutputFilterSensitiveLog: (obj: MetricAttributionOutput) => any;
|
|
3765
|
+
/**
|
|
3766
|
+
* @internal
|
|
3767
|
+
*/
|
|
3768
|
+
export declare const CreateMetricAttributionRequestFilterSensitiveLog: (obj: CreateMetricAttributionRequest) => any;
|
|
3769
|
+
/**
|
|
3770
|
+
* @internal
|
|
3771
|
+
*/
|
|
3772
|
+
export declare const CreateMetricAttributionResponseFilterSensitiveLog: (obj: CreateMetricAttributionResponse) => any;
|
|
3522
3773
|
/**
|
|
3523
3774
|
* @internal
|
|
3524
3775
|
*/
|
|
@@ -3615,6 +3866,10 @@ export declare const DeleteEventTrackerRequestFilterSensitiveLog: (obj: DeleteEv
|
|
|
3615
3866
|
* @internal
|
|
3616
3867
|
*/
|
|
3617
3868
|
export declare const DeleteFilterRequestFilterSensitiveLog: (obj: DeleteFilterRequest) => any;
|
|
3869
|
+
/**
|
|
3870
|
+
* @internal
|
|
3871
|
+
*/
|
|
3872
|
+
export declare const DeleteMetricAttributionRequestFilterSensitiveLog: (obj: DeleteMetricAttributionRequest) => any;
|
|
3618
3873
|
/**
|
|
3619
3874
|
* @internal
|
|
3620
3875
|
*/
|
|
@@ -3759,6 +4014,18 @@ export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
|
3759
4014
|
* @internal
|
|
3760
4015
|
*/
|
|
3761
4016
|
export declare const DescribeFilterResponseFilterSensitiveLog: (obj: DescribeFilterResponse) => any;
|
|
4017
|
+
/**
|
|
4018
|
+
* @internal
|
|
4019
|
+
*/
|
|
4020
|
+
export declare const DescribeMetricAttributionRequestFilterSensitiveLog: (obj: DescribeMetricAttributionRequest) => any;
|
|
4021
|
+
/**
|
|
4022
|
+
* @internal
|
|
4023
|
+
*/
|
|
4024
|
+
export declare const MetricAttributionFilterSensitiveLog: (obj: MetricAttribution) => any;
|
|
4025
|
+
/**
|
|
4026
|
+
* @internal
|
|
4027
|
+
*/
|
|
4028
|
+
export declare const DescribeMetricAttributionResponseFilterSensitiveLog: (obj: DescribeMetricAttributionResponse) => any;
|
|
3762
4029
|
/**
|
|
3763
4030
|
* @internal
|
|
3764
4031
|
*/
|
|
@@ -3951,6 +4218,26 @@ export declare const FilterSummaryFilterSensitiveLog: (obj: FilterSummary) => an
|
|
|
3951
4218
|
* @internal
|
|
3952
4219
|
*/
|
|
3953
4220
|
export declare const ListFiltersResponseFilterSensitiveLog: (obj: ListFiltersResponse) => any;
|
|
4221
|
+
/**
|
|
4222
|
+
* @internal
|
|
4223
|
+
*/
|
|
4224
|
+
export declare const ListMetricAttributionMetricsRequestFilterSensitiveLog: (obj: ListMetricAttributionMetricsRequest) => any;
|
|
4225
|
+
/**
|
|
4226
|
+
* @internal
|
|
4227
|
+
*/
|
|
4228
|
+
export declare const ListMetricAttributionMetricsResponseFilterSensitiveLog: (obj: ListMetricAttributionMetricsResponse) => any;
|
|
4229
|
+
/**
|
|
4230
|
+
* @internal
|
|
4231
|
+
*/
|
|
4232
|
+
export declare const ListMetricAttributionsRequestFilterSensitiveLog: (obj: ListMetricAttributionsRequest) => any;
|
|
4233
|
+
/**
|
|
4234
|
+
* @internal
|
|
4235
|
+
*/
|
|
4236
|
+
export declare const MetricAttributionSummaryFilterSensitiveLog: (obj: MetricAttributionSummary) => any;
|
|
4237
|
+
/**
|
|
4238
|
+
* @internal
|
|
4239
|
+
*/
|
|
4240
|
+
export declare const ListMetricAttributionsResponseFilterSensitiveLog: (obj: ListMetricAttributionsResponse) => any;
|
|
3954
4241
|
/**
|
|
3955
4242
|
* @internal
|
|
3956
4243
|
*/
|
|
@@ -4059,6 +4346,14 @@ export declare const UpdateCampaignRequestFilterSensitiveLog: (obj: UpdateCampai
|
|
|
4059
4346
|
* @internal
|
|
4060
4347
|
*/
|
|
4061
4348
|
export declare const UpdateCampaignResponseFilterSensitiveLog: (obj: UpdateCampaignResponse) => any;
|
|
4349
|
+
/**
|
|
4350
|
+
* @internal
|
|
4351
|
+
*/
|
|
4352
|
+
export declare const UpdateMetricAttributionRequestFilterSensitiveLog: (obj: UpdateMetricAttributionRequest) => any;
|
|
4353
|
+
/**
|
|
4354
|
+
* @internal
|
|
4355
|
+
*/
|
|
4356
|
+
export declare const UpdateMetricAttributionResponseFilterSensitiveLog: (obj: UpdateMetricAttributionResponse) => any;
|
|
4062
4357
|
/**
|
|
4063
4358
|
* @internal
|
|
4064
4359
|
*/
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListMetricAttributionMetricsCommandInput, ListMetricAttributionMetricsCommandOutput } from "../commands/ListMetricAttributionMetricsCommand";
|
|
3
|
+
import { PersonalizePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListMetricAttributionMetrics(config: PersonalizePaginationConfiguration, input: ListMetricAttributionMetricsCommandInput, ...additionalArguments: any): Paginator<ListMetricAttributionMetricsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListMetricAttributionsCommandInput, ListMetricAttributionsCommandOutput } from "../commands/ListMetricAttributionsCommand";
|
|
3
|
+
import { PersonalizePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListMetricAttributions(config: PersonalizePaginationConfiguration, input: ListMetricAttributionsCommandInput, ...additionalArguments: any): 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";
|
|
@@ -9,6 +9,7 @@ import { CreateDatasetGroupCommandInput, CreateDatasetGroupCommandOutput } from
|
|
|
9
9
|
import { CreateDatasetImportJobCommandInput, CreateDatasetImportJobCommandOutput } from "../commands/CreateDatasetImportJobCommand";
|
|
10
10
|
import { CreateEventTrackerCommandInput, CreateEventTrackerCommandOutput } from "../commands/CreateEventTrackerCommand";
|
|
11
11
|
import { CreateFilterCommandInput, CreateFilterCommandOutput } from "../commands/CreateFilterCommand";
|
|
12
|
+
import { CreateMetricAttributionCommandInput, CreateMetricAttributionCommandOutput } from "../commands/CreateMetricAttributionCommand";
|
|
12
13
|
import { CreateRecommenderCommandInput, CreateRecommenderCommandOutput } from "../commands/CreateRecommenderCommand";
|
|
13
14
|
import { CreateSchemaCommandInput, CreateSchemaCommandOutput } from "../commands/CreateSchemaCommand";
|
|
14
15
|
import { CreateSolutionCommandInput, CreateSolutionCommandOutput } from "../commands/CreateSolutionCommand";
|
|
@@ -18,6 +19,7 @@ import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "../comman
|
|
|
18
19
|
import { DeleteDatasetGroupCommandInput, DeleteDatasetGroupCommandOutput } from "../commands/DeleteDatasetGroupCommand";
|
|
19
20
|
import { DeleteEventTrackerCommandInput, DeleteEventTrackerCommandOutput } from "../commands/DeleteEventTrackerCommand";
|
|
20
21
|
import { DeleteFilterCommandInput, DeleteFilterCommandOutput } from "../commands/DeleteFilterCommand";
|
|
22
|
+
import { DeleteMetricAttributionCommandInput, DeleteMetricAttributionCommandOutput } from "../commands/DeleteMetricAttributionCommand";
|
|
21
23
|
import { DeleteRecommenderCommandInput, DeleteRecommenderCommandOutput } from "../commands/DeleteRecommenderCommand";
|
|
22
24
|
import { DeleteSchemaCommandInput, DeleteSchemaCommandOutput } from "../commands/DeleteSchemaCommand";
|
|
23
25
|
import { DeleteSolutionCommandInput, DeleteSolutionCommandOutput } from "../commands/DeleteSolutionCommand";
|
|
@@ -32,6 +34,7 @@ import { DescribeDatasetImportJobCommandInput, DescribeDatasetImportJobCommandOu
|
|
|
32
34
|
import { DescribeEventTrackerCommandInput, DescribeEventTrackerCommandOutput } from "../commands/DescribeEventTrackerCommand";
|
|
33
35
|
import { DescribeFeatureTransformationCommandInput, DescribeFeatureTransformationCommandOutput } from "../commands/DescribeFeatureTransformationCommand";
|
|
34
36
|
import { DescribeFilterCommandInput, DescribeFilterCommandOutput } from "../commands/DescribeFilterCommand";
|
|
37
|
+
import { DescribeMetricAttributionCommandInput, DescribeMetricAttributionCommandOutput } from "../commands/DescribeMetricAttributionCommand";
|
|
35
38
|
import { DescribeRecipeCommandInput, DescribeRecipeCommandOutput } from "../commands/DescribeRecipeCommand";
|
|
36
39
|
import { DescribeRecommenderCommandInput, DescribeRecommenderCommandOutput } from "../commands/DescribeRecommenderCommand";
|
|
37
40
|
import { DescribeSchemaCommandInput, DescribeSchemaCommandOutput } from "../commands/DescribeSchemaCommand";
|
|
@@ -47,6 +50,8 @@ import { ListDatasetImportJobsCommandInput, ListDatasetImportJobsCommandOutput }
|
|
|
47
50
|
import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "../commands/ListDatasetsCommand";
|
|
48
51
|
import { ListEventTrackersCommandInput, ListEventTrackersCommandOutput } from "../commands/ListEventTrackersCommand";
|
|
49
52
|
import { ListFiltersCommandInput, ListFiltersCommandOutput } from "../commands/ListFiltersCommand";
|
|
53
|
+
import { ListMetricAttributionMetricsCommandInput, ListMetricAttributionMetricsCommandOutput } from "../commands/ListMetricAttributionMetricsCommand";
|
|
54
|
+
import { ListMetricAttributionsCommandInput, ListMetricAttributionsCommandOutput } from "../commands/ListMetricAttributionsCommand";
|
|
50
55
|
import { ListRecipesCommandInput, ListRecipesCommandOutput } from "../commands/ListRecipesCommand";
|
|
51
56
|
import { ListRecommendersCommandInput, ListRecommendersCommandOutput } from "../commands/ListRecommendersCommand";
|
|
52
57
|
import { ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand";
|
|
@@ -59,6 +64,7 @@ import { StopSolutionVersionCreationCommandInput, StopSolutionVersionCreationCom
|
|
|
59
64
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
60
65
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
61
66
|
import { UpdateCampaignCommandInput, UpdateCampaignCommandOutput } from "../commands/UpdateCampaignCommand";
|
|
67
|
+
import { UpdateMetricAttributionCommandInput, UpdateMetricAttributionCommandOutput } from "../commands/UpdateMetricAttributionCommand";
|
|
62
68
|
import { UpdateRecommenderCommandInput, UpdateRecommenderCommandOutput } from "../commands/UpdateRecommenderCommand";
|
|
63
69
|
export declare const serializeAws_json1_1CreateBatchInferenceJobCommand: (input: CreateBatchInferenceJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
70
|
export declare const serializeAws_json1_1CreateBatchSegmentJobCommand: (input: CreateBatchSegmentJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -69,6 +75,7 @@ export declare const serializeAws_json1_1CreateDatasetGroupCommand: (input: Crea
|
|
|
69
75
|
export declare const serializeAws_json1_1CreateDatasetImportJobCommand: (input: CreateDatasetImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
76
|
export declare const serializeAws_json1_1CreateEventTrackerCommand: (input: CreateEventTrackerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
77
|
export declare const serializeAws_json1_1CreateFilterCommand: (input: CreateFilterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const serializeAws_json1_1CreateMetricAttributionCommand: (input: CreateMetricAttributionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
79
|
export declare const serializeAws_json1_1CreateRecommenderCommand: (input: CreateRecommenderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
80
|
export declare const serializeAws_json1_1CreateSchemaCommand: (input: CreateSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
81
|
export declare const serializeAws_json1_1CreateSolutionCommand: (input: CreateSolutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -78,6 +85,7 @@ export declare const serializeAws_json1_1DeleteDatasetCommand: (input: DeleteDat
|
|
|
78
85
|
export declare const serializeAws_json1_1DeleteDatasetGroupCommand: (input: DeleteDatasetGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
86
|
export declare const serializeAws_json1_1DeleteEventTrackerCommand: (input: DeleteEventTrackerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
87
|
export declare const serializeAws_json1_1DeleteFilterCommand: (input: DeleteFilterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
+
export declare const serializeAws_json1_1DeleteMetricAttributionCommand: (input: DeleteMetricAttributionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
89
|
export declare const serializeAws_json1_1DeleteRecommenderCommand: (input: DeleteRecommenderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
90
|
export declare const serializeAws_json1_1DeleteSchemaCommand: (input: DeleteSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
91
|
export declare const serializeAws_json1_1DeleteSolutionCommand: (input: DeleteSolutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -92,6 +100,7 @@ export declare const serializeAws_json1_1DescribeDatasetImportJobCommand: (input
|
|
|
92
100
|
export declare const serializeAws_json1_1DescribeEventTrackerCommand: (input: DescribeEventTrackerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
101
|
export declare const serializeAws_json1_1DescribeFeatureTransformationCommand: (input: DescribeFeatureTransformationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
102
|
export declare const serializeAws_json1_1DescribeFilterCommand: (input: DescribeFilterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
|
+
export declare const serializeAws_json1_1DescribeMetricAttributionCommand: (input: DescribeMetricAttributionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
104
|
export declare const serializeAws_json1_1DescribeRecipeCommand: (input: DescribeRecipeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
105
|
export declare const serializeAws_json1_1DescribeRecommenderCommand: (input: DescribeRecommenderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
106
|
export declare const serializeAws_json1_1DescribeSchemaCommand: (input: DescribeSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -107,6 +116,8 @@ export declare const serializeAws_json1_1ListDatasetImportJobsCommand: (input: L
|
|
|
107
116
|
export declare const serializeAws_json1_1ListDatasetsCommand: (input: ListDatasetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
117
|
export declare const serializeAws_json1_1ListEventTrackersCommand: (input: ListEventTrackersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
118
|
export declare const serializeAws_json1_1ListFiltersCommand: (input: ListFiltersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
|
+
export declare const serializeAws_json1_1ListMetricAttributionMetricsCommand: (input: ListMetricAttributionMetricsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
|
+
export declare const serializeAws_json1_1ListMetricAttributionsCommand: (input: ListMetricAttributionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
121
|
export declare const serializeAws_json1_1ListRecipesCommand: (input: ListRecipesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
111
122
|
export declare const serializeAws_json1_1ListRecommendersCommand: (input: ListRecommendersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
112
123
|
export declare const serializeAws_json1_1ListSchemasCommand: (input: ListSchemasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -119,6 +130,7 @@ export declare const serializeAws_json1_1StopSolutionVersionCreationCommand: (in
|
|
|
119
130
|
export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
131
|
export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
121
132
|
export declare const serializeAws_json1_1UpdateCampaignCommand: (input: UpdateCampaignCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
|
+
export declare const serializeAws_json1_1UpdateMetricAttributionCommand: (input: UpdateMetricAttributionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
122
134
|
export declare const serializeAws_json1_1UpdateRecommenderCommand: (input: UpdateRecommenderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
135
|
export declare const deserializeAws_json1_1CreateBatchInferenceJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBatchInferenceJobCommandOutput>;
|
|
124
136
|
export declare const deserializeAws_json1_1CreateBatchSegmentJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBatchSegmentJobCommandOutput>;
|
|
@@ -129,6 +141,7 @@ export declare const deserializeAws_json1_1CreateDatasetGroupCommand: (output: _
|
|
|
129
141
|
export declare const deserializeAws_json1_1CreateDatasetImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDatasetImportJobCommandOutput>;
|
|
130
142
|
export declare const deserializeAws_json1_1CreateEventTrackerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEventTrackerCommandOutput>;
|
|
131
143
|
export declare const deserializeAws_json1_1CreateFilterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFilterCommandOutput>;
|
|
144
|
+
export declare const deserializeAws_json1_1CreateMetricAttributionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMetricAttributionCommandOutput>;
|
|
132
145
|
export declare const deserializeAws_json1_1CreateRecommenderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRecommenderCommandOutput>;
|
|
133
146
|
export declare const deserializeAws_json1_1CreateSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSchemaCommandOutput>;
|
|
134
147
|
export declare const deserializeAws_json1_1CreateSolutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSolutionCommandOutput>;
|
|
@@ -138,6 +151,7 @@ export declare const deserializeAws_json1_1DeleteDatasetCommand: (output: __Http
|
|
|
138
151
|
export declare const deserializeAws_json1_1DeleteDatasetGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatasetGroupCommandOutput>;
|
|
139
152
|
export declare const deserializeAws_json1_1DeleteEventTrackerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEventTrackerCommandOutput>;
|
|
140
153
|
export declare const deserializeAws_json1_1DeleteFilterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFilterCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_json1_1DeleteMetricAttributionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMetricAttributionCommandOutput>;
|
|
141
155
|
export declare const deserializeAws_json1_1DeleteRecommenderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRecommenderCommandOutput>;
|
|
142
156
|
export declare const deserializeAws_json1_1DeleteSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSchemaCommandOutput>;
|
|
143
157
|
export declare const deserializeAws_json1_1DeleteSolutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSolutionCommandOutput>;
|
|
@@ -152,6 +166,7 @@ export declare const deserializeAws_json1_1DescribeDatasetImportJobCommand: (out
|
|
|
152
166
|
export declare const deserializeAws_json1_1DescribeEventTrackerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventTrackerCommandOutput>;
|
|
153
167
|
export declare const deserializeAws_json1_1DescribeFeatureTransformationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFeatureTransformationCommandOutput>;
|
|
154
168
|
export declare const deserializeAws_json1_1DescribeFilterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFilterCommandOutput>;
|
|
169
|
+
export declare const deserializeAws_json1_1DescribeMetricAttributionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeMetricAttributionCommandOutput>;
|
|
155
170
|
export declare const deserializeAws_json1_1DescribeRecipeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRecipeCommandOutput>;
|
|
156
171
|
export declare const deserializeAws_json1_1DescribeRecommenderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRecommenderCommandOutput>;
|
|
157
172
|
export declare const deserializeAws_json1_1DescribeSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSchemaCommandOutput>;
|
|
@@ -167,6 +182,8 @@ export declare const deserializeAws_json1_1ListDatasetImportJobsCommand: (output
|
|
|
167
182
|
export declare const deserializeAws_json1_1ListDatasetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetsCommandOutput>;
|
|
168
183
|
export declare const deserializeAws_json1_1ListEventTrackersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventTrackersCommandOutput>;
|
|
169
184
|
export declare const deserializeAws_json1_1ListFiltersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFiltersCommandOutput>;
|
|
185
|
+
export declare const deserializeAws_json1_1ListMetricAttributionMetricsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMetricAttributionMetricsCommandOutput>;
|
|
186
|
+
export declare const deserializeAws_json1_1ListMetricAttributionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMetricAttributionsCommandOutput>;
|
|
170
187
|
export declare const deserializeAws_json1_1ListRecipesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRecipesCommandOutput>;
|
|
171
188
|
export declare const deserializeAws_json1_1ListRecommendersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRecommendersCommandOutput>;
|
|
172
189
|
export declare const deserializeAws_json1_1ListSchemasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSchemasCommandOutput>;
|
|
@@ -179,4 +196,5 @@ export declare const deserializeAws_json1_1StopSolutionVersionCreationCommand: (
|
|
|
179
196
|
export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
180
197
|
export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
181
198
|
export declare const deserializeAws_json1_1UpdateCampaignCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCampaignCommandOutput>;
|
|
199
|
+
export declare const deserializeAws_json1_1UpdateMetricAttributionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMetricAttributionCommandOutput>;
|
|
182
200
|
export declare const deserializeAws_json1_1UpdateRecommenderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRecommenderCommandOutput>;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: PersonalizeClientConfig) => {
|
|
|
32
32
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
33
|
tls?: boolean | undefined;
|
|
34
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
-
credentials?: import("@aws-sdk/types").
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
36
|
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
37
|
signingEscapePath?: boolean | undefined;
|
|
38
38
|
systemClockOffset?: number | undefined;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: PersonalizeClientConfig) => {
|
|
|
32
32
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
33
|
tls?: boolean | undefined;
|
|
34
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
-
credentials?: import("@aws-sdk/types").
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
36
|
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
37
|
signingEscapePath?: boolean | undefined;
|
|
38
38
|
systemClockOffset?: number | undefined;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: PersonalizeClientConfig) => {
|
|
|
31
31
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
32
32
|
tls?: boolean | undefined;
|
|
33
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
34
|
-
credentials?: import("@aws-sdk/types").
|
|
34
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
35
35
|
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
36
36
|
signingEscapePath?: boolean | undefined;
|
|
37
37
|
systemClockOffset?: number | undefined;
|