@aws-sdk/client-customer-profiles 3.826.0 → 3.828.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 (58) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +439 -33
  3. package/dist-es/CustomerProfiles.js +10 -0
  4. package/dist-es/commands/CreateDomainLayoutCommand.js +23 -0
  5. package/dist-es/commands/DeleteDomainLayoutCommand.js +22 -0
  6. package/dist-es/commands/GetDomainLayoutCommand.js +23 -0
  7. package/dist-es/commands/ListDomainLayoutsCommand.js +23 -0
  8. package/dist-es/commands/UpdateDomainLayoutCommand.js +23 -0
  9. package/dist-es/commands/UpdateProfileCommand.js +1 -1
  10. package/dist-es/commands/index.js +5 -0
  11. package/dist-es/models/index.js +1 -0
  12. package/dist-es/models/models_0.js +51 -26
  13. package/dist-es/models/models_1.js +27 -0
  14. package/dist-es/pagination/ListDomainLayoutsPaginator.js +4 -0
  15. package/dist-es/pagination/index.js +1 -0
  16. package/dist-es/protocols/Aws_restJson1.js +240 -2
  17. package/dist-types/CustomerProfiles.d.ts +35 -0
  18. package/dist-types/CustomerProfilesClient.d.ts +7 -2
  19. package/dist-types/commands/BatchGetCalculatedAttributeForProfileCommand.d.ts +1 -0
  20. package/dist-types/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +23 -4
  21. package/dist-types/commands/CreateDomainLayoutCommand.d.ts +108 -0
  22. package/dist-types/commands/DeleteDomainLayoutCommand.d.ts +89 -0
  23. package/dist-types/commands/DetectProfileObjectTypeCommand.d.ts +1 -1
  24. package/dist-types/commands/GetCalculatedAttributeDefinitionCommand.d.ts +14 -2
  25. package/dist-types/commands/GetCalculatedAttributeForProfileCommand.d.ts +1 -0
  26. package/dist-types/commands/GetDomainLayoutCommand.d.ts +100 -0
  27. package/dist-types/commands/GetProfileObjectTypeCommand.d.ts +1 -1
  28. package/dist-types/commands/GetProfileObjectTypeTemplateCommand.d.ts +1 -1
  29. package/dist-types/commands/ListCalculatedAttributeDefinitionsCommand.d.ts +2 -0
  30. package/dist-types/commands/ListCalculatedAttributesForProfileCommand.d.ts +1 -0
  31. package/dist-types/commands/ListDomainLayoutsCommand.d.ts +104 -0
  32. package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +2 -2
  33. package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +22 -4
  34. package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +105 -0
  35. package/dist-types/commands/UpdateProfileCommand.d.ts +1 -1
  36. package/dist-types/commands/index.d.ts +5 -0
  37. package/dist-types/models/index.d.ts +1 -0
  38. package/dist-types/models/models_0.d.ts +631 -173
  39. package/dist-types/models/models_1.d.ts +152 -0
  40. package/dist-types/pagination/ListDomainLayoutsPaginator.d.ts +7 -0
  41. package/dist-types/pagination/index.d.ts +1 -0
  42. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  43. package/dist-types/ts3.4/CustomerProfiles.d.ts +85 -0
  44. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +30 -0
  45. package/dist-types/ts3.4/commands/CreateDomainLayoutCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/DeleteDomainLayoutCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/GetDomainLayoutCommand.d.ts +50 -0
  48. package/dist-types/ts3.4/commands/ListDomainLayoutsCommand.d.ts +51 -0
  49. package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  52. package/dist-types/ts3.4/models/index.d.ts +1 -0
  53. package/dist-types/ts3.4/models/models_0.d.ts +153 -35
  54. package/dist-types/ts3.4/models/models_1.d.ts +34 -0
  55. package/dist-types/ts3.4/pagination/ListDomainLayoutsPaginator.d.ts +11 -0
  56. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  57. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  58. package/package.json +5 -5
