@aws-sdk/client-customer-profiles 3.840.0 → 3.843.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.
Files changed (59) hide show
  1. package/README.md +48 -0
  2. package/dist-cjs/index.js +393 -67
  3. package/dist-es/CustomerProfiles.js +12 -0
  4. package/dist-es/commands/CreateUploadJobCommand.js +23 -0
  5. package/dist-es/commands/GetUploadJobCommand.js +23 -0
  6. package/dist-es/commands/GetUploadJobPathCommand.js +22 -0
  7. package/dist-es/commands/ListUploadJobsCommand.js +22 -0
  8. package/dist-es/commands/StartUploadJobCommand.js +22 -0
  9. package/dist-es/commands/StopUploadJobCommand.js +22 -0
  10. package/dist-es/commands/UpdateCalculatedAttributeDefinitionCommand.js +1 -1
  11. package/dist-es/commands/UpdateDomainLayoutCommand.js +1 -1
  12. package/dist-es/commands/UpdateEventTriggerCommand.js +1 -1
  13. package/dist-es/commands/index.js +6 -0
  14. package/dist-es/models/models_0.js +20 -35
  15. package/dist-es/models/models_1.js +35 -0
  16. package/dist-es/pagination/ListUploadJobsPaginator.js +4 -0
  17. package/dist-es/pagination/index.js +1 -0
  18. package/dist-es/protocols/Aws_restJson1.js +184 -0
  19. package/dist-types/CustomerProfiles.d.ts +42 -0
  20. package/dist-types/CustomerProfilesClient.d.ts +8 -2
  21. package/dist-types/commands/CreateUploadJobCommand.d.ts +98 -0
  22. package/dist-types/commands/GetUploadJobCommand.d.ts +107 -0
  23. package/dist-types/commands/GetUploadJobPathCommand.d.ts +91 -0
  24. package/dist-types/commands/ListUploadJobsCommand.d.ts +100 -0
  25. package/dist-types/commands/StartUploadJobCommand.d.ts +87 -0
  26. package/dist-types/commands/StopUploadJobCommand.d.ts +86 -0
  27. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  28. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  29. package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
  30. package/dist-types/commands/UpdateDomainCommand.d.ts +1 -1
  31. package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +1 -1
  32. package/dist-types/commands/UpdateEventTriggerCommand.d.ts +1 -1
  33. package/dist-types/commands/index.d.ts +6 -0
  34. package/dist-types/models/models_0.d.ts +480 -660
  35. package/dist-types/models/models_1.d.ts +569 -1
  36. package/dist-types/pagination/ListUploadJobsPaginator.d.ts +7 -0
  37. package/dist-types/pagination/index.d.ts +1 -0
  38. package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
  39. package/dist-types/ts3.4/CustomerProfiles.d.ts +102 -0
  40. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +36 -0
  41. package/dist-types/ts3.4/commands/CreateUploadJobCommand.d.ts +50 -0
  42. package/dist-types/ts3.4/commands/GetUploadJobCommand.d.ts +47 -0
  43. package/dist-types/ts3.4/commands/GetUploadJobPathCommand.d.ts +50 -0
  44. package/dist-types/ts3.4/commands/ListUploadJobsCommand.d.ts +50 -0
  45. package/dist-types/ts3.4/commands/StartUploadJobCommand.d.ts +48 -0
  46. package/dist-types/ts3.4/commands/StopUploadJobCommand.d.ts +50 -0
  47. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/UpdateEventTriggerCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  54. package/dist-types/ts3.4/models/models_0.d.ts +95 -137
  55. package/dist-types/ts3.4/models/models_1.d.ts +147 -1
  56. package/dist-types/ts3.4/pagination/ListUploadJobsPaginator.d.ts +11 -0
  57. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  58. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
  59. package/package.json +1 -1
