@aws-sdk/client-customer-profiles 3.342.0 → 3.344.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 (52) hide show
  1. package/README.md +56 -0
  2. package/dist-cjs/CustomerProfiles.js +14 -0
  3. package/dist-cjs/commands/CreateCalculatedAttributeDefinitionCommand.js +46 -0
  4. package/dist-cjs/commands/DeleteCalculatedAttributeDefinitionCommand.js +46 -0
  5. package/dist-cjs/commands/GetCalculatedAttributeDefinitionCommand.js +46 -0
  6. package/dist-cjs/commands/GetCalculatedAttributeForProfileCommand.js +46 -0
  7. package/dist-cjs/commands/ListCalculatedAttributeDefinitionsCommand.js +46 -0
  8. package/dist-cjs/commands/ListCalculatedAttributesForProfileCommand.js +46 -0
  9. package/dist-cjs/commands/UpdateCalculatedAttributeDefinitionCommand.js +46 -0
  10. package/dist-cjs/commands/index.js +7 -0
  11. package/dist-cjs/endpoint/ruleset.js +3 -3
  12. package/dist-cjs/models/models_0.js +20 -1
  13. package/dist-cjs/protocols/Aws_restJson1.js +527 -2
  14. package/dist-es/CustomerProfiles.js +14 -0
  15. package/dist-es/commands/CreateCalculatedAttributeDefinitionCommand.js +42 -0
  16. package/dist-es/commands/DeleteCalculatedAttributeDefinitionCommand.js +42 -0
  17. package/dist-es/commands/GetCalculatedAttributeDefinitionCommand.js +42 -0
  18. package/dist-es/commands/GetCalculatedAttributeForProfileCommand.js +42 -0
  19. package/dist-es/commands/ListCalculatedAttributeDefinitionsCommand.js +42 -0
  20. package/dist-es/commands/ListCalculatedAttributesForProfileCommand.js +42 -0
  21. package/dist-es/commands/UpdateCalculatedAttributeDefinitionCommand.js +42 -0
  22. package/dist-es/commands/index.js +7 -0
  23. package/dist-es/endpoint/ruleset.js +3 -3
  24. package/dist-es/models/models_0.js +19 -0
  25. package/dist-es/protocols/Aws_restJson1.js +511 -0
  26. package/dist-types/CustomerProfiles.d.ts +49 -0
  27. package/dist-types/CustomerProfilesClient.d.ts +9 -2
  28. package/dist-types/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +146 -0
  29. package/dist-types/commands/DeleteCalculatedAttributeDefinitionCommand.d.ts +89 -0
  30. package/dist-types/commands/GetCalculatedAttributeDefinitionCommand.d.ts +116 -0
  31. package/dist-types/commands/GetCalculatedAttributeForProfileCommand.d.ts +93 -0
  32. package/dist-types/commands/ListCalculatedAttributeDefinitionsCommand.d.ts +102 -0
  33. package/dist-types/commands/ListCalculatedAttributesForProfileCommand.d.ts +99 -0
  34. package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +131 -0
  35. package/dist-types/commands/index.d.ts +7 -0
  36. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  37. package/dist-types/models/models_0.d.ts +491 -8
  38. package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
  39. package/dist-types/ts3.4/CustomerProfiles.d.ts +149 -0
  40. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +42 -0
  41. package/dist-types/ts3.4/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +42 -0
  42. package/dist-types/ts3.4/commands/DeleteCalculatedAttributeDefinitionCommand.d.ts +42 -0
  43. package/dist-types/ts3.4/commands/GetCalculatedAttributeDefinitionCommand.d.ts +42 -0
  44. package/dist-types/ts3.4/commands/GetCalculatedAttributeForProfileCommand.d.ts +42 -0
  45. package/dist-types/ts3.4/commands/ListCalculatedAttributeDefinitionsCommand.d.ts +42 -0
  46. package/dist-types/ts3.4/commands/ListCalculatedAttributesForProfileCommand.d.ts +42 -0
  47. package/dist-types/ts3.4/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +42 -0
  48. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  49. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  50. package/dist-types/ts3.4/models/models_0.d.ts +145 -0
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
  52. package/package.json +6 -6
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CustomerProfilesClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CustomerProfilesClient";
14
+ import {
15
+ ListCalculatedAttributeDefinitionsRequest,
16
+ ListCalculatedAttributeDefinitionsResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListCalculatedAttributeDefinitionsCommandInput
20
+ extends ListCalculatedAttributeDefinitionsRequest {}
21
+ export interface ListCalculatedAttributeDefinitionsCommandOutput
22
+ extends ListCalculatedAttributeDefinitionsResponse,
23
+ __MetadataBearer {}
24
+ export declare class ListCalculatedAttributeDefinitionsCommand extends $Command<
25
+ ListCalculatedAttributeDefinitionsCommandInput,
26
+ ListCalculatedAttributeDefinitionsCommandOutput,
27
+ CustomerProfilesClientResolvedConfig
28
+ > {
29
+ readonly input: ListCalculatedAttributeDefinitionsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListCalculatedAttributeDefinitionsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: CustomerProfilesClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListCalculatedAttributeDefinitionsCommandInput,
38
+ ListCalculatedAttributeDefinitionsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CustomerProfilesClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CustomerProfilesClient";
14
+ import {
15
+ ListCalculatedAttributesForProfileRequest,
16
+ ListCalculatedAttributesForProfileResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListCalculatedAttributesForProfileCommandInput
20
+ extends ListCalculatedAttributesForProfileRequest {}
21
+ export interface ListCalculatedAttributesForProfileCommandOutput
22
+ extends ListCalculatedAttributesForProfileResponse,
23
+ __MetadataBearer {}
24
+ export declare class ListCalculatedAttributesForProfileCommand extends $Command<
25
+ ListCalculatedAttributesForProfileCommandInput,
26
+ ListCalculatedAttributesForProfileCommandOutput,
27
+ CustomerProfilesClientResolvedConfig
28
+ > {
29
+ readonly input: ListCalculatedAttributesForProfileCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListCalculatedAttributesForProfileCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: CustomerProfilesClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListCalculatedAttributesForProfileCommandInput,
38
+ ListCalculatedAttributesForProfileCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CustomerProfilesClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CustomerProfilesClient";
14
+ import {
15
+ UpdateCalculatedAttributeDefinitionRequest,
16
+ UpdateCalculatedAttributeDefinitionResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateCalculatedAttributeDefinitionCommandInput
20
+ extends UpdateCalculatedAttributeDefinitionRequest {}
21
+ export interface UpdateCalculatedAttributeDefinitionCommandOutput
22
+ extends UpdateCalculatedAttributeDefinitionResponse,
23
+ __MetadataBearer {}
24
+ export declare class UpdateCalculatedAttributeDefinitionCommand extends $Command<
25
+ UpdateCalculatedAttributeDefinitionCommandInput,
26
+ UpdateCalculatedAttributeDefinitionCommandOutput,
27
+ CustomerProfilesClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateCalculatedAttributeDefinitionCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateCalculatedAttributeDefinitionCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: CustomerProfilesClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdateCalculatedAttributeDefinitionCommandInput,
38
+ UpdateCalculatedAttributeDefinitionCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -1,7 +1,9 @@
1
1
  export * from "./AddProfileKeyCommand";
2
+ export * from "./CreateCalculatedAttributeDefinitionCommand";
2
3
  export * from "./CreateDomainCommand";
3
4
  export * from "./CreateIntegrationWorkflowCommand";
4
5
  export * from "./CreateProfileCommand";
6
+ export * from "./DeleteCalculatedAttributeDefinitionCommand";
5
7
  export * from "./DeleteDomainCommand";
6
8
  export * from "./DeleteIntegrationCommand";
7
9
  export * from "./DeleteProfileCommand";
@@ -10,6 +12,8 @@ export * from "./DeleteProfileObjectCommand";
10
12
  export * from "./DeleteProfileObjectTypeCommand";
11
13
  export * from "./DeleteWorkflowCommand";
12
14
  export * from "./GetAutoMergingPreviewCommand";
15
+ export * from "./GetCalculatedAttributeDefinitionCommand";
16
+ export * from "./GetCalculatedAttributeForProfileCommand";
13
17
  export * from "./GetDomainCommand";
14
18
  export * from "./GetIdentityResolutionJobCommand";
15
19
  export * from "./GetIntegrationCommand";
@@ -19,6 +23,8 @@ export * from "./GetProfileObjectTypeTemplateCommand";
19
23
  export * from "./GetWorkflowCommand";
20
24
  export * from "./GetWorkflowStepsCommand";
21
25
  export * from "./ListAccountIntegrationsCommand";
26
+ export * from "./ListCalculatedAttributeDefinitionsCommand";
27
+ export * from "./ListCalculatedAttributesForProfileCommand";
22
28
  export * from "./ListDomainsCommand";
23
29
  export * from "./ListIdentityResolutionJobsCommand";
24
30
  export * from "./ListIntegrationsCommand";
@@ -34,5 +40,6 @@ export * from "./PutProfileObjectTypeCommand";
34
40
  export * from "./SearchProfilesCommand";
35
41
  export * from "./TagResourceCommand";
36
42
  export * from "./UntagResourceCommand";
43
+ export * from "./UpdateCalculatedAttributeDefinitionCommand";
37
44
  export * from "./UpdateDomainCommand";
38
45
  export * from "./UpdateProfileCommand";
@@ -25,7 +25,7 @@ export declare const resolveClientEndpointParameters: <T>(
25
25
  defaultSigningName: string;
26
26
  };
27
27
  export interface EndpointParameters extends __EndpointParameters {
28
- Region: string;
28
+ Region?: string;
29
29
  UseDualStack?: boolean;
30
30
  UseFIPS?: boolean;
31
31
  Endpoint?: string;
@@ -336,6 +336,13 @@ export interface AppflowIntegrationWorkflowStep {
336
336
  CreatedAt: Date | undefined;
337
337
  LastUpdatedAt: Date | undefined;
338
338
  }
339
+ export interface AttributeItem {
340
+ Name: string | undefined;
341
+ }
342
+ export interface AttributeDetails {
343
+ Attributes: AttributeItem[] | undefined;
344
+ Expression: string | undefined;
345
+ }
339
346
  export declare const ConflictResolvingModel: {
340
347
  readonly RECENCY: "RECENCY";
341
348
  readonly SOURCE: "SOURCE";
@@ -355,6 +362,76 @@ export interface AutoMerging {
355
362
  ConflictResolution?: ConflictResolution;
356
363
  MinAllowedConfidenceScoreForMerging?: number;
357
364
  }
365
+ export interface ListCalculatedAttributeDefinitionItem {
366
+ CalculatedAttributeName?: string;
367
+ DisplayName?: string;
368
+ Description?: string;
369
+ CreatedAt?: Date;
370
+ LastUpdatedAt?: Date;
371
+ Tags?: Record<string, string>;
372
+ }
373
+ export interface ListCalculatedAttributeForProfileItem {
374
+ CalculatedAttributeName?: string;
375
+ DisplayName?: string;
376
+ IsDataPartial?: string;
377
+ Value?: string;
378
+ }
379
+ export declare const Unit: {
380
+ readonly DAYS: "DAYS";
381
+ };
382
+ export type Unit = (typeof Unit)[keyof typeof Unit];
383
+ export interface Range {
384
+ Value: number | undefined;
385
+ Unit: Unit | string | undefined;
386
+ }
387
+ export declare const Operator: {
388
+ readonly EQUAL_TO: "EQUAL_TO";
389
+ readonly GREATER_THAN: "GREATER_THAN";
390
+ readonly LESS_THAN: "LESS_THAN";
391
+ readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
392
+ };
393
+ export type Operator = (typeof Operator)[keyof typeof Operator];
394
+ export interface Threshold {
395
+ Value: string | undefined;
396
+ Operator: Operator | string | undefined;
397
+ }
398
+ export interface Conditions {
399
+ Range?: Range;
400
+ ObjectCount?: number;
401
+ Threshold?: Threshold;
402
+ }
403
+ export declare const Statistic: {
404
+ readonly AVERAGE: "AVERAGE";
405
+ readonly COUNT: "COUNT";
406
+ readonly FIRST_OCCURRENCE: "FIRST_OCCURRENCE";
407
+ readonly LAST_OCCURRENCE: "LAST_OCCURRENCE";
408
+ readonly MAXIMUM: "MAXIMUM";
409
+ readonly MAX_OCCURRENCE: "MAX_OCCURRENCE";
410
+ readonly MINIMUM: "MINIMUM";
411
+ readonly SUM: "SUM";
412
+ };
413
+ export type Statistic = (typeof Statistic)[keyof typeof Statistic];
414
+ export interface CreateCalculatedAttributeDefinitionRequest {
415
+ DomainName: string | undefined;
416
+ CalculatedAttributeName: string | undefined;
417
+ DisplayName?: string;
418
+ Description?: string;
419
+ AttributeDetails: AttributeDetails | undefined;
420
+ Conditions?: Conditions;
421
+ Statistic: Statistic | string | undefined;
422
+ Tags?: Record<string, string>;
423
+ }
424
+ export interface CreateCalculatedAttributeDefinitionResponse {
425
+ CalculatedAttributeName?: string;
426
+ DisplayName?: string;
427
+ Description?: string;
428
+ AttributeDetails?: AttributeDetails;
429
+ Conditions?: Conditions;
430
+ Statistic?: Statistic | string;
431
+ CreatedAt?: Date;
432
+ LastUpdatedAt?: Date;
433
+ Tags?: Record<string, string>;
434
+ }
358
435
  export interface S3ExportingConfig {
359
436
  S3BucketName: string | undefined;
360
437
  S3KeyName?: string;
@@ -467,6 +544,11 @@ export interface CreateProfileRequest {
467
544
  export interface CreateProfileResponse {
468
545
  ProfileId: string | undefined;
469
546
  }
547
+ export interface DeleteCalculatedAttributeDefinitionRequest {
548
+ DomainName: string | undefined;
549
+ CalculatedAttributeName: string | undefined;
550
+ }
551
+ export interface DeleteCalculatedAttributeDefinitionResponse {}
470
552
  export interface DeleteDomainRequest {
471
553
  DomainName: string | undefined;
472
554
  }
@@ -529,6 +611,32 @@ export interface GetAutoMergingPreviewResponse {
529
611
  NumberOfProfilesInSample?: number;
530
612
  NumberOfProfilesWillBeMerged?: number;
531
613
  }
614
+ export interface GetCalculatedAttributeDefinitionRequest {
615
+ DomainName: string | undefined;
616
+ CalculatedAttributeName: string | undefined;
617
+ }
618
+ export interface GetCalculatedAttributeDefinitionResponse {
619
+ CalculatedAttributeName?: string;
620
+ DisplayName?: string;
621
+ Description?: string;
622
+ CreatedAt?: Date;
623
+ LastUpdatedAt?: Date;
624
+ Statistic?: Statistic | string;
625
+ Conditions?: Conditions;
626
+ AttributeDetails?: AttributeDetails;
627
+ Tags?: Record<string, string>;
628
+ }
629
+ export interface GetCalculatedAttributeForProfileRequest {
630
+ DomainName: string | undefined;
631
+ ProfileId: string | undefined;
632
+ CalculatedAttributeName: string | undefined;
633
+ }
634
+ export interface GetCalculatedAttributeForProfileResponse {
635
+ CalculatedAttributeName?: string;
636
+ DisplayName?: string;
637
+ IsDataPartial?: string;
638
+ Value?: string;
639
+ }
532
640
  export interface GetDomainRequest {
533
641
  DomainName: string | undefined;
534
642
  }
@@ -736,6 +844,25 @@ export interface ListAccountIntegrationsResponse {
736
844
  Items?: ListIntegrationItem[];
737
845
  NextToken?: string;
738
846
  }
847
+ export interface ListCalculatedAttributeDefinitionsRequest {
848
+ DomainName: string | undefined;
849
+ NextToken?: string;
850
+ MaxResults?: number;
851
+ }
852
+ export interface ListCalculatedAttributeDefinitionsResponse {
853
+ Items?: ListCalculatedAttributeDefinitionItem[];
854
+ NextToken?: string;
855
+ }
856
+ export interface ListCalculatedAttributesForProfileRequest {
857
+ NextToken?: string;
858
+ MaxResults?: number;
859
+ DomainName: string | undefined;
860
+ ProfileId: string | undefined;
861
+ }
862
+ export interface ListCalculatedAttributesForProfileResponse {
863
+ Items?: ListCalculatedAttributeForProfileItem[];
864
+ NextToken?: string;
865
+ }
739
866
  export interface ListDomainsRequest {
740
867
  NextToken?: string;
741
868
  MaxResults?: number;
@@ -1002,6 +1129,24 @@ export interface UntagResourceRequest {
1002
1129
  tagKeys: string[] | undefined;
1003
1130
  }
1004
1131
  export interface UntagResourceResponse {}
1132
+ export interface UpdateCalculatedAttributeDefinitionRequest {
1133
+ DomainName: string | undefined;
1134
+ CalculatedAttributeName: string | undefined;
1135
+ DisplayName?: string;
1136
+ Description?: string;
1137
+ Conditions?: Conditions;
1138
+ }
1139
+ export interface UpdateCalculatedAttributeDefinitionResponse {
1140
+ CalculatedAttributeName?: string;
1141
+ DisplayName?: string;
1142
+ Description?: string;
1143
+ CreatedAt?: Date;
1144
+ LastUpdatedAt?: Date;
1145
+ Statistic?: Statistic | string;
1146
+ Conditions?: Conditions;
1147
+ AttributeDetails?: AttributeDetails;
1148
+ Tags?: Record<string, string>;
1149
+ }
1005
1150
  export interface UpdateDomainRequest {
1006
1151
  DomainName: string | undefined;
1007
1152
  DefaultExpirationDays?: number;
@@ -7,6 +7,10 @@ import {
7
7
  AddProfileKeyCommandInput,
8
8
  AddProfileKeyCommandOutput,
9
9
  } from "../commands/AddProfileKeyCommand";
10
+ import {
11
+ CreateCalculatedAttributeDefinitionCommandInput,
12
+ CreateCalculatedAttributeDefinitionCommandOutput,
13
+ } from "../commands/CreateCalculatedAttributeDefinitionCommand";
10
14
  import {
11
15
  CreateDomainCommandInput,
12
16
  CreateDomainCommandOutput,
@@ -19,6 +23,10 @@ import {
19
23
  CreateProfileCommandInput,
20
24
  CreateProfileCommandOutput,
21
25
  } from "../commands/CreateProfileCommand";
26
+ import {
27
+ DeleteCalculatedAttributeDefinitionCommandInput,
28
+ DeleteCalculatedAttributeDefinitionCommandOutput,
29
+ } from "../commands/DeleteCalculatedAttributeDefinitionCommand";
22
30
  import {
23
31
  DeleteDomainCommandInput,
24
32
  DeleteDomainCommandOutput,
@@ -51,6 +59,14 @@ import {
51
59
  GetAutoMergingPreviewCommandInput,
52
60
  GetAutoMergingPreviewCommandOutput,
53
61
  } from "../commands/GetAutoMergingPreviewCommand";
62
+ import {
63
+ GetCalculatedAttributeDefinitionCommandInput,
64
+ GetCalculatedAttributeDefinitionCommandOutput,
65
+ } from "../commands/GetCalculatedAttributeDefinitionCommand";
66
+ import {
67
+ GetCalculatedAttributeForProfileCommandInput,
68
+ GetCalculatedAttributeForProfileCommandOutput,
69
+ } from "../commands/GetCalculatedAttributeForProfileCommand";
54
70
  import {
55
71
  GetDomainCommandInput,
56
72
  GetDomainCommandOutput,
@@ -87,6 +103,14 @@ import {
87
103
  ListAccountIntegrationsCommandInput,
88
104
  ListAccountIntegrationsCommandOutput,
89
105
  } from "../commands/ListAccountIntegrationsCommand";
106
+ import {
107
+ ListCalculatedAttributeDefinitionsCommandInput,
108
+ ListCalculatedAttributeDefinitionsCommandOutput,
109
+ } from "../commands/ListCalculatedAttributeDefinitionsCommand";
110
+ import {
111
+ ListCalculatedAttributesForProfileCommandInput,
112
+ ListCalculatedAttributesForProfileCommandOutput,
113
+ } from "../commands/ListCalculatedAttributesForProfileCommand";
90
114
  import {
91
115
  ListDomainsCommandInput,
92
116
  ListDomainsCommandOutput,
@@ -147,6 +171,10 @@ import {
147
171
  UntagResourceCommandInput,
148
172
  UntagResourceCommandOutput,
149
173
  } from "../commands/UntagResourceCommand";
174
+ import {
175
+ UpdateCalculatedAttributeDefinitionCommandInput,
176
+ UpdateCalculatedAttributeDefinitionCommandOutput,
177
+ } from "../commands/UpdateCalculatedAttributeDefinitionCommand";
150
178
  import {
151
179
  UpdateDomainCommandInput,
152
180
  UpdateDomainCommandOutput,
@@ -159,6 +187,10 @@ export declare const se_AddProfileKeyCommand: (
159
187
  input: AddProfileKeyCommandInput,
160
188
  context: __SerdeContext
161
189
  ) => Promise<__HttpRequest>;
190
+ export declare const se_CreateCalculatedAttributeDefinitionCommand: (
191
+ input: CreateCalculatedAttributeDefinitionCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
162
194
  export declare const se_CreateDomainCommand: (
163
195
  input: CreateDomainCommandInput,
164
196
  context: __SerdeContext
@@ -171,6 +203,10 @@ export declare const se_CreateProfileCommand: (
171
203
  input: CreateProfileCommandInput,
172
204
  context: __SerdeContext
173
205
  ) => Promise<__HttpRequest>;
206
+ export declare const se_DeleteCalculatedAttributeDefinitionCommand: (
207
+ input: DeleteCalculatedAttributeDefinitionCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
174
210
  export declare const se_DeleteDomainCommand: (
175
211
  input: DeleteDomainCommandInput,
176
212
  context: __SerdeContext
@@ -203,6 +239,14 @@ export declare const se_GetAutoMergingPreviewCommand: (
203
239
  input: GetAutoMergingPreviewCommandInput,
204
240
  context: __SerdeContext
205
241
  ) => Promise<__HttpRequest>;
242
+ export declare const se_GetCalculatedAttributeDefinitionCommand: (
243
+ input: GetCalculatedAttributeDefinitionCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
246
+ export declare const se_GetCalculatedAttributeForProfileCommand: (
247
+ input: GetCalculatedAttributeForProfileCommandInput,
248
+ context: __SerdeContext
249
+ ) => Promise<__HttpRequest>;
206
250
  export declare const se_GetDomainCommand: (
207
251
  input: GetDomainCommandInput,
208
252
  context: __SerdeContext
@@ -239,6 +283,14 @@ export declare const se_ListAccountIntegrationsCommand: (
239
283
  input: ListAccountIntegrationsCommandInput,
240
284
  context: __SerdeContext
241
285
  ) => Promise<__HttpRequest>;
286
+ export declare const se_ListCalculatedAttributeDefinitionsCommand: (
287
+ input: ListCalculatedAttributeDefinitionsCommandInput,
288
+ context: __SerdeContext
289
+ ) => Promise<__HttpRequest>;
290
+ export declare const se_ListCalculatedAttributesForProfileCommand: (
291
+ input: ListCalculatedAttributesForProfileCommandInput,
292
+ context: __SerdeContext
293
+ ) => Promise<__HttpRequest>;
242
294
  export declare const se_ListDomainsCommand: (
243
295
  input: ListDomainsCommandInput,
244
296
  context: __SerdeContext
@@ -299,6 +351,10 @@ export declare const se_UntagResourceCommand: (
299
351
  input: UntagResourceCommandInput,
300
352
  context: __SerdeContext
301
353
  ) => Promise<__HttpRequest>;
354
+ export declare const se_UpdateCalculatedAttributeDefinitionCommand: (
355
+ input: UpdateCalculatedAttributeDefinitionCommandInput,
356
+ context: __SerdeContext
357
+ ) => Promise<__HttpRequest>;
302
358
  export declare const se_UpdateDomainCommand: (
303
359
  input: UpdateDomainCommandInput,
304
360
  context: __SerdeContext
@@ -311,6 +367,10 @@ export declare const de_AddProfileKeyCommand: (
311
367
  output: __HttpResponse,
312
368
  context: __SerdeContext
313
369
  ) => Promise<AddProfileKeyCommandOutput>;
370
+ export declare const de_CreateCalculatedAttributeDefinitionCommand: (
371
+ output: __HttpResponse,
372
+ context: __SerdeContext
373
+ ) => Promise<CreateCalculatedAttributeDefinitionCommandOutput>;
314
374
  export declare const de_CreateDomainCommand: (
315
375
  output: __HttpResponse,
316
376
  context: __SerdeContext
@@ -323,6 +383,10 @@ export declare const de_CreateProfileCommand: (
323
383
  output: __HttpResponse,
324
384
  context: __SerdeContext
325
385
  ) => Promise<CreateProfileCommandOutput>;
386
+ export declare const de_DeleteCalculatedAttributeDefinitionCommand: (
387
+ output: __HttpResponse,
388
+ context: __SerdeContext
389
+ ) => Promise<DeleteCalculatedAttributeDefinitionCommandOutput>;
326
390
  export declare const de_DeleteDomainCommand: (
327
391
  output: __HttpResponse,
328
392
  context: __SerdeContext
@@ -355,6 +419,14 @@ export declare const de_GetAutoMergingPreviewCommand: (
355
419
  output: __HttpResponse,
356
420
  context: __SerdeContext
357
421
  ) => Promise<GetAutoMergingPreviewCommandOutput>;
422
+ export declare const de_GetCalculatedAttributeDefinitionCommand: (
423
+ output: __HttpResponse,
424
+ context: __SerdeContext
425
+ ) => Promise<GetCalculatedAttributeDefinitionCommandOutput>;
426
+ export declare const de_GetCalculatedAttributeForProfileCommand: (
427
+ output: __HttpResponse,
428
+ context: __SerdeContext
429
+ ) => Promise<GetCalculatedAttributeForProfileCommandOutput>;
358
430
  export declare const de_GetDomainCommand: (
359
431
  output: __HttpResponse,
360
432
  context: __SerdeContext
@@ -391,6 +463,14 @@ export declare const de_ListAccountIntegrationsCommand: (
391
463
  output: __HttpResponse,
392
464
  context: __SerdeContext
393
465
  ) => Promise<ListAccountIntegrationsCommandOutput>;
466
+ export declare const de_ListCalculatedAttributeDefinitionsCommand: (
467
+ output: __HttpResponse,
468
+ context: __SerdeContext
469
+ ) => Promise<ListCalculatedAttributeDefinitionsCommandOutput>;
470
+ export declare const de_ListCalculatedAttributesForProfileCommand: (
471
+ output: __HttpResponse,
472
+ context: __SerdeContext
473
+ ) => Promise<ListCalculatedAttributesForProfileCommandOutput>;
394
474
  export declare const de_ListDomainsCommand: (
395
475
  output: __HttpResponse,
396
476
  context: __SerdeContext
@@ -451,6 +531,10 @@ export declare const de_UntagResourceCommand: (
451
531
  output: __HttpResponse,
452
532
  context: __SerdeContext
453
533
  ) => Promise<UntagResourceCommandOutput>;
534
+ export declare const de_UpdateCalculatedAttributeDefinitionCommand: (
535
+ output: __HttpResponse,
536
+ context: __SerdeContext
537
+ ) => Promise<UpdateCalculatedAttributeDefinitionCommandOutput>;
454
538
  export declare const de_UpdateDomainCommand: (
455
539
  output: __HttpResponse,
456
540
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-customer-profiles",
3
3
  "description": "AWS SDK for JavaScript Customer Profiles Client for Node.js, Browser and React Native",
4
- "version": "3.342.0",
4
+ "version": "3.344.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,14 +21,14 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.342.0",
24
+ "@aws-sdk/client-sts": "3.344.0",
25
25
  "@aws-sdk/config-resolver": "3.342.0",
26
- "@aws-sdk/credential-provider-node": "3.342.0",
26
+ "@aws-sdk/credential-provider-node": "3.344.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.342.0",
28
- "@aws-sdk/hash-node": "3.342.0",
28
+ "@aws-sdk/hash-node": "3.344.0",
29
29
  "@aws-sdk/invalid-dependency": "3.342.0",
30
30
  "@aws-sdk/middleware-content-length": "3.342.0",
31
- "@aws-sdk/middleware-endpoint": "3.342.0",
31
+ "@aws-sdk/middleware-endpoint": "3.344.0",
32
32
  "@aws-sdk/middleware-host-header": "3.342.0",
33
33
  "@aws-sdk/middleware-logger": "3.342.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.342.0",
@@ -38,7 +38,7 @@
38
38
  "@aws-sdk/middleware-stack": "3.342.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.342.0",
40
40
  "@aws-sdk/node-config-provider": "3.342.0",
41
- "@aws-sdk/node-http-handler": "3.342.0",
41
+ "@aws-sdk/node-http-handler": "3.344.0",
42
42
  "@aws-sdk/smithy-client": "3.342.0",
43
43
  "@aws-sdk/types": "3.342.0",
44
44
  "@aws-sdk/url-parser": "3.342.0",