@@ -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
+ DeleteDomainLayoutRequest,
10
+ DeleteDomainLayoutResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteDomainLayoutCommandInput
15
+ extends DeleteDomainLayoutRequest {}
16
+ export interface DeleteDomainLayoutCommandOutput
17
+ extends DeleteDomainLayoutResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteDomainLayoutCommand_base: {
20
+ new (
21
+ input: DeleteDomainLayoutCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteDomainLayoutCommandInput,
24
+ DeleteDomainLayoutCommandOutput,
25
+ CustomerProfilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteDomainLayoutCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteDomainLayoutCommandInput,
33
+ DeleteDomainLayoutCommandOutput,
34
+ CustomerProfilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteDomainLayoutCommand extends DeleteDomainLayoutCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteDomainLayoutRequest;
44
+ output: DeleteDomainLayoutResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteDomainLayoutCommandInput;
48
+ output: DeleteDomainLayoutCommandOutput;
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
+ GetDomainLayoutRequest,
10
+ GetDomainLayoutResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetDomainLayoutCommandInput extends GetDomainLayoutRequest {}
15
+ export interface GetDomainLayoutCommandOutput
16
+ extends GetDomainLayoutResponse,
17
+ __MetadataBearer {}
18
+ declare const GetDomainLayoutCommand_base: {
19
+ new (
20
+ input: GetDomainLayoutCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetDomainLayoutCommandInput,
23
+ GetDomainLayoutCommandOutput,
24
+ CustomerProfilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetDomainLayoutCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetDomainLayoutCommandInput,
32
+ GetDomainLayoutCommandOutput,
33
+ CustomerProfilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetDomainLayoutCommand extends GetDomainLayoutCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetDomainLayoutRequest;
43
+ output: GetDomainLayoutResponse;
44
+ };
45
+ sdk: {
46
+ input: GetDomainLayoutCommandInput;
47
+ output: GetDomainLayoutCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -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
+ ListDomainLayoutsRequest,
10
+ ListDomainLayoutsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListDomainLayoutsCommandInput
15
+ extends ListDomainLayoutsRequest {}
16
+ export interface ListDomainLayoutsCommandOutput
17
+ extends ListDomainLayoutsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListDomainLayoutsCommand_base: {
20
+ new (
21
+ input: ListDomainLayoutsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListDomainLayoutsCommandInput,
24
+ ListDomainLayoutsCommandOutput,
25
+ CustomerProfilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListDomainLayoutsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListDomainLayoutsCommandInput,
33
+ ListDomainLayoutsCommandOutput,
34
+ CustomerProfilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListDomainLayoutsCommand extends ListDomainLayoutsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListDomainLayoutsRequest;
44
+ output: ListDomainLayoutsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListDomainLayoutsCommandInput;
48
+ output: ListDomainLayoutsCommandOutput;
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
+ UpdateDomainLayoutRequest,
10
+ UpdateDomainLayoutResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateDomainLayoutCommandInput
15
+ extends UpdateDomainLayoutRequest {}
16
+ export interface UpdateDomainLayoutCommandOutput
17
+ extends UpdateDomainLayoutResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateDomainLayoutCommand_base: {
20
+ new (
21
+ input: UpdateDomainLayoutCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateDomainLayoutCommandInput,
24
+ UpdateDomainLayoutCommandOutput,
25
+ CustomerProfilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateDomainLayoutCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateDomainLayoutCommandInput,
33
+ UpdateDomainLayoutCommandOutput,
34
+ CustomerProfilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateDomainLayoutCommand extends UpdateDomainLayoutCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateDomainLayoutRequest;
44
+ output: UpdateDomainLayoutResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateDomainLayoutCommandInput;
48
+ output: UpdateDomainLayoutCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UpdateProfileRequest,
10
10
  UpdateProfileResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UpdateProfileCommandInput extends UpdateProfileRequest {}
@@ -3,6 +3,7 @@ export * from "./BatchGetCalculatedAttributeForProfileCommand";
3
3
  export * from "./BatchGetProfileCommand";
4
4
  export * from "./CreateCalculatedAttributeDefinitionCommand";
5
5
  export * from "./CreateDomainCommand";
6
+ export * from "./CreateDomainLayoutCommand";
6
7
  export * from "./CreateEventStreamCommand";
7
8
  export * from "./CreateEventTriggerCommand";
8
9
  export * from "./CreateIntegrationWorkflowCommand";
@@ -12,6 +13,7 @@ export * from "./CreateSegmentEstimateCommand";
12
13
  export * from "./CreateSegmentSnapshotCommand";
13
14
  export * from "./DeleteCalculatedAttributeDefinitionCommand";
14
15
  export * from "./DeleteDomainCommand";
16
+ export * from "./DeleteDomainLayoutCommand";
15
17
  export * from "./DeleteEventStreamCommand";
16
18
  export * from "./DeleteEventTriggerCommand";
17
19
  export * from "./DeleteIntegrationCommand";
@@ -26,6 +28,7 @@ export * from "./GetAutoMergingPreviewCommand";
26
28
  export * from "./GetCalculatedAttributeDefinitionCommand";
27
29
  export * from "./GetCalculatedAttributeForProfileCommand";
28
30
  export * from "./GetDomainCommand";
31
+ export * from "./GetDomainLayoutCommand";
29
32
  export * from "./GetEventStreamCommand";
30
33
  export * from "./GetEventTriggerCommand";
31
34
  export * from "./GetIdentityResolutionJobCommand";
@@ -43,6 +46,7 @@ export * from "./GetWorkflowStepsCommand";
43
46
  export * from "./ListAccountIntegrationsCommand";
44
47
  export * from "./ListCalculatedAttributeDefinitionsCommand";
45
48
  export * from "./ListCalculatedAttributesForProfileCommand";
49
+ export * from "./ListDomainLayoutsCommand";
46
50
  export * from "./ListDomainsCommand";
47
51
  export * from "./ListEventStreamsCommand";
48
52
  export * from "./ListEventTriggersCommand";
@@ -66,5 +70,6 @@ export * from "./TagResourceCommand";
66
70
  export * from "./UntagResourceCommand";
67
71
  export * from "./UpdateCalculatedAttributeDefinitionCommand";
68
72
  export * from "./UpdateDomainCommand";
73
+ export * from "./UpdateDomainLayoutCommand";
69
74
  export * from "./UpdateEventTriggerCommand";
70
75
  export * from "./UpdateProfileCommand";
@@ -1 +1,2 @@
1
1
  export * from "./models_0";
2
+ export * from "./models_1";
@@ -468,6 +468,7 @@ export interface CalculatedAttributeValue {
468
468
  IsDataPartial?: string | undefined;
469
469
  ProfileId?: string | undefined;
470
470
  Value?: string | undefined;
471
+ LastObjectTimestamp?: Date | undefined;
471
472
  }
472
473
  export interface BatchGetCalculatedAttributeForProfileError {
473
474
  Code: string | undefined;
@@ -535,12 +536,22 @@ export interface BatchGetProfileResponse {
535
536
  Errors?: BatchGetProfileError[] | undefined;
536
537
  Profiles?: Profile[] | undefined;
537
538
  }
539
+ export declare const ReadinessStatus: {
540
+ readonly COMPLETED: "COMPLETED";
541
+ readonly FAILED: "FAILED";
542
+ readonly IN_PROGRESS: "IN_PROGRESS";
543
+ readonly PREPARING: "PREPARING";
544
+ };
545
+ export type ReadinessStatus =
546
+ (typeof ReadinessStatus)[keyof typeof ReadinessStatus];
538
547
  export interface ListCalculatedAttributeDefinitionItem {
539
548
  CalculatedAttributeName?: string | undefined;
540
549
  DisplayName?: string | undefined;
541
550
  Description?: string | undefined;
542
551
  CreatedAt?: Date | undefined;
543
552
  LastUpdatedAt?: Date | undefined;
553
+ UseHistoricalData?: boolean | undefined;
554
+ Status?: ReadinessStatus | undefined;
544
555
  Tags?: Record<string, string> | undefined;
545
556
  }
546
557
  export interface CalculatedAttributeDimension {
@@ -553,6 +564,7 @@ export interface ListCalculatedAttributeForProfileItem {
553
564
  DisplayName?: string | undefined;
554
565
  IsDataPartial?: string | undefined;
555
566
  Value?: string | undefined;
567
+ LastObjectTimestamp?: Date | undefined;
556
568
  }
557
569
  export declare const ComparisonOperator: {
558
570
  readonly AFTER: "AFTER";
@@ -577,9 +589,16 @@ export declare const Unit: {
577
589
  readonly DAYS: "DAYS";
578
590
  };
579
591
  export type Unit = (typeof Unit)[keyof typeof Unit];
592
+ export interface ValueRange {
593
+ Start: number | undefined;
594
+ End: number | undefined;
595
+ }
580
596
  export interface Range {
581
- Value: number | undefined;
582
- Unit: Unit | undefined;
597
+ Value?: number | undefined;
598
+ Unit?: Unit | undefined;
599
+ ValueRange?: ValueRange | undefined;
600
+ TimestampSource?: string | undefined;
601
+ TimestampFormat?: string | undefined;
583
602
  }
584
603
  export declare const Operator: {
585
604
  readonly EQUAL_TO: "EQUAL_TO";
@@ -640,8 +659,13 @@ export interface CreateCalculatedAttributeDefinitionRequest {
640
659
  Conditions?: Conditions | undefined;
641
660
  Filter?: Filter | undefined;
642
661
  Statistic: Statistic | undefined;
662
+ UseHistoricalData?: boolean | undefined;
643
663
  Tags?: Record<string, string> | undefined;
644
664
  }
665
+ export interface Readiness {
666
+ ProgressPercentage?: number | undefined;
667
+ Message?: string | undefined;
668
+ }
645
669
  export interface CreateCalculatedAttributeDefinitionResponse {
646
670
  CalculatedAttributeName?: string | undefined;
647
671
  DisplayName?: string | undefined;
@@ -652,6 +676,9 @@ export interface CreateCalculatedAttributeDefinitionResponse {
652
676
  Statistic?: Statistic | undefined;
653
677
  CreatedAt?: Date | undefined;
654
678
  LastUpdatedAt?: Date | undefined;
679
+ UseHistoricalData?: boolean | undefined;
680
+ Status?: ReadinessStatus | undefined;
681
+ Readiness?: Readiness | undefined;
655
682
  Tags?: Record<string, string> | undefined;
656
683
  }
657
684
  export interface S3ExportingConfig {
@@ -737,6 +764,32 @@ export interface CreateDomainResponse {
737
764
  LastUpdatedAt: Date | undefined;
738
765
  Tags?: Record<string, string> | undefined;
739
766
  }
767
+ export declare const LayoutType: {
768
+ readonly PROFILE_EXPLORER: "PROFILE_EXPLORER";
769
+ };
770
+ export type LayoutType = (typeof LayoutType)[keyof typeof LayoutType];
771
+ export interface CreateDomainLayoutRequest {
772
+ DomainName: string | undefined;
773
+ LayoutDefinitionName: string | undefined;
774
+ Description: string | undefined;
775
+ DisplayName: string | undefined;
776
+ IsDefault?: boolean | undefined;
777
+ LayoutType: LayoutType | undefined;
778
+ Layout: string | undefined;
779
+ Tags?: Record<string, string> | undefined;
780
+ }
781
+ export interface CreateDomainLayoutResponse {
782
+ LayoutDefinitionName: string | undefined;
783
+ Description: string | undefined;
784
+ DisplayName: string | undefined;
785
+ IsDefault?: boolean | undefined;
786
+ LayoutType: LayoutType | undefined;
787
+ Layout: string | undefined;
788
+ Version: string | undefined;
789
+ Tags?: Record<string, string> | undefined;
790
+ CreatedAt: Date | undefined;
791
+ LastUpdatedAt?: Date | undefined;
792
+ }
740
793
  export interface CreateEventStreamRequest {
741
794
  DomainName: string | undefined;
742
795
  Uri: string | undefined;
@@ -999,6 +1052,13 @@ export interface DeleteDomainRequest {
999
1052
  export interface DeleteDomainResponse {
1000
1053
  Message: string | undefined;
1001
1054
  }
1055
+ export interface DeleteDomainLayoutRequest {
1056
+ DomainName: string | undefined;
1057
+ LayoutDefinitionName: string | undefined;
1058
+ }
1059
+ export interface DeleteDomainLayoutResponse {
1060
+ Message: string | undefined;
1061
+ }
1002
1062
  export interface DeleteEventStreamRequest {
1003
1063
  DomainName: string | undefined;
1004
1064
  EventStreamName: string | undefined;
@@ -1081,10 +1141,19 @@ export interface ObjectTypeField {
1081
1141
  ContentType?: FieldContentType | undefined;
1082
1142
  }
1083
1143
  export declare const StandardIdentifier: {
1144
+ readonly AIR_BOOKING: "AIR_BOOKING";
1145
+ readonly AIR_PREFERENCE: "AIR_PREFERENCE";
1146
+ readonly AIR_SEGMENT: "AIR_SEGMENT";
1084
1147
  readonly ASSET: "ASSET";
1085
1148
  readonly CASE: "CASE";
1086
1149
  readonly COMMUNICATION_RECORD: "COMMUNICATION_RECORD";
1150
+ readonly HOTEL_PREFERENCE: "HOTEL_PREFERENCE";
1151
+ readonly HOTEL_RESERVATION: "HOTEL_RESERVATION";
1152
+ readonly HOTEL_STAY_REVENUE: "HOTEL_STAY_REVENUE";
1087
1153
  readonly LOOKUP_ONLY: "LOOKUP_ONLY";
1154
+ readonly LOYALTY: "LOYALTY";
1155
+ readonly LOYALTY_PROMOTION: "LOYALTY_PROMOTION";
1156
+ readonly LOYALTY_TRANSACTION: "LOYALTY_TRANSACTION";
1088
1157
  readonly NEW_ONLY: "NEW_ONLY";
1089
1158
  readonly ORDER: "ORDER";
1090
1159
  readonly PROFILE: "PROFILE";
@@ -1131,6 +1200,9 @@ export interface GetCalculatedAttributeDefinitionResponse {
1131
1200
  Filter?: Filter | undefined;
1132
1201
  Conditions?: Conditions | undefined;
1133
1202
  AttributeDetails?: AttributeDetails | undefined;
1203
+ UseHistoricalData?: boolean | undefined;
1204
+ Status?: ReadinessStatus | undefined;
1205
+ Readiness?: Readiness | undefined;
1134
1206
  Tags?: Record<string, string> | undefined;
1135
1207
  }
1136
1208
  export interface GetCalculatedAttributeForProfileRequest {
@@ -1143,6 +1215,7 @@ export interface GetCalculatedAttributeForProfileResponse {
1143
1215
  DisplayName?: string | undefined;
1144
1216
  IsDataPartial?: string | undefined;
1145
1217
  Value?: string | undefined;
1218
+ LastObjectTimestamp?: Date | undefined;
1146
1219
  }
1147
1220
  export interface GetDomainRequest {
1148
1221
  DomainName: string | undefined;
@@ -1165,6 +1238,22 @@ export interface GetDomainResponse {
1165
1238
  LastUpdatedAt: Date | undefined;
1166
1239
  Tags?: Record<string, string> | undefined;
1167
1240
  }
1241
+ export interface GetDomainLayoutRequest {
1242
+ DomainName: string | undefined;
1243
+ LayoutDefinitionName: string | undefined;
1244
+ }
1245
+ export interface GetDomainLayoutResponse {
1246
+ LayoutDefinitionName: string | undefined;
1247
+ Description: string | undefined;
1248
+ DisplayName: string | undefined;
1249
+ IsDefault?: boolean | undefined;
1250
+ LayoutType: LayoutType | undefined;
1251
+ Layout: string | undefined;
1252
+ Version: string | undefined;
1253
+ CreatedAt: Date | undefined;
1254
+ LastUpdatedAt: Date | undefined;
1255
+ Tags?: Record<string, string> | undefined;
1256
+ }
1168
1257
  export interface GetEventStreamRequest {
1169
1258
  DomainName: string | undefined;
1170
1259
  EventStreamName: string | undefined;
@@ -1492,6 +1581,25 @@ export interface ListCalculatedAttributesForProfileResponse {
1492
1581
  Items?: ListCalculatedAttributeForProfileItem[] | undefined;
1493
1582
  NextToken?: string | undefined;
1494
1583
  }
1584
+ export interface ListDomainLayoutsRequest {
1585
+ DomainName: string | undefined;
1586
+ NextToken?: string | undefined;
1587
+ MaxResults?: number | undefined;
1588
+ }
1589
+ export interface LayoutItem {
1590
+ LayoutDefinitionName: string | undefined;
1591
+ Description: string | undefined;
1592
+ DisplayName: string | undefined;
1593
+ IsDefault?: boolean | undefined;
1594
+ LayoutType: LayoutType | undefined;
1595
+ Tags?: Record<string, string> | undefined;
1596
+ CreatedAt: Date | undefined;
1597
+ LastUpdatedAt: Date | undefined;
1598
+ }
1599
+ export interface ListDomainLayoutsResponse {
1600
+ Items?: LayoutItem[] | undefined;
1601
+ NextToken?: string | undefined;
1602
+ }
1495
1603
  export interface ListDomainsRequest {
1496
1604
  NextToken?: string | undefined;
1497
1605
  MaxResults?: number | undefined;
@@ -1842,6 +1950,9 @@ export interface UpdateCalculatedAttributeDefinitionResponse {
1842
1950
  Statistic?: Statistic | undefined;
1843
1951
  Conditions?: Conditions | undefined;
1844
1952
  AttributeDetails?: AttributeDetails | undefined;
1953
+ UseHistoricalData?: boolean | undefined;
1954
+ Status?: ReadinessStatus | undefined;
1955
+ Readiness?: Readiness | undefined;
1845
1956
  Tags?: Record<string, string> | undefined;
1846
1957
  }
1847
1958
  export interface UpdateDomainRequest {
@@ -1864,6 +1975,27 @@ export interface UpdateDomainResponse {
1864
1975
  LastUpdatedAt: Date | undefined;
1865
1976
  Tags?: Record<string, string> | undefined;
1866
1977
  }
1978
+ export interface UpdateDomainLayoutRequest {
1979
+ DomainName: string | undefined;
1980
+ LayoutDefinitionName: string | undefined;
1981
+ Description?: string | undefined;
1982
+ DisplayName?: string | undefined;
1983
+ IsDefault?: boolean | undefined;
1984
+ LayoutType?: LayoutType | undefined;
1985
+ Layout?: string | undefined;
1986
+ }
1987
+ export interface UpdateDomainLayoutResponse {
1988
+ LayoutDefinitionName?: string | undefined;
1989
+ Description?: string | undefined;
1990
+ DisplayName?: string | undefined;
1991
+ IsDefault?: boolean | undefined;
1992
+ LayoutType?: LayoutType | undefined;
1993
+ Layout?: string | undefined;
1994
+ Version?: string | undefined;
1995
+ CreatedAt?: Date | undefined;
1996
+ LastUpdatedAt?: Date | undefined;
1997
+ Tags?: Record<string, string> | undefined;
1998
+ }
1867
1999
  export interface UpdateEventTriggerRequest {
1868
2000
  DomainName: string | undefined;
1869
2001
  EventTriggerName: string | undefined;
@@ -1896,36 +2028,6 @@ export interface UpdateAddress {
1896
2028
  Country?: string | undefined;
1897
2029
  PostalCode?: string | undefined;
1898
2030
  }
1899
- export interface UpdateProfileRequest {
1900
- DomainName: string | undefined;
1901
- ProfileId: string | undefined;
1902
- AdditionalInformation?: string | undefined;
1903
- AccountNumber?: string | undefined;
1904
- PartyType?: PartyType | undefined;
1905
- BusinessName?: string | undefined;
1906
- FirstName?: string | undefined;
1907
- MiddleName?: string | undefined;
1908
- LastName?: string | undefined;
1909
- BirthDate?: string | undefined;
1910
- Gender?: Gender | undefined;
1911
- PhoneNumber?: string | undefined;
1912
- MobilePhoneNumber?: string | undefined;
1913
- HomePhoneNumber?: string | undefined;
1914
- BusinessPhoneNumber?: string | undefined;
1915
- EmailAddress?: string | undefined;
1916
- PersonalEmailAddress?: string | undefined;
1917
- BusinessEmailAddress?: string | undefined;
1918
- Address?: UpdateAddress | undefined;
1919
- ShippingAddress?: UpdateAddress | undefined;
1920
- MailingAddress?: UpdateAddress | undefined;
1921
- BillingAddress?: UpdateAddress | undefined;
1922
- Attributes?: Record<string, string> | undefined;
1923
- PartyTypeString?: string | undefined;
1924
- GenderString?: string | undefined;
1925
- }
1926
- export interface UpdateProfileResponse {
1927
- ProfileId: string | undefined;
1928
- }
1929
2031
  export declare const AddressFilterSensitiveLog: (obj: Address) => any;
1930
2032
  export declare const FlowDefinitionFilterSensitiveLog: (
1931
2033
  obj: FlowDefinition
@@ -1962,6 +2064,12 @@ export declare const CreateCalculatedAttributeDefinitionRequestFilterSensitiveLo
1962
2064
  export declare const CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog: (
1963
2065
  obj: CreateCalculatedAttributeDefinitionResponse
1964
2066
  ) => any;
2067
+ export declare const CreateDomainLayoutRequestFilterSensitiveLog: (
2068
+ obj: CreateDomainLayoutRequest
2069
+ ) => any;
2070
+ export declare const CreateDomainLayoutResponseFilterSensitiveLog: (
2071
+ obj: CreateDomainLayoutResponse
2072
+ ) => any;
1965
2073
  export declare const CreateEventTriggerRequestFilterSensitiveLog: (
1966
2074
  obj: CreateEventTriggerRequest
1967
2075
  ) => any;
@@ -2007,6 +2115,9 @@ export declare const DetectProfileObjectTypeResponseFilterSensitiveLog: (
2007
2115
  export declare const GetCalculatedAttributeDefinitionResponseFilterSensitiveLog: (
2008
2116
  obj: GetCalculatedAttributeDefinitionResponse
2009
2117
  ) => any;
2118
+ export declare const GetDomainLayoutResponseFilterSensitiveLog: (
2119
+ obj: GetDomainLayoutResponse
2120
+ ) => any;
2010
2121
  export declare const GetEventTriggerResponseFilterSensitiveLog: (
2011
2122
  obj: GetEventTriggerResponse
2012
2123
  ) => any;
@@ -2028,6 +2139,10 @@ export declare const GetSegmentMembershipResponseFilterSensitiveLog: (
2028
2139
  export declare const ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog: (
2029
2140
  obj: ListCalculatedAttributeDefinitionsResponse
2030
2141
  ) => any;
2142
+ export declare const LayoutItemFilterSensitiveLog: (obj: LayoutItem) => any;
2143
+ export declare const ListDomainLayoutsResponseFilterSensitiveLog: (
2144
+ obj: ListDomainLayoutsResponse
2145
+ ) => any;
2031
2146
  export declare const ListEventTriggersResponseFilterSensitiveLog: (
2032
2147
  obj: ListEventTriggersResponse
2033
2148
  ) => any;
@@ -2067,6 +2182,12 @@ export declare const UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLo
2067
2182
  export declare const UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog: (
2068
2183
  obj: UpdateCalculatedAttributeDefinitionResponse
2069
2184
  ) => any;
2185
+ export declare const UpdateDomainLayoutRequestFilterSensitiveLog: (
2186
+ obj: UpdateDomainLayoutRequest
2187
+ ) => any;
2188
+ export declare const UpdateDomainLayoutResponseFilterSensitiveLog: (
2189
+ obj: UpdateDomainLayoutResponse
2190
+ ) => any;
2070
2191
  export declare const UpdateEventTriggerRequestFilterSensitiveLog: (
2071
2192
  obj: UpdateEventTriggerRequest
2072
2193
  ) => any;
@@ -2076,6 +2197,3 @@ export declare const UpdateEventTriggerResponseFilterSensitiveLog: (
2076
2197
  export declare const UpdateAddressFilterSensitiveLog: (
2077
2198
  obj: UpdateAddress
2078
2199
  ) => any;
2079
- export declare const UpdateProfileRequestFilterSensitiveLog: (
2080
- obj: UpdateProfileRequest
2081
- ) => any;
@@ -0,0 +1,34 @@
1
+ import { Gender, PartyType, UpdateAddress } from "./models_0";
2
+ export interface UpdateProfileRequest {
3
+ DomainName: string | undefined;
4
+ ProfileId: string | undefined;
5
+ AdditionalInformation?: string | undefined;
6
+ AccountNumber?: string | undefined;
7
+ PartyType?: PartyType | undefined;
8
+ BusinessName?: string | undefined;
9
+ FirstName?: string | undefined;
10
+ MiddleName?: string | undefined;
11
+ LastName?: string | undefined;
12
+ BirthDate?: string | undefined;
13
+ Gender?: Gender | undefined;
14
+ PhoneNumber?: string | undefined;
15
+ MobilePhoneNumber?: string | undefined;
16
+ HomePhoneNumber?: string | undefined;
17
+ BusinessPhoneNumber?: string | undefined;
18
+ EmailAddress?: string | undefined;
19
+ PersonalEmailAddress?: string | undefined;
20
+ BusinessEmailAddress?: string | undefined;
21
+ Address?: UpdateAddress | undefined;
22
+ ShippingAddress?: UpdateAddress | undefined;
23
+ MailingAddress?: UpdateAddress | undefined;
24
+ BillingAddress?: UpdateAddress | undefined;
25
+ Attributes?: Record<string, string> | undefined;
26
+ PartyTypeString?: string | undefined;
27
+ GenderString?: string | undefined;
28
+ }
29
+ export interface UpdateProfileResponse {
30
+ ProfileId: string | undefined;
31
+ }
32
+ export declare const UpdateProfileRequestFilterSensitiveLog: (
33
+ obj: UpdateProfileRequest
34
+ ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListDomainLayoutsCommandInput,
4
+ ListDomainLayoutsCommandOutput,
5
+ } from "../commands/ListDomainLayoutsCommand";
6
+ import { CustomerProfilesPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListDomainLayouts: (
8
+ config: CustomerProfilesPaginationConfiguration,
9
+ input: ListDomainLayoutsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListDomainLayoutsCommandOutput>;
@@ -1,5 +1,6 @@
1
1
  export * from "./GetSimilarProfilesPaginator";
2
2
  export * from "./Interfaces";
3
+ export * from "./ListDomainLayoutsPaginator";
3
4
  export * from "./ListEventStreamsPaginator";
4
5
  export * from "./ListEventTriggersPaginator";
5
6
  export * from "./ListObjectTypeAttributesPaginator";