@@ -1,4 +1,544 @@
1
- import { Gender, PartyType, UpdateAddress } from "./models_0";
1
+ import { AttributeDetails, Conditions, EventTriggerCondition, EventTriggerLimits, Gender, LayoutType, MatchingRequest, MatchingResponse, PartyType, Readiness, ReadinessStatus, RuleBasedMatchingRequest, RuleBasedMatchingResponse, Statistic } from "./models_0";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface StartUploadJobResponse {
6
+ }
7
+ /**
8
+ * @public
9
+ */
10
+ export interface StopUploadJobRequest {
11
+ /**
12
+ * <p>The unique name of the domain containing the upload job to stop. </p>
13
+ * @public
14
+ */
15
+ DomainName: string | undefined;
16
+ /**
17
+ * <p>The unique identifier of the upload job to stop. </p>
18
+ * @public
19
+ */
20
+ JobId: string | undefined;
21
+ }
22
+ /**
23
+ * @public
24
+ */
25
+ export interface StopUploadJobResponse {
26
+ }
27
+ /**
28
+ * @public
29
+ */
30
+ export interface TagResourceRequest {
31
+ /**
32
+ * <p>The ARN of the resource that you're adding tags to.</p>
33
+ * @public
34
+ */
35
+ resourceArn: string | undefined;
36
+ /**
37
+ * <p>The tags used to organize, track, or control access for this resource.</p>
38
+ * @public
39
+ */
40
+ tags: Record<string, string> | undefined;
41
+ }
42
+ /**
43
+ * @public
44
+ */
45
+ export interface TagResourceResponse {
46
+ }
47
+ /**
48
+ * @public
49
+ */
50
+ export interface UntagResourceRequest {
51
+ /**
52
+ * <p>The ARN of the resource from which you are removing tags.</p>
53
+ * @public
54
+ */
55
+ resourceArn: string | undefined;
56
+ /**
57
+ * <p>The list of tag keys to remove from the resource.</p>
58
+ * @public
59
+ */
60
+ tagKeys: string[] | undefined;
61
+ }
62
+ /**
63
+ * @public
64
+ */
65
+ export interface UntagResourceResponse {
66
+ }
67
+ /**
68
+ * @public
69
+ */
70
+ export interface UpdateCalculatedAttributeDefinitionRequest {
71
+ /**
72
+ * <p>The unique name of the domain.</p>
73
+ * @public
74
+ */
75
+ DomainName: string | undefined;
76
+ /**
77
+ * <p>The unique name of the calculated attribute.</p>
78
+ * @public
79
+ */
80
+ CalculatedAttributeName: string | undefined;
81
+ /**
82
+ * <p>The display name of the calculated attribute.</p>
83
+ * @public
84
+ */
85
+ DisplayName?: string | undefined;
86
+ /**
87
+ * <p>The description of the calculated attribute.</p>
88
+ * @public
89
+ */
90
+ Description?: string | undefined;
91
+ /**
92
+ * <p>The conditions including range, object count, and threshold for the calculated
93
+ * attribute.</p>
94
+ * @public
95
+ */
96
+ Conditions?: Conditions | undefined;
97
+ }
98
+ /**
99
+ * @public
100
+ */
101
+ export interface UpdateCalculatedAttributeDefinitionResponse {
102
+ /**
103
+ * <p>The unique name of the calculated attribute.</p>
104
+ * @public
105
+ */
106
+ CalculatedAttributeName?: string | undefined;
107
+ /**
108
+ * <p>The display name of the calculated attribute.</p>
109
+ * @public
110
+ */
111
+ DisplayName?: string | undefined;
112
+ /**
113
+ * <p>The description of the calculated attribute.</p>
114
+ * @public
115
+ */
116
+ Description?: string | undefined;
117
+ /**
118
+ * <p>The timestamp of when the calculated attribute definition was created.</p>
119
+ * @public
120
+ */
121
+ CreatedAt?: Date | undefined;
122
+ /**
123
+ * <p>The timestamp of when the calculated attribute definition was most recently
124
+ * edited.</p>
125
+ * @public
126
+ */
127
+ LastUpdatedAt?: Date | undefined;
128
+ /**
129
+ * <p>The aggregation operation to perform for the calculated attribute.</p>
130
+ * @public
131
+ */
132
+ Statistic?: Statistic | undefined;
133
+ /**
134
+ * <p>The conditions including range, object count, and threshold for the calculated
135
+ * attribute.</p>
136
+ * @public
137
+ */
138
+ Conditions?: Conditions | undefined;
139
+ /**
140
+ * <p>The mathematical expression and a list of attribute items specified in that
141
+ * expression.</p>
142
+ * @public
143
+ */
144
+ AttributeDetails?: AttributeDetails | undefined;
145
+ /**
146
+ * <p>Whether historical data ingested before the Calculated Attribute was created should be
147
+ * included in calculations.</p>
148
+ * @public
149
+ */
150
+ UseHistoricalData?: boolean | undefined;
151
+ /**
152
+ * <p>Status of the Calculated Attribute creation (whether all historical data has been
153
+ * indexed.)</p>
154
+ * @public
155
+ */
156
+ Status?: ReadinessStatus | undefined;
157
+ /**
158
+ * <p>Information indicating if the Calculated Attribute is ready for use by confirming all
159
+ * historical data has been processed and reflected.</p>
160
+ * @public
161
+ */
162
+ Readiness?: Readiness | undefined;
163
+ /**
164
+ * <p>The tags used to organize, track, or control access for this resource.</p>
165
+ * @public
166
+ */
167
+ Tags?: Record<string, string> | undefined;
168
+ }
169
+ /**
170
+ * @public
171
+ */
172
+ export interface UpdateDomainRequest {
173
+ /**
174
+ * <p>The unique name of the domain.</p>
175
+ * @public
176
+ */
177
+ DomainName: string | undefined;
178
+ /**
179
+ * <p>The default number of days until the data within the domain expires.</p>
180
+ * @public
181
+ */
182
+ DefaultExpirationDays?: number | undefined;
183
+ /**
184
+ * <p>The default encryption key, which is an AWS managed key, is used when no specific type
185
+ * of encryption key is specified. It is used to encrypt all data before it is placed in
186
+ * permanent or semi-permanent storage. If specified as an empty string, it will clear any
187
+ * existing value.</p>
188
+ * @public
189
+ */
190
+ DefaultEncryptionKey?: string | undefined;
191
+ /**
192
+ * <p>The URL of the SQS dead letter queue, which is used for reporting errors associated with
193
+ * ingesting data from third party applications. If specified as an empty string, it will
194
+ * clear any existing value. You must set up a policy on the DeadLetterQueue for the
195
+ * SendMessage operation to enable Amazon Connect Customer Profiles to send messages to the
196
+ * DeadLetterQueue.</p>
197
+ * @public
198
+ */
199
+ DeadLetterQueueUrl?: string | undefined;
200
+ /**
201
+ * <p>The process of matching duplicate profiles. If <code>Matching</code> = <code>true</code>, Amazon Connect Customer Profiles starts a weekly
202
+ * batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every
203
+ * Saturday at 12AM UTC to detect duplicate profiles in your domains. </p>
204
+ * <p>After the Identity Resolution Job completes, use the
205
+ * <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html">GetMatches</a>
206
+ * API to return and review the results. Or, if you have configured <code>ExportingConfig</code> in the <code>MatchingRequest</code>, you can download the results from
207
+ * S3.</p>
208
+ * @public
209
+ */
210
+ Matching?: MatchingRequest | undefined;
211
+ /**
212
+ * <p>The process of matching duplicate profiles using the rule-Based matching. If
213
+ * <code>RuleBasedMatching</code> = true, Amazon Connect Customer Profiles will start
214
+ * to match and merge your profiles according to your configuration in the
215
+ * <code>RuleBasedMatchingRequest</code>. You can use the <code>ListRuleBasedMatches</code>
216
+ * and <code>GetSimilarProfiles</code> API to return and review the results. Also, if you have
217
+ * configured <code>ExportingConfig</code> in the <code>RuleBasedMatchingRequest</code>, you
218
+ * can download the results from S3.</p>
219
+ * @public
220
+ */
221
+ RuleBasedMatching?: RuleBasedMatchingRequest | undefined;
222
+ /**
223
+ * <p>The tags used to organize, track, or control access for this resource.</p>
224
+ * @public
225
+ */
226
+ Tags?: Record<string, string> | undefined;
227
+ }
228
+ /**
229
+ * @public
230
+ */
231
+ export interface UpdateDomainResponse {
232
+ /**
233
+ * <p>The unique name of the domain.</p>
234
+ * @public
235
+ */
236
+ DomainName: string | undefined;
237
+ /**
238
+ * <p>The default number of days until the data within the domain expires.</p>
239
+ * @public
240
+ */
241
+ DefaultExpirationDays?: number | undefined;
242
+ /**
243
+ * <p>The default encryption key, which is an AWS managed key, is used when no specific type
244
+ * of encryption key is specified. It is used to encrypt all data before it is placed in
245
+ * permanent or semi-permanent storage.</p>
246
+ * @public
247
+ */
248
+ DefaultEncryptionKey?: string | undefined;
249
+ /**
250
+ * <p>The URL of the SQS dead letter queue, which is used for reporting errors associated with
251
+ * ingesting data from third party applications.</p>
252
+ * @public
253
+ */
254
+ DeadLetterQueueUrl?: string | undefined;
255
+ /**
256
+ * <p>The process of matching duplicate profiles. If <code>Matching</code> = <code>true</code>, Amazon Connect Customer Profiles starts a weekly
257
+ * batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every
258
+ * Saturday at 12AM UTC to detect duplicate profiles in your domains. </p>
259
+ * <p>After the Identity Resolution Job completes, use the
260
+ * <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html">GetMatches</a>
261
+ * API to return and review the results. Or, if you have configured <code>ExportingConfig</code> in the <code>MatchingRequest</code>, you can download the results from
262
+ * S3.</p>
263
+ * @public
264
+ */
265
+ Matching?: MatchingResponse | undefined;
266
+ /**
267
+ * <p>The process of matching duplicate profiles using the rule-Based matching. If
268
+ * <code>RuleBasedMatching</code> = true, Amazon Connect Customer Profiles will start
269
+ * to match and merge your profiles according to your configuration in the
270
+ * <code>RuleBasedMatchingRequest</code>. You can use the <code>ListRuleBasedMatches</code>
271
+ * and <code>GetSimilarProfiles</code> API to return and review the results. Also, if you have
272
+ * configured <code>ExportingConfig</code> in the <code>RuleBasedMatchingRequest</code>, you
273
+ * can download the results from S3.</p>
274
+ * @public
275
+ */
276
+ RuleBasedMatching?: RuleBasedMatchingResponse | undefined;
277
+ /**
278
+ * <p>The timestamp of when the domain was created.</p>
279
+ * @public
280
+ */
281
+ CreatedAt: Date | undefined;
282
+ /**
283
+ * <p>The timestamp of when the domain was most recently edited.</p>
284
+ * @public
285
+ */
286
+ LastUpdatedAt: Date | undefined;
287
+ /**
288
+ * <p>The tags used to organize, track, or control access for this resource.</p>
289
+ * @public
290
+ */
291
+ Tags?: Record<string, string> | undefined;
292
+ }
293
+ /**
294
+ * @public
295
+ */
296
+ export interface UpdateDomainLayoutRequest {
297
+ /**
298
+ * <p>The unique name of the domain.</p>
299
+ * @public
300
+ */
301
+ DomainName: string | undefined;
302
+ /**
303
+ * <p>The unique name of the layout.</p>
304
+ * @public
305
+ */
306
+ LayoutDefinitionName: string | undefined;
307
+ /**
308
+ * <p>The description of the layout</p>
309
+ * @public
310
+ */
311
+ Description?: string | undefined;
312
+ /**
313
+ * <p>The display name of the layout</p>
314
+ * @public
315
+ */
316
+ DisplayName?: string | undefined;
317
+ /**
318
+ * <p>If set to true for a layout, this layout will be used by default to view data. If set to
319
+ * false, then the layout will not be used by default, but it can be used to view data by
320
+ * explicitly selecting it in the console.</p>
321
+ * @public
322
+ */
323
+ IsDefault?: boolean | undefined;
324
+ /**
325
+ * <p>The type of layout that can be used to view data under a Customer Profiles domain.</p>
326
+ * @public
327
+ */
328
+ LayoutType?: LayoutType | undefined;
329
+ /**
330
+ * <p>A customizable layout that can be used to view data under a Customer Profiles domain.</p>
331
+ * @public
332
+ */
333
+ Layout?: string | undefined;
334
+ }
335
+ /**
336
+ * @public
337
+ */
338
+ export interface UpdateDomainLayoutResponse {
339
+ /**
340
+ * <p>The unique name of the layout.</p>
341
+ * @public
342
+ */
343
+ LayoutDefinitionName?: string | undefined;
344
+ /**
345
+ * <p>The description of the layout</p>
346
+ * @public
347
+ */
348
+ Description?: string | undefined;
349
+ /**
350
+ * <p>The display name of the layout</p>
351
+ * @public
352
+ */
353
+ DisplayName?: string | undefined;
354
+ /**
355
+ * <p>If set to true for a layout, this layout will be used by default to view data. If set to
356
+ * false, then the layout will not be used by default, but it can be used to view data by
357
+ * explicitly selecting it in the console.</p>
358
+ * @public
359
+ */
360
+ IsDefault?: boolean | undefined;
361
+ /**
362
+ * <p>The type of layout that can be used to view data under a Customer Profiles domain.</p>
363
+ * @public
364
+ */
365
+ LayoutType?: LayoutType | undefined;
366
+ /**
367
+ * <p>A customizable layout that can be used to view data under a Customer Profiles domain.</p>
368
+ * @public
369
+ */
370
+ Layout?: string | undefined;
371
+ /**
372
+ * <p>The version used to create layout.</p>
373
+ * @public
374
+ */
375
+ Version?: string | undefined;
376
+ /**
377
+ * <p>The timestamp of when the layout was created.</p>
378
+ * @public
379
+ */
380
+ CreatedAt?: Date | undefined;
381
+ /**
382
+ * <p>The timestamp of when the layout was most recently updated.</p>
383
+ * @public
384
+ */
385
+ LastUpdatedAt?: Date | undefined;
386
+ /**
387
+ * <p>The tags used to organize, track, or control access for this resource.</p>
388
+ * @public
389
+ */
390
+ Tags?: Record<string, string> | undefined;
391
+ }
392
+ /**
393
+ * @public
394
+ */
395
+ export interface UpdateEventTriggerRequest {
396
+ /**
397
+ * <p>The unique name of the domain.</p>
398
+ * @public
399
+ */
400
+ DomainName: string | undefined;
401
+ /**
402
+ * <p>The unique name of the event trigger.</p>
403
+ * @public
404
+ */
405
+ EventTriggerName: string | undefined;
406
+ /**
407
+ * <p>The unique name of the object type.</p>
408
+ * @public
409
+ */
410
+ ObjectTypeName?: string | undefined;
411
+ /**
412
+ * <p>The description of the event trigger.</p>
413
+ * @public
414
+ */
415
+ Description?: string | undefined;
416
+ /**
417
+ * <p>A list of conditions that determine when an event should trigger the destination.</p>
418
+ * @public
419
+ */
420
+ EventTriggerConditions?: EventTriggerCondition[] | undefined;
421
+ /**
422
+ * <p>The destination is triggered only for profiles that meet the criteria of a segment
423
+ * definition.</p>
424
+ * @public
425
+ */
426
+ SegmentFilter?: string | undefined;
427
+ /**
428
+ * <p>Defines limits controlling whether an event triggers the destination, based on ingestion
429
+ * latency and the number of invocations per profile over specific time periods.</p>
430
+ * @public
431
+ */
432
+ EventTriggerLimits?: EventTriggerLimits | undefined;
433
+ }
434
+ /**
435
+ * @public
436
+ */
437
+ export interface UpdateEventTriggerResponse {
438
+ /**
439
+ * <p>The unique name of the event trigger.</p>
440
+ * @public
441
+ */
442
+ EventTriggerName?: string | undefined;
443
+ /**
444
+ * <p>The unique name of the object type.</p>
445
+ * @public
446
+ */
447
+ ObjectTypeName?: string | undefined;
448
+ /**
449
+ * <p>The description of the event trigger.</p>
450
+ * @public
451
+ */
452
+ Description?: string | undefined;
453
+ /**
454
+ * <p>A list of conditions that determine when an event should trigger the destination.</p>
455
+ * @public
456
+ */
457
+ EventTriggerConditions?: EventTriggerCondition[] | undefined;
458
+ /**
459
+ * <p>The destination is triggered only for profiles that meet the criteria of a segment
460
+ * definition.</p>
461
+ * @public
462
+ */
463
+ SegmentFilter?: string | undefined;
464
+ /**
465
+ * <p>Defines limits controlling whether an event triggers the destination, based on ingestion
466
+ * latency and the number of invocations per profile over specific time periods.</p>
467
+ * @public
468
+ */
469
+ EventTriggerLimits?: EventTriggerLimits | undefined;
470
+ /**
471
+ * <p>The timestamp of when the event trigger was created.</p>
472
+ * @public
473
+ */
474
+ CreatedAt?: Date | undefined;
475
+ /**
476
+ * <p>The timestamp of when the event trigger was most recently updated.</p>
477
+ * @public
478
+ */
479
+ LastUpdatedAt?: Date | undefined;
480
+ /**
481
+ * <p>An array of key-value pairs to apply to this resource.</p>
482
+ * @public
483
+ */
484
+ Tags?: Record<string, string> | undefined;
485
+ }
486
+ /**
487
+ * <p>Updates associated with the address properties of a customer profile.</p>
488
+ * @public
489
+ */
490
+ export interface UpdateAddress {
491
+ /**
492
+ * <p>The first line of a customer address.</p>
493
+ * @public
494
+ */
495
+ Address1?: string | undefined;
496
+ /**
497
+ * <p>The second line of a customer address.</p>
498
+ * @public
499
+ */
500
+ Address2?: string | undefined;
501
+ /**
502
+ * <p>The third line of a customer address.</p>
503
+ * @public
504
+ */
505
+ Address3?: string | undefined;
506
+ /**
507
+ * <p>The fourth line of a customer address.</p>
508
+ * @public
509
+ */
510
+ Address4?: string | undefined;
511
+ /**
512
+ * <p>The city in which a customer lives.</p>
513
+ * @public
514
+ */
515
+ City?: string | undefined;
516
+ /**
517
+ * <p>The county in which a customer lives.</p>
518
+ * @public
519
+ */
520
+ County?: string | undefined;
521
+ /**
522
+ * <p>The state in which a customer lives.</p>
523
+ * @public
524
+ */
525
+ State?: string | undefined;
526
+ /**
527
+ * <p>The province in which a customer lives.</p>
528
+ * @public
529
+ */
530
+ Province?: string | undefined;
531
+ /**
532
+ * <p>The country in which a customer lives.</p>
533
+ * @public
534
+ */
535
+ Country?: string | undefined;
536
+ /**
537
+ * <p>The postal code of a customer address.</p>
538
+ * @public
539
+ */
540
+ PostalCode?: string | undefined;
541
+ }
2
542
  /**
3
543
  * @public
4
544
  */
