@aws-sdk/client-customer-profiles 3.939.0 → 3.942.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/README.md +120 -0
- package/dist-cjs/index.js +1058 -84
- package/dist-es/CustomerProfiles.js +30 -0
- package/dist-es/commands/CreateRecommenderCommand.js +16 -0
- package/dist-es/commands/DeleteDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/DeleteRecommenderCommand.js +16 -0
- package/dist-es/commands/GetDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/GetObjectTypeAttributeStatisticsCommand.js +16 -0
- package/dist-es/commands/GetProfileRecommendationsCommand.js +16 -0
- package/dist-es/commands/GetRecommenderCommand.js +16 -0
- package/dist-es/commands/ListDomainObjectTypesCommand.js +16 -0
- package/dist-es/commands/ListObjectTypeAttributeValuesCommand.js +16 -0
- package/dist-es/commands/ListRecommenderRecipesCommand.js +16 -0
- package/dist-es/commands/ListRecommendersCommand.js +16 -0
- package/dist-es/commands/PutDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/StartRecommenderCommand.js +16 -0
- package/dist-es/commands/StopRecommenderCommand.js +16 -0
- package/dist-es/commands/UpdateRecommenderCommand.js +16 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/models/enums.js +41 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListDomainObjectTypesPaginator.js +4 -0
- package/dist-es/pagination/ListRecommenderRecipesPaginator.js +4 -0
- package/dist-es/pagination/ListRecommendersPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +792 -84
- package/dist-types/CustomerProfiles.d.ts +106 -0
- package/dist-types/CustomerProfilesClient.d.ts +17 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +10 -0
- package/dist-types/commands/CreateRecommenderCommand.d.ts +109 -0
- package/dist-types/commands/CreateSegmentDefinitionCommand.d.ts +1 -0
- package/dist-types/commands/CreateSegmentEstimateCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDomainObjectTypeCommand.d.ts +88 -0
- package/dist-types/commands/DeleteRecommenderCommand.d.ts +88 -0
- package/dist-types/commands/GetDomainCommand.d.ts +7 -0
- package/dist-types/commands/GetDomainObjectTypeCommand.d.ts +105 -0
- package/dist-types/commands/GetIntegrationCommand.d.ts +1 -0
- package/dist-types/commands/GetObjectTypeAttributeStatisticsCommand.d.ts +110 -0
- package/dist-types/commands/GetProfileRecommendationsCommand.d.ts +116 -0
- package/dist-types/commands/GetRecommenderCommand.d.ts +136 -0
- package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/GetSegmentMembershipCommand.d.ts +1 -0
- package/dist-types/commands/ListAccountIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/ListDomainObjectTypesCommand.d.ts +102 -0
- package/dist-types/commands/ListIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/ListObjectTypeAttributeValuesCommand.d.ts +99 -0
- package/dist-types/commands/ListRecommenderRecipesCommand.d.ts +93 -0
- package/dist-types/commands/ListRecommendersCommand.d.ts +133 -0
- package/dist-types/commands/ListSegmentDefinitionsCommand.d.ts +1 -0
- package/dist-types/commands/PutDomainObjectTypeCommand.d.ts +118 -0
- package/dist-types/commands/PutIntegrationCommand.d.ts +5 -3
- package/dist-types/commands/StartRecommenderCommand.d.ts +88 -0
- package/dist-types/commands/StopRecommenderCommand.d.ts +89 -0
- package/dist-types/commands/StopUploadJobCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainCommand.d.ts +11 -1
- package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEventTriggerCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRecommenderCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +97 -0
- package/dist-types/models/models_0.d.ts +1084 -738
- package/dist-types/models/models_1.d.ts +744 -0
- package/dist-types/pagination/ListDomainObjectTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommenderRecipesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommendersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +74 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +256 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +92 -2
- package/dist-types/ts3.4/commands/CreateRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetObjectTypeAttributeStatisticsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetProfileRecommendationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRecommenderCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDomainObjectTypesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListObjectTypeAttributeValuesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommenderRecipesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommendersCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PutDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartRecommenderCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StopRecommenderCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/StopUploadJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEventTriggerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +51 -0
- package/dist-types/ts3.4/models/models_0.d.ts +251 -142
- package/dist-types/ts3.4/models/models_1.d.ts +176 -0
- package/dist-types/ts3.4/pagination/ListDomainObjectTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommenderRecipesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommendersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +74 -0
- package/package.json +5 -5
|
@@ -88,6 +88,10 @@ import {
|
|
|
88
88
|
CreateProfileCommandInput,
|
|
89
89
|
CreateProfileCommandOutput,
|
|
90
90
|
} from "./commands/CreateProfileCommand";
|
|
91
|
+
import {
|
|
92
|
+
CreateRecommenderCommandInput,
|
|
93
|
+
CreateRecommenderCommandOutput,
|
|
94
|
+
} from "./commands/CreateRecommenderCommand";
|
|
91
95
|
import {
|
|
92
96
|
CreateSegmentDefinitionCommandInput,
|
|
93
97
|
CreateSegmentDefinitionCommandOutput,
|
|
@@ -116,6 +120,10 @@ import {
|
|
|
116
120
|
DeleteDomainLayoutCommandInput,
|
|
117
121
|
DeleteDomainLayoutCommandOutput,
|
|
118
122
|
} from "./commands/DeleteDomainLayoutCommand";
|
|
123
|
+
import {
|
|
124
|
+
DeleteDomainObjectTypeCommandInput,
|
|
125
|
+
DeleteDomainObjectTypeCommandOutput,
|
|
126
|
+
} from "./commands/DeleteDomainObjectTypeCommand";
|
|
119
127
|
import {
|
|
120
128
|
DeleteEventStreamCommandInput,
|
|
121
129
|
DeleteEventStreamCommandOutput,
|
|
@@ -144,6 +152,10 @@ import {
|
|
|
144
152
|
DeleteProfileObjectTypeCommandInput,
|
|
145
153
|
DeleteProfileObjectTypeCommandOutput,
|
|
146
154
|
} from "./commands/DeleteProfileObjectTypeCommand";
|
|
155
|
+
import {
|
|
156
|
+
DeleteRecommenderCommandInput,
|
|
157
|
+
DeleteRecommenderCommandOutput,
|
|
158
|
+
} from "./commands/DeleteRecommenderCommand";
|
|
147
159
|
import {
|
|
148
160
|
DeleteSegmentDefinitionCommandInput,
|
|
149
161
|
DeleteSegmentDefinitionCommandOutput,
|
|
@@ -176,6 +188,10 @@ import {
|
|
|
176
188
|
GetDomainLayoutCommandInput,
|
|
177
189
|
GetDomainLayoutCommandOutput,
|
|
178
190
|
} from "./commands/GetDomainLayoutCommand";
|
|
191
|
+
import {
|
|
192
|
+
GetDomainObjectTypeCommandInput,
|
|
193
|
+
GetDomainObjectTypeCommandOutput,
|
|
194
|
+
} from "./commands/GetDomainObjectTypeCommand";
|
|
179
195
|
import {
|
|
180
196
|
GetEventStreamCommandInput,
|
|
181
197
|
GetEventStreamCommandOutput,
|
|
@@ -196,6 +212,10 @@ import {
|
|
|
196
212
|
GetMatchesCommandInput,
|
|
197
213
|
GetMatchesCommandOutput,
|
|
198
214
|
} from "./commands/GetMatchesCommand";
|
|
215
|
+
import {
|
|
216
|
+
GetObjectTypeAttributeStatisticsCommandInput,
|
|
217
|
+
GetObjectTypeAttributeStatisticsCommandOutput,
|
|
218
|
+
} from "./commands/GetObjectTypeAttributeStatisticsCommand";
|
|
199
219
|
import {
|
|
200
220
|
GetProfileHistoryRecordCommandInput,
|
|
201
221
|
GetProfileHistoryRecordCommandOutput,
|
|
@@ -208,6 +228,14 @@ import {
|
|
|
208
228
|
GetProfileObjectTypeTemplateCommandInput,
|
|
209
229
|
GetProfileObjectTypeTemplateCommandOutput,
|
|
210
230
|
} from "./commands/GetProfileObjectTypeTemplateCommand";
|
|
231
|
+
import {
|
|
232
|
+
GetProfileRecommendationsCommandInput,
|
|
233
|
+
GetProfileRecommendationsCommandOutput,
|
|
234
|
+
} from "./commands/GetProfileRecommendationsCommand";
|
|
235
|
+
import {
|
|
236
|
+
GetRecommenderCommandInput,
|
|
237
|
+
GetRecommenderCommandOutput,
|
|
238
|
+
} from "./commands/GetRecommenderCommand";
|
|
211
239
|
import {
|
|
212
240
|
GetSegmentDefinitionCommandInput,
|
|
213
241
|
GetSegmentDefinitionCommandOutput,
|
|
@@ -260,6 +288,10 @@ import {
|
|
|
260
288
|
ListDomainLayoutsCommandInput,
|
|
261
289
|
ListDomainLayoutsCommandOutput,
|
|
262
290
|
} from "./commands/ListDomainLayoutsCommand";
|
|
291
|
+
import {
|
|
292
|
+
ListDomainObjectTypesCommandInput,
|
|
293
|
+
ListDomainObjectTypesCommandOutput,
|
|
294
|
+
} from "./commands/ListDomainObjectTypesCommand";
|
|
263
295
|
import {
|
|
264
296
|
ListDomainsCommandInput,
|
|
265
297
|
ListDomainsCommandOutput,
|
|
@@ -284,6 +316,10 @@ import {
|
|
|
284
316
|
ListObjectTypeAttributesCommandInput,
|
|
285
317
|
ListObjectTypeAttributesCommandOutput,
|
|
286
318
|
} from "./commands/ListObjectTypeAttributesCommand";
|
|
319
|
+
import {
|
|
320
|
+
ListObjectTypeAttributeValuesCommandInput,
|
|
321
|
+
ListObjectTypeAttributeValuesCommandOutput,
|
|
322
|
+
} from "./commands/ListObjectTypeAttributeValuesCommand";
|
|
287
323
|
import {
|
|
288
324
|
ListProfileAttributeValuesCommandInput,
|
|
289
325
|
ListProfileAttributeValuesCommandOutput,
|
|
@@ -304,6 +340,14 @@ import {
|
|
|
304
340
|
ListProfileObjectTypeTemplatesCommandInput,
|
|
305
341
|
ListProfileObjectTypeTemplatesCommandOutput,
|
|
306
342
|
} from "./commands/ListProfileObjectTypeTemplatesCommand";
|
|
343
|
+
import {
|
|
344
|
+
ListRecommenderRecipesCommandInput,
|
|
345
|
+
ListRecommenderRecipesCommandOutput,
|
|
346
|
+
} from "./commands/ListRecommenderRecipesCommand";
|
|
347
|
+
import {
|
|
348
|
+
ListRecommendersCommandInput,
|
|
349
|
+
ListRecommendersCommandOutput,
|
|
350
|
+
} from "./commands/ListRecommendersCommand";
|
|
307
351
|
import {
|
|
308
352
|
ListRuleBasedMatchesCommandInput,
|
|
309
353
|
ListRuleBasedMatchesCommandOutput,
|
|
@@ -328,6 +372,10 @@ import {
|
|
|
328
372
|
MergeProfilesCommandInput,
|
|
329
373
|
MergeProfilesCommandOutput,
|
|
330
374
|
} from "./commands/MergeProfilesCommand";
|
|
375
|
+
import {
|
|
376
|
+
PutDomainObjectTypeCommandInput,
|
|
377
|
+
PutDomainObjectTypeCommandOutput,
|
|
378
|
+
} from "./commands/PutDomainObjectTypeCommand";
|
|
331
379
|
import {
|
|
332
380
|
PutIntegrationCommandInput,
|
|
333
381
|
PutIntegrationCommandOutput,
|
|
@@ -344,10 +392,18 @@ import {
|
|
|
344
392
|
SearchProfilesCommandInput,
|
|
345
393
|
SearchProfilesCommandOutput,
|
|
346
394
|
} from "./commands/SearchProfilesCommand";
|
|
395
|
+
import {
|
|
396
|
+
StartRecommenderCommandInput,
|
|
397
|
+
StartRecommenderCommandOutput,
|
|
398
|
+
} from "./commands/StartRecommenderCommand";
|
|
347
399
|
import {
|
|
348
400
|
StartUploadJobCommandInput,
|
|
349
401
|
StartUploadJobCommandOutput,
|
|
350
402
|
} from "./commands/StartUploadJobCommand";
|
|
403
|
+
import {
|
|
404
|
+
StopRecommenderCommandInput,
|
|
405
|
+
StopRecommenderCommandOutput,
|
|
406
|
+
} from "./commands/StopRecommenderCommand";
|
|
351
407
|
import {
|
|
352
408
|
StopUploadJobCommandInput,
|
|
353
409
|
StopUploadJobCommandOutput,
|
|
@@ -380,6 +436,10 @@ import {
|
|
|
380
436
|
UpdateProfileCommandInput,
|
|
381
437
|
UpdateProfileCommandOutput,
|
|
382
438
|
} from "./commands/UpdateProfileCommand";
|
|
439
|
+
import {
|
|
440
|
+
UpdateRecommenderCommandInput,
|
|
441
|
+
UpdateRecommenderCommandOutput,
|
|
442
|
+
} from "./commands/UpdateRecommenderCommand";
|
|
383
443
|
import {
|
|
384
444
|
ClientInputEndpointParameters,
|
|
385
445
|
ClientResolvedEndpointParameters,
|
|
@@ -398,6 +458,7 @@ export type ServiceInputTypes =
|
|
|
398
458
|
| CreateEventTriggerCommandInput
|
|
399
459
|
| CreateIntegrationWorkflowCommandInput
|
|
400
460
|
| CreateProfileCommandInput
|
|
461
|
+
| CreateRecommenderCommandInput
|
|
401
462
|
| CreateSegmentDefinitionCommandInput
|
|
402
463
|
| CreateSegmentEstimateCommandInput
|
|
403
464
|
| CreateSegmentSnapshotCommandInput
|
|
@@ -405,6 +466,7 @@ export type ServiceInputTypes =
|
|
|
405
466
|
| DeleteCalculatedAttributeDefinitionCommandInput
|
|
406
467
|
| DeleteDomainCommandInput
|
|
407
468
|
| DeleteDomainLayoutCommandInput
|
|
469
|
+
| DeleteDomainObjectTypeCommandInput
|
|
408
470
|
| DeleteEventStreamCommandInput
|
|
409
471
|
| DeleteEventTriggerCommandInput
|
|
410
472
|
| DeleteIntegrationCommandInput
|
|
@@ -412,6 +474,7 @@ export type ServiceInputTypes =
|
|
|
412
474
|
| DeleteProfileKeyCommandInput
|
|
413
475
|
| DeleteProfileObjectCommandInput
|
|
414
476
|
| DeleteProfileObjectTypeCommandInput
|
|
477
|
+
| DeleteRecommenderCommandInput
|
|
415
478
|
| DeleteSegmentDefinitionCommandInput
|
|
416
479
|
| DeleteWorkflowCommandInput
|
|
417
480
|
| DetectProfileObjectTypeCommandInput
|
|
@@ -420,14 +483,18 @@ export type ServiceInputTypes =
|
|
|
420
483
|
| GetCalculatedAttributeForProfileCommandInput
|
|
421
484
|
| GetDomainCommandInput
|
|
422
485
|
| GetDomainLayoutCommandInput
|
|
486
|
+
| GetDomainObjectTypeCommandInput
|
|
423
487
|
| GetEventStreamCommandInput
|
|
424
488
|
| GetEventTriggerCommandInput
|
|
425
489
|
| GetIdentityResolutionJobCommandInput
|
|
426
490
|
| GetIntegrationCommandInput
|
|
427
491
|
| GetMatchesCommandInput
|
|
492
|
+
| GetObjectTypeAttributeStatisticsCommandInput
|
|
428
493
|
| GetProfileHistoryRecordCommandInput
|
|
429
494
|
| GetProfileObjectTypeCommandInput
|
|
430
495
|
| GetProfileObjectTypeTemplateCommandInput
|
|
496
|
+
| GetProfileRecommendationsCommandInput
|
|
497
|
+
| GetRecommenderCommandInput
|
|
431
498
|
| GetSegmentDefinitionCommandInput
|
|
432
499
|
| GetSegmentEstimateCommandInput
|
|
433
500
|
| GetSegmentMembershipCommandInput
|
|
@@ -441,28 +508,35 @@ export type ServiceInputTypes =
|
|
|
441
508
|
| ListCalculatedAttributeDefinitionsCommandInput
|
|
442
509
|
| ListCalculatedAttributesForProfileCommandInput
|
|
443
510
|
| ListDomainLayoutsCommandInput
|
|
511
|
+
| ListDomainObjectTypesCommandInput
|
|
444
512
|
| ListDomainsCommandInput
|
|
445
513
|
| ListEventStreamsCommandInput
|
|
446
514
|
| ListEventTriggersCommandInput
|
|
447
515
|
| ListIdentityResolutionJobsCommandInput
|
|
448
516
|
| ListIntegrationsCommandInput
|
|
517
|
+
| ListObjectTypeAttributeValuesCommandInput
|
|
449
518
|
| ListObjectTypeAttributesCommandInput
|
|
450
519
|
| ListProfileAttributeValuesCommandInput
|
|
451
520
|
| ListProfileHistoryRecordsCommandInput
|
|
452
521
|
| ListProfileObjectTypeTemplatesCommandInput
|
|
453
522
|
| ListProfileObjectTypesCommandInput
|
|
454
523
|
| ListProfileObjectsCommandInput
|
|
524
|
+
| ListRecommenderRecipesCommandInput
|
|
525
|
+
| ListRecommendersCommandInput
|
|
455
526
|
| ListRuleBasedMatchesCommandInput
|
|
456
527
|
| ListSegmentDefinitionsCommandInput
|
|
457
528
|
| ListTagsForResourceCommandInput
|
|
458
529
|
| ListUploadJobsCommandInput
|
|
459
530
|
| ListWorkflowsCommandInput
|
|
460
531
|
| MergeProfilesCommandInput
|
|
532
|
+
| PutDomainObjectTypeCommandInput
|
|
461
533
|
| PutIntegrationCommandInput
|
|
462
534
|
| PutProfileObjectCommandInput
|
|
463
535
|
| PutProfileObjectTypeCommandInput
|
|
464
536
|
| SearchProfilesCommandInput
|
|
537
|
+
| StartRecommenderCommandInput
|
|
465
538
|
| StartUploadJobCommandInput
|
|
539
|
+
| StopRecommenderCommandInput
|
|
466
540
|
| StopUploadJobCommandInput
|
|
467
541
|
| TagResourceCommandInput
|
|
468
542
|
| UntagResourceCommandInput
|
|
@@ -470,7 +544,8 @@ export type ServiceInputTypes =
|
|
|
470
544
|
| UpdateDomainCommandInput
|
|
471
545
|
| UpdateDomainLayoutCommandInput
|
|
472
546
|
| UpdateEventTriggerCommandInput
|
|
473
|
-
| UpdateProfileCommandInput
|
|
547
|
+
| UpdateProfileCommandInput
|
|
548
|
+
| UpdateRecommenderCommandInput;
|
|
474
549
|
export type ServiceOutputTypes =
|
|
475
550
|
| AddProfileKeyCommandOutput
|
|
476
551
|
| BatchGetCalculatedAttributeForProfileCommandOutput
|
|
@@ -482,6 +557,7 @@ export type ServiceOutputTypes =
|
|
|
482
557
|
| CreateEventTriggerCommandOutput
|
|
483
558
|
| CreateIntegrationWorkflowCommandOutput
|
|
484
559
|
| CreateProfileCommandOutput
|
|
560
|
+
| CreateRecommenderCommandOutput
|
|
485
561
|
| CreateSegmentDefinitionCommandOutput
|
|
486
562
|
| CreateSegmentEstimateCommandOutput
|
|
487
563
|
| CreateSegmentSnapshotCommandOutput
|
|
@@ -489,6 +565,7 @@ export type ServiceOutputTypes =
|
|
|
489
565
|
| DeleteCalculatedAttributeDefinitionCommandOutput
|
|
490
566
|
| DeleteDomainCommandOutput
|
|
491
567
|
| DeleteDomainLayoutCommandOutput
|
|
568
|
+
| DeleteDomainObjectTypeCommandOutput
|
|
492
569
|
| DeleteEventStreamCommandOutput
|
|
493
570
|
| DeleteEventTriggerCommandOutput
|
|
494
571
|
| DeleteIntegrationCommandOutput
|
|
@@ -496,6 +573,7 @@ export type ServiceOutputTypes =
|
|
|
496
573
|
| DeleteProfileKeyCommandOutput
|
|
497
574
|
| DeleteProfileObjectCommandOutput
|
|
498
575
|
| DeleteProfileObjectTypeCommandOutput
|
|
576
|
+
| DeleteRecommenderCommandOutput
|
|
499
577
|
| DeleteSegmentDefinitionCommandOutput
|
|
500
578
|
| DeleteWorkflowCommandOutput
|
|
501
579
|
| DetectProfileObjectTypeCommandOutput
|
|
@@ -504,14 +582,18 @@ export type ServiceOutputTypes =
|
|
|
504
582
|
| GetCalculatedAttributeForProfileCommandOutput
|
|
505
583
|
| GetDomainCommandOutput
|
|
506
584
|
| GetDomainLayoutCommandOutput
|
|
585
|
+
| GetDomainObjectTypeCommandOutput
|
|
507
586
|
| GetEventStreamCommandOutput
|
|
508
587
|
| GetEventTriggerCommandOutput
|
|
509
588
|
| GetIdentityResolutionJobCommandOutput
|
|
510
589
|
| GetIntegrationCommandOutput
|
|
511
590
|
| GetMatchesCommandOutput
|
|
591
|
+
| GetObjectTypeAttributeStatisticsCommandOutput
|
|
512
592
|
| GetProfileHistoryRecordCommandOutput
|
|
513
593
|
| GetProfileObjectTypeCommandOutput
|
|
514
594
|
| GetProfileObjectTypeTemplateCommandOutput
|
|
595
|
+
| GetProfileRecommendationsCommandOutput
|
|
596
|
+
| GetRecommenderCommandOutput
|
|
515
597
|
| GetSegmentDefinitionCommandOutput
|
|
516
598
|
| GetSegmentEstimateCommandOutput
|
|
517
599
|
| GetSegmentMembershipCommandOutput
|
|
@@ -525,28 +607,35 @@ export type ServiceOutputTypes =
|
|
|
525
607
|
| ListCalculatedAttributeDefinitionsCommandOutput
|
|
526
608
|
| ListCalculatedAttributesForProfileCommandOutput
|
|
527
609
|
| ListDomainLayoutsCommandOutput
|
|
610
|
+
| ListDomainObjectTypesCommandOutput
|
|
528
611
|
| ListDomainsCommandOutput
|
|
529
612
|
| ListEventStreamsCommandOutput
|
|
530
613
|
| ListEventTriggersCommandOutput
|
|
531
614
|
| ListIdentityResolutionJobsCommandOutput
|
|
532
615
|
| ListIntegrationsCommandOutput
|
|
616
|
+
| ListObjectTypeAttributeValuesCommandOutput
|
|
533
617
|
| ListObjectTypeAttributesCommandOutput
|
|
534
618
|
| ListProfileAttributeValuesCommandOutput
|
|
535
619
|
| ListProfileHistoryRecordsCommandOutput
|
|
536
620
|
| ListProfileObjectTypeTemplatesCommandOutput
|
|
537
621
|
| ListProfileObjectTypesCommandOutput
|
|
538
622
|
| ListProfileObjectsCommandOutput
|
|
623
|
+
| ListRecommenderRecipesCommandOutput
|
|
624
|
+
| ListRecommendersCommandOutput
|
|
539
625
|
| ListRuleBasedMatchesCommandOutput
|
|
540
626
|
| ListSegmentDefinitionsCommandOutput
|
|
541
627
|
| ListTagsForResourceCommandOutput
|
|
542
628
|
| ListUploadJobsCommandOutput
|
|
543
629
|
| ListWorkflowsCommandOutput
|
|
544
630
|
| MergeProfilesCommandOutput
|
|
631
|
+
| PutDomainObjectTypeCommandOutput
|
|
545
632
|
| PutIntegrationCommandOutput
|
|
546
633
|
| PutProfileObjectCommandOutput
|
|
547
634
|
| PutProfileObjectTypeCommandOutput
|
|
548
635
|
| SearchProfilesCommandOutput
|
|
636
|
+
| StartRecommenderCommandOutput
|
|
549
637
|
| StartUploadJobCommandOutput
|
|
638
|
+
| StopRecommenderCommandOutput
|
|
550
639
|
| StopUploadJobCommandOutput
|
|
551
640
|
| TagResourceCommandOutput
|
|
552
641
|
| UntagResourceCommandOutput
|
|
@@ -554,7 +643,8 @@ export type ServiceOutputTypes =
|
|
|
554
643
|
| UpdateDomainCommandOutput
|
|
555
644
|
| UpdateDomainLayoutCommandOutput
|
|
556
645
|
| UpdateEventTriggerCommandOutput
|
|
557
|
-
| UpdateProfileCommandOutput
|
|
646
|
+
| UpdateProfileCommandOutput
|
|
647
|
+
| UpdateRecommenderCommandOutput;
|
|
558
648
|
export interface ClientDefaults
|
|
559
649
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
560
650
|
requestHandler?: __HttpHandlerUserInput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateRecommenderRequest,
|
|
10
|
+
CreateRecommenderResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateRecommenderCommandInput
|
|
15
|
+
extends CreateRecommenderRequest {}
|
|
16
|
+
export interface CreateRecommenderCommandOutput
|
|
17
|
+
extends CreateRecommenderResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateRecommenderCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateRecommenderCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateRecommenderCommandInput,
|
|
24
|
+
CreateRecommenderCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateRecommenderCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateRecommenderCommandInput,
|
|
33
|
+
CreateRecommenderCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateRecommenderCommand extends CreateRecommenderCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateRecommenderRequest;
|
|
44
|
+
output: CreateRecommenderResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateRecommenderCommandInput;
|
|
48
|
+
output: CreateRecommenderCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteDomainObjectTypeRequest,
|
|
10
|
+
DeleteDomainObjectTypeResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteDomainObjectTypeCommandInput
|
|
15
|
+
extends DeleteDomainObjectTypeRequest {}
|
|
16
|
+
export interface DeleteDomainObjectTypeCommandOutput
|
|
17
|
+
extends DeleteDomainObjectTypeResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteDomainObjectTypeCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteDomainObjectTypeCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteDomainObjectTypeCommandInput,
|
|
24
|
+
DeleteDomainObjectTypeCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteDomainObjectTypeCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteDomainObjectTypeCommandInput,
|
|
33
|
+
DeleteDomainObjectTypeCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteDomainObjectTypeCommand extends DeleteDomainObjectTypeCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteDomainObjectTypeRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteDomainObjectTypeCommandInput;
|
|
48
|
+
output: DeleteDomainObjectTypeCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteRecommenderRequest,
|
|
10
|
+
DeleteRecommenderResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteRecommenderCommandInput
|
|
15
|
+
extends DeleteRecommenderRequest {}
|
|
16
|
+
export interface DeleteRecommenderCommandOutput
|
|
17
|
+
extends DeleteRecommenderResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteRecommenderCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteRecommenderCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteRecommenderCommandInput,
|
|
24
|
+
DeleteRecommenderCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteRecommenderCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteRecommenderCommandInput,
|
|
33
|
+
DeleteRecommenderCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteRecommenderCommand extends DeleteRecommenderCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteRecommenderRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteRecommenderCommandInput;
|
|
48
|
+
output: DeleteRecommenderCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
GetDomainObjectTypeRequest,
|
|
10
|
+
GetDomainObjectTypeResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDomainObjectTypeCommandInput
|
|
15
|
+
extends GetDomainObjectTypeRequest {}
|
|
16
|
+
export interface GetDomainObjectTypeCommandOutput
|
|
17
|
+
extends GetDomainObjectTypeResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDomainObjectTypeCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDomainObjectTypeCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDomainObjectTypeCommandInput,
|
|
24
|
+
GetDomainObjectTypeCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetDomainObjectTypeCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDomainObjectTypeCommandInput,
|
|
33
|
+
GetDomainObjectTypeCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDomainObjectTypeCommand extends GetDomainObjectTypeCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDomainObjectTypeRequest;
|
|
44
|
+
output: GetDomainObjectTypeResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDomainObjectTypeCommandInput;
|
|
48
|
+
output: GetDomainObjectTypeCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
GetObjectTypeAttributeStatisticsRequest,
|
|
10
|
+
GetObjectTypeAttributeStatisticsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetObjectTypeAttributeStatisticsCommandInput
|
|
15
|
+
extends GetObjectTypeAttributeStatisticsRequest {}
|
|
16
|
+
export interface GetObjectTypeAttributeStatisticsCommandOutput
|
|
17
|
+
extends GetObjectTypeAttributeStatisticsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetObjectTypeAttributeStatisticsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetObjectTypeAttributeStatisticsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetObjectTypeAttributeStatisticsCommandInput,
|
|
24
|
+
GetObjectTypeAttributeStatisticsCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetObjectTypeAttributeStatisticsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetObjectTypeAttributeStatisticsCommandInput,
|
|
33
|
+
GetObjectTypeAttributeStatisticsCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetObjectTypeAttributeStatisticsCommand extends GetObjectTypeAttributeStatisticsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetObjectTypeAttributeStatisticsRequest;
|
|
44
|
+
output: GetObjectTypeAttributeStatisticsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetObjectTypeAttributeStatisticsCommandInput;
|
|
48
|
+
output: GetObjectTypeAttributeStatisticsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
GetProfileRecommendationsRequest,
|
|
10
|
+
GetProfileRecommendationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetProfileRecommendationsCommandInput
|
|
15
|
+
extends GetProfileRecommendationsRequest {}
|
|
16
|
+
export interface GetProfileRecommendationsCommandOutput
|
|
17
|
+
extends GetProfileRecommendationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetProfileRecommendationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetProfileRecommendationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetProfileRecommendationsCommandInput,
|
|
24
|
+
GetProfileRecommendationsCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetProfileRecommendationsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetProfileRecommendationsCommandInput,
|
|
33
|
+
GetProfileRecommendationsCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetProfileRecommendationsCommand extends GetProfileRecommendationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetProfileRecommendationsRequest;
|
|
44
|
+
output: GetProfileRecommendationsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetProfileRecommendationsCommandInput;
|
|
48
|
+
output: GetProfileRecommendationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
GetRecommenderRequest,
|
|
10
|
+
GetRecommenderResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetRecommenderCommandInput extends GetRecommenderRequest {}
|
|
15
|
+
export interface GetRecommenderCommandOutput
|
|
16
|
+
extends GetRecommenderResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetRecommenderCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetRecommenderCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetRecommenderCommandInput,
|
|
23
|
+
GetRecommenderCommandOutput,
|
|
24
|
+
CustomerProfilesClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: GetRecommenderCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetRecommenderCommandInput,
|
|
32
|
+
GetRecommenderCommandOutput,
|
|
33
|
+
CustomerProfilesClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetRecommenderCommand extends GetRecommenderCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetRecommenderRequest;
|
|
43
|
+
output: GetRecommenderResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetRecommenderCommandInput;
|
|
47
|
+
output: GetRecommenderCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|