@@ -146,6 +686,34 @@ export interface UpdateProfileResponse {
146
686
  */
147
687
  ProfileId: string | undefined;
148
688
  }
689
+ /**
690
+ * @internal
691
+ */
692
+ export declare const UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog: (obj: UpdateCalculatedAttributeDefinitionRequest) => any;
693
+ /**
694
+ * @internal
695
+ */
696
+ export declare const UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog: (obj: UpdateCalculatedAttributeDefinitionResponse) => any;
697
+ /**
698
+ * @internal
699
+ */
700
+ export declare const UpdateDomainLayoutRequestFilterSensitiveLog: (obj: UpdateDomainLayoutRequest) => any;
701
+ /**
702
+ * @internal
703
+ */
704
+ export declare const UpdateDomainLayoutResponseFilterSensitiveLog: (obj: UpdateDomainLayoutResponse) => any;
705
+ /**
706
+ * @internal
707
+ */
708
+ export declare const UpdateEventTriggerRequestFilterSensitiveLog: (obj: UpdateEventTriggerRequest) => any;
709
+ /**
710
+ * @internal
711
+ */
712
+ export declare const UpdateEventTriggerResponseFilterSensitiveLog: (obj: UpdateEventTriggerResponse) => any;
713
+ /**
714
+ * @internal
715
+ */
716
+ export declare const UpdateAddressFilterSensitiveLog: (obj: UpdateAddress) => any;
149
717
  /**
150
718
  * @internal
151
719
  */
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListUploadJobsCommandInput, ListUploadJobsCommandOutput } from "../commands/ListUploadJobsCommand";
3
+ import { CustomerProfilesPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListUploadJobs: (config: CustomerProfilesPaginationConfiguration, input: ListUploadJobsCommandInput, ...rest: any[]) => Paginator<ListUploadJobsCommandOutput>;
@@ -6,3 +6,4 @@ export * from "./ListEventTriggersPaginator";
6
6
  export * from "./ListObjectTypeAttributesPaginator";
7
7
  export * from "./ListRuleBasedMatchesPaginator";
8
8
  export * from "./ListSegmentDefinitionsPaginator";
9
+ export * from "./ListUploadJobsPaginator";