@aws-sdk/client-customer-profiles 3.825.0 → 3.827.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 +11 -11
@@ -1369,6 +1369,11 @@ export interface CalculatedAttributeValue {
1369
1369
  * @public
1370
1370
  */
1371
1371
  Value?: string | undefined;
1372
+ /**
1373
+ * <p>The timestamp of the newest object included in the calculated attribute calculation.</p>
1374
+ * @public
1375
+ */
1376
+ LastObjectTimestamp?: Date | undefined;
1372
1377
  }
1373
1378
  /**
1374
1379
  * <p>Error object describing why a specific profile and calculated attribute failed.</p>
@@ -1503,7 +1508,7 @@ export interface Profile {
1503
1508
  */
1504
1509
  ProfileId?: string | undefined;
1505
1510
  /**
1506
- * <p>An account number that you have given to the customer.</p>
1511
+ * <p>An account number that you have assigned to the customer.</p>
1507
1512
  * @public
1508
1513
  */
1509
1514
  AccountNumber?: string | undefined;
@@ -1668,6 +1673,20 @@ export interface BatchGetProfileResponse {
1668
1673
  */
1669
1674
  Profiles?: Profile[] | undefined;
1670
1675
  }
1676
+ /**
1677
+ * @public
1678
+ * @enum
1679
+ */
1680
+ export declare const ReadinessStatus: {
1681
+ readonly COMPLETED: "COMPLETED";
1682
+ readonly FAILED: "FAILED";
1683
+ readonly IN_PROGRESS: "IN_PROGRESS";
1684
+ readonly PREPARING: "PREPARING";
1685
+ };
1686
+ /**
1687
+ * @public
1688
+ */
1689
+ export type ReadinessStatus = (typeof ReadinessStatus)[keyof typeof ReadinessStatus];
1671
1690
  /**
1672
1691
  * <p>The details of a single calculated attribute definition.</p>
1673
1692
  * @public
@@ -1699,6 +1718,18 @@ export interface ListCalculatedAttributeDefinitionItem {
1699
1718
  * @public
1700
1719
  */
1701
1720
  LastUpdatedAt?: Date | undefined;
1721
+ /**
1722
+ * <p>Whether historical data ingested before the Calculated Attribute was created should be
1723
+ * included in calculations.</p>
1724
+ * @public
1725
+ */
1726
+ UseHistoricalData?: boolean | undefined;
1727
+ /**
1728
+ * <p>Status of the Calculated Attribute creation (whether all historical data has been
1729
+ * indexed.)</p>
1730
+ * @public
1731
+ */
1732
+ Status?: ReadinessStatus | undefined;
1702
1733
  /**
1703
1734
  * <p>The tags used to organize, track, or control access for this resource.</p>
1704
1735
  * @public
@@ -1752,6 +1783,11 @@ export interface ListCalculatedAttributeForProfileItem {
1752
1783
  * @public
1753
1784
  */
1754
1785
  Value?: string | undefined;
1786
+ /**
1787
+ * <p>The timestamp of the newest object included in the calculated attribute calculation.</p>
1788
+ * @public
1789
+ */
1790
+ LastObjectTimestamp?: Date | undefined;
1755
1791
  }
1756
1792
  /**
1757
1793
  * @public
@@ -1789,6 +1825,27 @@ export declare const Unit: {
1789
1825
  * @public
1790
1826
  */
1791
1827
  export type Unit = (typeof Unit)[keyof typeof Unit];
1828
+ /**
1829
+ * <p>A structure letting customers specify a relative time window over which over which data
1830
+ * is included in the Calculated Attribute. Use positive numbers to indicate that the endpoint
1831
+ * is in the past, and negative numbers to indicate it is in the future. ValueRange overrides
1832
+ * Value.</p>
1833
+ * @public
1834
+ */
1835
+ export interface ValueRange {
1836
+ /**
1837
+ * <p>The start time of when to include objects. Use positive numbers to indicate that the
1838
+ * starting point is in the past, and negative numbers to indicate it is in the future.</p>
1839
+ * @public
1840
+ */
1841
+ Start: number | undefined;
1842
+ /**
1843
+ * <p>The end time of when to include objects. Use positive numbers to indicate that the
1844
+ * starting point is in the past, and negative numbers to indicate it is in the future.</p>
1845
+ * @public
1846
+ */
1847
+ End: number | undefined;
1848
+ }
1792
1849
  /**
1793
1850
  * <p>The relative time period over which data is included in the aggregation.</p>
1794
1851
  * @public
@@ -1798,12 +1855,39 @@ export interface Range {
1798
1855
  * <p>The amount of time of the specified unit.</p>
1799
1856
  * @public
1800
1857
  */
1801
- Value: number | undefined;
1858
+ Value?: number | undefined;
1802
1859
  /**
1803
1860
  * <p>The unit of time.</p>
1804
1861
  * @public
1805
1862
  */
1806
- Unit: Unit | undefined;
1863
+ Unit?: Unit | undefined;
1864
+ /**
1865
+ * <p>A structure letting customers specify a relative time window over which over which data
1866
+ * is included in the Calculated Attribute. Use positive numbers to indicate that the endpoint
1867
+ * is in the past, and negative numbers to indicate it is in the future. ValueRange overrides
1868
+ * Value.</p>
1869
+ * @public
1870
+ */
1871
+ ValueRange?: ValueRange | undefined;
1872
+ /**
1873
+ * <p>An expression specifying the field in your JSON object from which the date should be
1874
+ * parsed. The expression should follow the structure of \"\{ObjectTypeName.<Location of
1875
+ * timestamp field in JSON pointer format>\}\". E.g. if your object type is MyType and source
1876
+ * JSON is \{"generatedAt": \{"timestamp": "1737587945945"\}\}, then TimestampSource should be
1877
+ * "\{MyType.generatedAt.timestamp\}".</p>
1878
+ * @public
1879
+ */
1880
+ TimestampSource?: string | undefined;
1881
+ /**
1882
+ * <p>The format the timestamp field in your JSON object is specified. This value should be
1883
+ * one of EPOCHMILLI (for Unix epoch timestamps with second/millisecond level precision) or
1884
+ * ISO_8601 (following ISO_8601 format with second/millisecond level precision, with an
1885
+ * optional offset of Z or in the format HH:MM or HHMM.). E.g. if your object type is MyType
1886
+ * and source JSON is \{"generatedAt": \{"timestamp": "2001-07-04T12:08:56.235-0700"\}\}, then
1887
+ * TimestampFormat should be "ISO_8601".</p>
1888
+ * @public
1889
+ */
1890
+ TimestampFormat?: string | undefined;
1807
1891
  }
1808
1892
  /**
1809
1893
  * @public
@@ -1992,12 +2076,35 @@ export interface CreateCalculatedAttributeDefinitionRequest {
1992
2076
  * @public
1993
2077
  */
1994
2078
  Statistic: Statistic | undefined;
2079
+ /**
2080
+ * <p>Whether historical data ingested before the Calculated Attribute was created should be
2081
+ * included in calculations.</p>
2082
+ * @public
2083
+ */
2084
+ UseHistoricalData?: boolean | undefined;
1995
2085
  /**
1996
2086
  * <p>The tags used to organize, track, or control access for this resource.</p>
1997
2087
  * @public
1998
2088
  */
1999
2089
  Tags?: Record<string, string> | undefined;
2000
2090
  }
2091
+ /**
2092
+ * <p>Information indicating if the Calculated Attribute is ready for use by confirming all
2093
+ * historical data has been processed and reflected.</p>
2094
+ * @public
2095
+ */
2096
+ export interface Readiness {
2097
+ /**
2098
+ * <p>Approximately how far the Calculated Attribute creation is from completion.</p>
2099
+ * @public
2100
+ */
2101
+ ProgressPercentage?: number | undefined;
2102
+ /**
2103
+ * <p>Any customer messaging.</p>
2104
+ * @public
2105
+ */
2106
+ Message?: string | undefined;
2107
+ }
2001
2108
  /**
2002
2109
  * @public
2003
2110
  */
@@ -2050,6 +2157,24 @@ export interface CreateCalculatedAttributeDefinitionResponse {
2050
2157
  * @public
2051
2158
  */
2052
2159
  LastUpdatedAt?: Date | undefined;
2160
+ /**
2161
+ * <p>Whether historical data ingested before the Calculated Attribute was created should be
2162
+ * included in calculations.</p>
2163
+ * @public
2164
+ */
2165
+ UseHistoricalData?: boolean | undefined;
2166
+ /**
2167
+ * <p>Status of the Calculated Attribute creation (whether all historical data has been
2168
+ * indexed.)</p>
2169
+ * @public
2170
+ */
2171
+ Status?: ReadinessStatus | undefined;
2172
+ /**
2173
+ * <p>Information indicating if the Calculated Attribute is ready for use by confirming all
2174
+ * historical data has been processed and reflected.</p>
2175
+ * @public
2176
+ */
2177
+ Readiness?: Readiness | undefined;
2053
2178
  /**
2054
2179
  * <p>The tags used to organize, track, or control access for this resource.</p>
2055
2180
  * @public
@@ -2506,6 +2631,123 @@ export interface CreateDomainResponse {
2506
2631
  */
2507
2632
  Tags?: Record<string, string> | undefined;
2508
2633
  }
2634
+ /**
2635
+ * @public
2636
+ * @enum
2637
+ */
2638
+ export declare const LayoutType: {
2639
+ readonly PROFILE_EXPLORER: "PROFILE_EXPLORER";
2640
+ };
2641
+ /**
2642
+ * @public
2643
+ */
2644
+ export type LayoutType = (typeof LayoutType)[keyof typeof LayoutType];
2645
+ /**
2646
+ * @public
2647
+ */
2648
+ export interface CreateDomainLayoutRequest {
2649
+ /**
2650
+ * <p>The unique name of the domain.</p>
2651
+ * @public
2652
+ */
2653
+ DomainName: string | undefined;
2654
+ /**
2655
+ * <p>The unique name of the layout.</p>
2656
+ * @public
2657
+ */
2658
+ LayoutDefinitionName: string | undefined;
2659
+ /**
2660
+ * <p>The description of the layout</p>
2661
+ * @public
2662
+ */
2663
+ Description: string | undefined;
2664
+ /**
2665
+ * <p>The display name of the layout</p>
2666
+ * @public
2667
+ */
2668
+ DisplayName: string | undefined;
2669
+ /**
2670
+ * <p>If set to true for a layout, this layout will be used by default to view data. If set to
2671
+ * false, then the layout will not be used by default, but it can be used to view data by
2672
+ * explicitly selecting it in the console.</p>
2673
+ * @public
2674
+ */
2675
+ IsDefault?: boolean | undefined;
2676
+ /**
2677
+ * <p>The type of layout that can be used to view data under a Customer Profiles domain.</p>
2678
+ * @public
2679
+ */
2680
+ LayoutType: LayoutType | undefined;
2681
+ /**
2682
+ * <p>A customizable layout that can be used to view data under a Customer Profiles
2683
+ * domain.</p>
2684
+ * @public
2685
+ */
2686
+ Layout: string | undefined;
2687
+ /**
2688
+ * <p>The tags used to organize, track, or control access for this resource.</p>
2689
+ * @public
2690
+ */
2691
+ Tags?: Record<string, string> | undefined;
2692
+ }
2693
+ /**
2694
+ * @public
2695
+ */
2696
+ export interface CreateDomainLayoutResponse {
2697
+ /**
2698
+ * <p>The unique name of the layout.</p>
2699
+ * @public
2700
+ */
2701
+ LayoutDefinitionName: string | undefined;
2702
+ /**
2703
+ * <p>The description of the layout</p>
2704
+ * @public
2705
+ */
2706
+ Description: string | undefined;
2707
+ /**
2708
+ * <p>The display name of the layout</p>
2709
+ * @public
2710
+ */
2711
+ DisplayName: string | undefined;
2712
+ /**
2713
+ * <p>If set to true for a layout, this layout will be used by default to view data. If set to
2714
+ * false, then the layout will not be used by default, but it can be used to view data by
2715
+ * explicitly selecting it in the console.</p>
2716
+ * @public
2717
+ */
2718
+ IsDefault?: boolean | undefined;
2719
+ /**
2720
+ * <p>The type of layout that can be used to view data under customer profiles domain.</p>
2721
+ * @public
2722
+ */
2723
+ LayoutType: LayoutType | undefined;
2724
+ /**
2725
+ * <p>A customizable layout that can be used to view data under Customer Profiles
2726
+ * domain.</p>
2727
+ * @public
2728
+ */
2729
+ Layout: string | undefined;
2730
+ /**
2731
+ * <p>The version used to create layout.</p>
2732
+ * @public
2733
+ */
2734
+ Version: string | undefined;
2735
+ /**
2736
+ * <p>The tags used to organize, track, or control access for this resource.</p>
2737
+ * @public
2738
+ */
2739
+ Tags?: Record<string, string> | undefined;
2740
+ /**
2741
+ * <p>The timestamp of when the layout was created.</p>
2742
+ * @public
2743
+ */
2744
+ CreatedAt: Date | undefined;
2745
+ /**
2746
+ * <p>The timestamp of when the layout was most recently updated.</p>
2747
+ * @public
2748
+ */
2749
+ LastUpdatedAt?: Date | undefined;
2750
+ }
2509
2751
  /**
2510
2752
  * @public
2511
2753
  */
@@ -2548,7 +2790,8 @@ export interface CreateEventStreamResponse {
2548
2790
  Tags?: Record<string, string> | undefined;
2549
2791
  }
2550
2792
  /**
2551
- * <p>The criteria that a specific object attribute must meet to trigger the destination.</p>
2793
+ * <p>The criteria that a specific object attribute must meet to trigger the
2794
+ * destination.</p>
2552
2795
  * @public
2553
2796
  */
2554
2797
  export interface ObjectAttribute {
@@ -2648,18 +2891,21 @@ export interface Period {
2648
2891
  */
2649
2892
  MaxInvocationsPerProfile?: number | undefined;
2650
2893
  /**
2651
- * <p>If set to true, there is no limit on the number of destination invocations per profile. The default is false.</p>
2894
+ * <p>If set to true, there is no limit on the number of destination invocations per profile.
2895
+ * The default is false.</p>
2652
2896
  * @public
2653
2897
  */
2654
2898
  Unlimited?: boolean | undefined;
2655
2899
  }
2656
2900
  /**
2657
- * <p>Defines limits controlling whether an event triggers the destination, based on ingestion latency and the number of invocations per profile over specific time periods.</p>
2901
+ * <p>Defines limits controlling whether an event triggers the destination, based on ingestion
2902
+ * latency and the number of invocations per profile over specific time periods.</p>
2658
2903
  * @public
2659
2904
  */
2660
2905
  export interface EventTriggerLimits {
2661
2906
  /**
2662
- * <p>In milliseconds. Specifies that an event will only trigger the destination if it is processed within a certain latency period.</p>
2907
+ * <p>In milliseconds. Specifies that an event will only trigger the destination if it is
2908
+ * processed within a certain latency period.</p>
2663
2909
  * @public
2664
2910
  */
2665
2911
  EventExpiration?: number | undefined;
@@ -2850,7 +3096,7 @@ export interface CreateProfileRequest {
2850
3096
  */
2851
3097
  DomainName: string | undefined;
2852
3098
  /**
2853
- * <p>An account number that you have given to the customer.</p>
3099
+ * <p>An account number that you have assigned to the customer.</p>
2854
3100
  * @public
2855
3101
  */
2856
3102
  AccountNumber?: string | undefined;
@@ -3474,6 +3720,31 @@ export interface DeleteDomainResponse {
3474
3720
  */
3475
3721
  Message: string | undefined;
3476
3722
  }
3723
+ /**
3724
+ * @public
3725
+ */
3726
+ export interface DeleteDomainLayoutRequest {
3727
+ /**
3728
+ * <p>The unique name of the domain.</p>
3729
+ * @public
3730
+ */
3731
+ DomainName: string | undefined;
3732
+ /**
3733
+ * <p>The unique name of the layout.</p>
3734
+ * @public
3735
+ */
3736
+ LayoutDefinitionName: string | undefined;
3737
+ }
3738
+ /**
3739
+ * @public
3740
+ */
3741
+ export interface DeleteDomainLayoutResponse {
3742
+ /**
3743
+ * <p>A message that indicates the delete request is done.</p>
3744
+ * @public
3745
+ */
3746
+ Message: string | undefined;
3747
+ }
3477
3748
  /**
3478
3749
  * @public
3479
3750
  */
@@ -3767,10 +4038,19 @@ export interface ObjectTypeField {
3767
4038
  * @enum
3768
4039
  */
3769
4040
  export declare const StandardIdentifier: {
4041
+ readonly AIR_BOOKING: "AIR_BOOKING";
4042
+ readonly AIR_PREFERENCE: "AIR_PREFERENCE";
4043
+ readonly AIR_SEGMENT: "AIR_SEGMENT";
3770
4044
  readonly ASSET: "ASSET";
3771
4045
  readonly CASE: "CASE";
3772
4046
  readonly COMMUNICATION_RECORD: "COMMUNICATION_RECORD";
4047
+ readonly HOTEL_PREFERENCE: "HOTEL_PREFERENCE";
4048
+ readonly HOTEL_RESERVATION: "HOTEL_RESERVATION";
4049
+ readonly HOTEL_STAY_REVENUE: "HOTEL_STAY_REVENUE";
3773
4050
  readonly LOOKUP_ONLY: "LOOKUP_ONLY";
4051
+ readonly LOYALTY: "LOYALTY";
4052
+ readonly LOYALTY_PROMOTION: "LOYALTY_PROMOTION";
4053
+ readonly LOYALTY_TRANSACTION: "LOYALTY_TRANSACTION";
3774
4054
  readonly NEW_ONLY: "NEW_ONLY";
3775
4055
  readonly ORDER: "ORDER";
3776
4056
  readonly PROFILE: "PROFILE";
@@ -3958,6 +4238,24 @@ export interface GetCalculatedAttributeDefinitionResponse {
3958
4238
  * @public
3959
4239
  */
3960
4240
  AttributeDetails?: AttributeDetails | undefined;
4241
+ /**
4242
+ * <p>Whether historical data ingested before the Calculated Attribute was created should be
4243
+ * included in calculations.</p>
4244
+ * @public
4245
+ */
4246
+ UseHistoricalData?: boolean | undefined;
4247
+ /**
4248
+ * <p>Status of the Calculated Attribute creation (whether all historical data has been
4249
+ * indexed).</p>
4250
+ * @public
4251
+ */
4252
+ Status?: ReadinessStatus | undefined;
4253
+ /**
4254
+ * <p>Information indicating if the Calculated Attribute is ready for use by confirming all
4255
+ * historical data has been processed and reflected.</p>
4256
+ * @public
4257
+ */
4258
+ Readiness?: Readiness | undefined;
3961
4259
  /**
3962
4260
  * <p>The tags used to organize, track, or control access for this resource.</p>
3963
4261
  * @public
@@ -4009,6 +4307,11 @@ export interface GetCalculatedAttributeForProfileResponse {
4009
4307
  * @public
4010
4308
  */
4011
4309
  Value?: string | undefined;
4310
+ /**
4311
+ * <p>The timestamp of the newest object included in the calculated attribute calculation.</p>
4312
+ * @public
4313
+ */
4314
+ LastObjectTimestamp?: Date | undefined;
4012
4315
  }
4013
4316
  /**
4014
4317
  * @public
@@ -4118,6 +4421,79 @@ export interface GetDomainResponse {
4118
4421
  */
4119
4422
  Tags?: Record<string, string> | undefined;
4120
4423
  }
4424
+ /**
4425
+ * @public
4426
+ */
4427
+ export interface GetDomainLayoutRequest {
4428
+ /**
4429
+ * <p>The unique name of the domain.</p>
4430
+ * @public
4431
+ */
4432
+ DomainName: string | undefined;
4433
+ /**
4434
+ * <p>The unique name of the layout.</p>
4435
+ * @public
4436
+ */
4437
+ LayoutDefinitionName: string | undefined;
4438
+ }
4439
+ /**
4440
+ * @public
4441
+ */
4442
+ export interface GetDomainLayoutResponse {
4443
+ /**
4444
+ * <p>The unique name of the layout.</p>
4445
+ * @public
4446
+ */
4447
+ LayoutDefinitionName: string | undefined;
4448
+ /**
4449
+ * <p>The description of the layout</p>
4450
+ * @public
4451
+ */
4452
+ Description: string | undefined;
4453
+ /**
4454
+ * <p>The display name of the layout</p>
4455
+ * @public
4456
+ */
4457
+ DisplayName: string | undefined;
4458
+ /**
4459
+ * <p>If set to true for a layout, this layout will be used by default to view data. If set to
4460
+ * false, then the layout will not be used by default, but it can be used to view data by
4461
+ * explicitly selecting it in the console.</p>
4462
+ * @public
4463
+ */
4464
+ IsDefault?: boolean | undefined;
4465
+ /**
4466
+ * <p>The type of layout that can be used to view data under a Customer Profiles domain.</p>
4467
+ * @public
4468
+ */
4469
+ LayoutType: LayoutType | undefined;
4470
+ /**
4471
+ * <p>A customizable layout that can be used to view data under a Customer Profiles
4472
+ * domain.</p>
4473
+ * @public
4474
+ */
4475
+ Layout: string | undefined;
4476
+ /**
4477
+ * <p>The version used to create layout.</p>
4478
+ * @public
4479
+ */
4480
+ Version: string | undefined;
4481
+ /**
4482
+ * <p>The timestamp of when the layout was created.</p>
4483
+ * @public
4484
+ */
4485
+ CreatedAt: Date | undefined;
4486
+ /**
4487
+ * <p>The timestamp of when the layout was most recently updated.</p>
4488
+ * @public
4489
+ */
4490
+ LastUpdatedAt: Date | undefined;
4491
+ /**
4492
+ * <p>The tags used to organize, track, or control access for this resource.</p>
4493
+ * @public
4494
+ */
4495
+ Tags?: Record<string, string> | undefined;
4496
+ }
4121
4497
  /**
4122
4498
  * @public
4123
4499
  */
@@ -4271,7 +4647,8 @@ export interface GetEventTriggerResponse {
4271
4647
  */
4272
4648
  SegmentFilter?: string | undefined;
4273
4649
  /**
4274
- * <p>Defines limits controlling whether an event triggers the destination, based on ingestion latency and the number of invocations per profile over specific time periods.</p>
4650
+ * <p>Defines limits controlling whether an event triggers the destination, based on ingestion
4651
+ * latency and the number of invocations per profile over specific time periods.</p>
4275
4652
  * @public
4276
4653
  */
4277
4654
  EventTriggerLimits?: EventTriggerLimits | undefined;
@@ -5482,9 +5859,14 @@ export interface ListCalculatedAttributesForProfileResponse {
5482
5859
  /**
5483
5860
  * @public
5484
5861
  */
5485
- export interface ListDomainsRequest {
5862
+ export interface ListDomainLayoutsRequest {
5486
5863
  /**
5487
- * <p>The pagination token from the previous ListDomain API call.</p>
5864
+ * <p>The unique name of the domain.</p>
5865
+ * @public
5866
+ */
5867
+ DomainName: string | undefined;
5868
+ /**
5869
+ * <p>Identifies the next page of results to return.</p>
5488
5870
  * @public
5489
5871
  */
5490
5872
  NextToken?: string | undefined;
@@ -5495,30 +5877,109 @@ export interface ListDomainsRequest {
5495
5877
  MaxResults?: number | undefined;
5496
5878
  }
5497
5879
  /**
5498
- * <p>An object in a list that represents a domain.</p>
5880
+ * <p>The layout object that contains LayoutDefinitionName, Description, DisplayName,
5881
+ * IsDefault, LayoutType, Tags, CreatedAt, LastUpdatedAt </p>
5499
5882
  * @public
5500
5883
  */
5501
- export interface ListDomainItem {
5884
+ export interface LayoutItem {
5502
5885
  /**
5503
- * <p>The unique name of the domain.</p>
5886
+ * <p>The unique name of the layout.</p>
5504
5887
  * @public
5505
5888
  */
5506
- DomainName: string | undefined;
5889
+ LayoutDefinitionName: string | undefined;
5507
5890
  /**
5508
- * <p>The timestamp of when the domain was created.</p>
5891
+ * <p>The description of the layout</p>
5509
5892
  * @public
5510
5893
  */
5511
- CreatedAt: Date | undefined;
5894
+ Description: string | undefined;
5512
5895
  /**
5513
- * <p>The timestamp of when the domain was most recently edited.</p>
5896
+ * <p>The display name of the layout</p>
5514
5897
  * @public
5515
5898
  */
5516
- LastUpdatedAt: Date | undefined;
5899
+ DisplayName: string | undefined;
5517
5900
  /**
5518
- * <p>The tags used to organize, track, or control access for this resource.</p>
5901
+ * <p>If set to true for a layout, this layout will be used by default to view data. If set to
5902
+ * false, then layout will not be used by default but it can be used to view data by explicit
5903
+ * selection on UI.</p>
5519
5904
  * @public
5520
5905
  */
5521
- Tags?: Record<string, string> | undefined;
5906
+ IsDefault?: boolean | undefined;
5907
+ /**
5908
+ * <p>The type of layout that can be used to view data under customer profiles domain.</p>
5909
+ * @public
5910
+ */
5911
+ LayoutType: LayoutType | undefined;
5912
+ /**
5913
+ * <p>The tags used to organize, track, or control access for this resource.</p>
5914
+ * @public
5915
+ */
5916
+ Tags?: Record<string, string> | undefined;
5917
+ /**
5918
+ * <p>The timestamp of when the layout was created.</p>
5919
+ * @public
5920
+ */
5921
+ CreatedAt: Date | undefined;
5922
+ /**
5923
+ * <p>The timestamp of when the layout was most recently updated.</p>
5924
+ * @public
5925
+ */
5926
+ LastUpdatedAt: Date | undefined;
5927
+ }
5928
+ /**
5929
+ * @public
5930
+ */
5931
+ export interface ListDomainLayoutsResponse {
5932
+ /**
5933
+ * <p>Contains summary information about an EventStream.</p>
5934
+ * @public
5935
+ */
5936
+ Items?: LayoutItem[] | undefined;
5937
+ /**
5938
+ * <p>Identifies the next page of results to return.</p>
5939
+ * @public
5940
+ */
5941
+ NextToken?: string | undefined;
5942
+ }
5943
+ /**
5944
+ * @public
5945
+ */
5946
+ export interface ListDomainsRequest {
5947
+ /**
5948
+ * <p>The pagination token from the previous ListDomain API call.</p>
5949
+ * @public
5950
+ */
5951
+ NextToken?: string | undefined;
5952
+ /**
5953
+ * <p>The maximum number of objects returned per page.</p>
5954
+ * @public
5955
+ */
5956
+ MaxResults?: number | undefined;
5957
+ }
5958
+ /**
5959
+ * <p>An object in a list that represents a domain.</p>
5960
+ * @public
5961
+ */
5962
+ export interface ListDomainItem {
5963
+ /**
5964
+ * <p>The unique name of the domain.</p>
5965
+ * @public
5966
+ */
5967
+ DomainName: string | undefined;
5968
+ /**
5969
+ * <p>The timestamp of when the domain was created.</p>
5970
+ * @public
5971
+ */
5972
+ CreatedAt: Date | undefined;
5973
+ /**
5974
+ * <p>The timestamp of when the domain was most recently edited.</p>
5975
+ * @public
5976
+ */
5977
+ LastUpdatedAt: Date | undefined;
5978
+ /**
5979
+ * <p>The tags used to organize, track, or control access for this resource.</p>
5980
+ * @public
5981
+ */
5982
+ Tags?: Record<string, string> | undefined;
5522
5983
  }
5523
5984
  /**
5524
5985
  * @public
@@ -7064,6 +7525,24 @@ export interface UpdateCalculatedAttributeDefinitionResponse {
7064
7525
  * @public
7065
7526
  */
7066
7527
  AttributeDetails?: AttributeDetails | undefined;
7528
+ /**
7529
+ * <p>Whether historical data ingested before the Calculated Attribute was created should be
7530
+ * included in calculations.</p>
7531
+ * @public
7532
+ */
7533
+ UseHistoricalData?: boolean | undefined;
7534
+ /**
7535
+ * <p>Status of the Calculated Attribute creation (whether all historical data has been
7536
+ * indexed.)</p>
7537
+ * @public
7538
+ */
7539
+ Status?: ReadinessStatus | undefined;
7540
+ /**
7541
+ * <p>Information indicating if the Calculated Attribute is ready for use by confirming all
7542
+ * historical data has been processed and reflected.</p>
7543
+ * @public
7544
+ */
7545
+ Readiness?: Readiness | undefined;
7067
7546
  /**
7068
7547
  * <p>The tags used to organize, track, or control access for this resource.</p>
7069
7548
  * @public
@@ -7197,297 +7676,252 @@ export interface UpdateDomainResponse {
7197
7676
  /**
7198
7677
  * @public
7199
7678
  */
7200
- export interface UpdateEventTriggerRequest {
7679
+ export interface UpdateDomainLayoutRequest {
7201
7680
  /**
7202
7681
  * <p>The unique name of the domain.</p>
7203
7682
  * @public
7204
7683
  */
7205
7684
  DomainName: string | undefined;
7206
7685
  /**
7207
- * <p>The unique name of the event trigger.</p>
7686
+ * <p>The unique name of the layout.</p>
7208
7687
  * @public
7209
7688
  */
7210
- EventTriggerName: string | undefined;
7689
+ LayoutDefinitionName: string | undefined;
7211
7690
  /**
7212
- * <p>The unique name of the object type.</p>
7691
+ * <p>The description of the layout</p>
7213
7692
  * @public
7214
7693
  */
7215
- ObjectTypeName?: string | undefined;
7694
+ Description?: string | undefined;
7216
7695
  /**
7217
- * <p>The description of the event trigger.</p>
7696
+ * <p>The display name of the layout</p>
7218
7697
  * @public
7219
7698
  */
7220
- Description?: string | undefined;
7699
+ DisplayName?: string | undefined;
7221
7700
  /**
7222
- * <p>A list of conditions that determine when an event should trigger the destination.</p>
7701
+ * <p>If set to true for a layout, this layout will be used by default to view data. If set to
7702
+ * false, then the layout will not be used by default, but it can be used to view data by
7703
+ * explicitly selecting it in the console.</p>
7223
7704
  * @public
7224
7705
  */
7225
- EventTriggerConditions?: EventTriggerCondition[] | undefined;
7706
+ IsDefault?: boolean | undefined;
7226
7707
  /**
7227
- * <p>The destination is triggered only for profiles that meet the criteria of a segment
7228
- * definition.</p>
7708
+ * <p>The type of layout that can be used to view data under a Customer Profiles domain.</p>
7229
7709
  * @public
7230
7710
  */
7231
- SegmentFilter?: string | undefined;
7711
+ LayoutType?: LayoutType | undefined;
7232
7712
  /**
7233
- * <p>Defines limits controlling whether an event triggers the destination, based on ingestion latency and the number of invocations per profile over specific time periods.</p>
7713
+ * <p>A customizable layout that can be used to view data under a Customer Profiles
7714
+ * domain.</p>
7234
7715
  * @public
7235
7716
  */
7236
- EventTriggerLimits?: EventTriggerLimits | undefined;
7717
+ Layout?: string | undefined;
7237
7718
  }
7238
7719
  /**
7239
7720
  * @public
7240
7721
  */
7241
- export interface UpdateEventTriggerResponse {
7722
+ export interface UpdateDomainLayoutResponse {
7242
7723
  /**
7243
- * <p>The unique name of the event trigger.</p>
7724
+ * <p>The unique name of the layout.</p>
7244
7725
  * @public
7245
7726
  */
7246
- EventTriggerName?: string | undefined;
7727
+ LayoutDefinitionName?: string | undefined;
7247
7728
  /**
7248
- * <p>The unique name of the object type.</p>
7729
+ * <p>The description of the layout</p>
7249
7730
  * @public
7250
7731
  */
7251
- ObjectTypeName?: string | undefined;
7732
+ Description?: string | undefined;
7252
7733
  /**
7253
- * <p>The description of the event trigger.</p>
7734
+ * <p>The display name of the layout</p>
7254
7735
  * @public
7255
7736
  */
7256
- Description?: string | undefined;
7737
+ DisplayName?: string | undefined;
7257
7738
  /**
7258
- * <p>A list of conditions that determine when an event should trigger the destination.</p>
7739
+ * <p>If set to true for a layout, this layout will be used by default to view data. If set to
7740
+ * false, then the layout will not be used by default, but it can be used to view data by
7741
+ * explicitly selecting it in the console.</p>
7259
7742
  * @public
7260
7743
  */
7261
- EventTriggerConditions?: EventTriggerCondition[] | undefined;
7744
+ IsDefault?: boolean | undefined;
7262
7745
  /**
7263
- * <p>The destination is triggered only for profiles that meet the criteria of a segment
7264
- * definition.</p>
7746
+ * <p>The type of layout that can be used to view data under a Customer Profiles domain.</p>
7265
7747
  * @public
7266
7748
  */
7267
- SegmentFilter?: string | undefined;
7749
+ LayoutType?: LayoutType | undefined;
7268
7750
  /**
7269
- * <p>Defines limits controlling whether an event triggers the destination, based on ingestion latency and the number of invocations per profile over specific time periods.</p>
7751
+ * <p>A customizable layout that can be used to view data under a Customer Profiles domain.</p>
7270
7752
  * @public
7271
7753
  */
7272
- EventTriggerLimits?: EventTriggerLimits | undefined;
7754
+ Layout?: string | undefined;
7273
7755
  /**
7274
- * <p>The timestamp of when the event trigger was created.</p>
7756
+ * <p>The version used to create layout.</p>
7757
+ * @public
7758
+ */
7759
+ Version?: string | undefined;
7760
+ /**
7761
+ * <p>The timestamp of when the layout was created.</p>
7275
7762
  * @public
7276
7763
  */
7277
7764
  CreatedAt?: Date | undefined;
7278
7765
  /**
7279
- * <p>The timestamp of when the event trigger was most recently updated.</p>
7766
+ * <p>The timestamp of when the layout was most recently updated.</p>
7280
7767
  * @public
7281
7768
  */
7282
7769
  LastUpdatedAt?: Date | undefined;
7283
7770
  /**
7284
- * <p>An array of key-value pairs to apply to this resource.</p>
7771
+ * <p>The tags used to organize, track, or control access for this resource.</p>
7285
7772
  * @public
7286
7773
  */
7287
7774
  Tags?: Record<string, string> | undefined;
7288
7775
  }
7289
7776
  /**
7290
- * <p>Updates associated with the address properties of a customer profile.</p>
7291
7777
  * @public
7292
7778
  */
7293
- export interface UpdateAddress {
7294
- /**
7295
- * <p>The first line of a customer address.</p>
7296
- * @public
7297
- */
7298
- Address1?: string | undefined;
7299
- /**
7300
- * <p>The second line of a customer address.</p>
7301
- * @public
7302
- */
7303
- Address2?: string | undefined;
7304
- /**
7305
- * <p>The third line of a customer address.</p>
7306
- * @public
7307
- */
7308
- Address3?: string | undefined;
7779
+ export interface UpdateEventTriggerRequest {
7309
7780
  /**
7310
- * <p>The fourth line of a customer address.</p>
7781
+ * <p>The unique name of the domain.</p>
7311
7782
  * @public
7312
7783
  */
7313
- Address4?: string | undefined;
7784
+ DomainName: string | undefined;
7314
7785
  /**
7315
- * <p>The city in which a customer lives.</p>
7786
+ * <p>The unique name of the event trigger.</p>
7316
7787
  * @public
7317
7788
  */
7318
- City?: string | undefined;
7789
+ EventTriggerName: string | undefined;
7319
7790
  /**
7320
- * <p>The county in which a customer lives.</p>
7791
+ * <p>The unique name of the object type.</p>
7321
7792
  * @public
7322
7793
  */
7323
- County?: string | undefined;
7794
+ ObjectTypeName?: string | undefined;
7324
7795
  /**
7325
- * <p>The state in which a customer lives.</p>
7796
+ * <p>The description of the event trigger.</p>
7326
7797
  * @public
7327
7798
  */
7328
- State?: string | undefined;
7799
+ Description?: string | undefined;
7329
7800
  /**
7330
- * <p>The province in which a customer lives.</p>
7801
+ * <p>A list of conditions that determine when an event should trigger the destination.</p>
7331
7802
  * @public
7332
7803
  */
7333
- Province?: string | undefined;
7804
+ EventTriggerConditions?: EventTriggerCondition[] | undefined;
7334
7805
  /**
7335
- * <p>The country in which a customer lives.</p>
7806
+ * <p>The destination is triggered only for profiles that meet the criteria of a segment
7807
+ * definition.</p>
7336
7808
  * @public
7337
7809
  */
7338
- Country?: string | undefined;
7810
+ SegmentFilter?: string | undefined;
7339
7811
  /**
7340
- * <p>The postal code of a customer address.</p>
7812
+ * <p>Defines limits controlling whether an event triggers the destination, based on ingestion
7813
+ * latency and the number of invocations per profile over specific time periods.</p>
7341
7814
  * @public
7342
7815
  */
7343
- PostalCode?: string | undefined;
7816
+ EventTriggerLimits?: EventTriggerLimits | undefined;
7344
7817
  }
7345
7818
  /**
7346
7819
  * @public
7347
7820
  */
7348
- export interface UpdateProfileRequest {
7349
- /**
7350
- * <p>The unique name of the domain.</p>
7351
- * @public
7352
- */
7353
- DomainName: string | undefined;
7354
- /**
7355
- * <p>The unique identifier of a customer profile.</p>
7356
- * @public
7357
- */
7358
- ProfileId: string | undefined;
7359
- /**
7360
- * <p>Any additional information relevant to the customer’s profile.</p>
7361
- * @public
7362
- */
7363
- AdditionalInformation?: string | undefined;
7364
- /**
7365
- * <p>An account number that you have given to the customer.</p>
7366
- * @public
7367
- */
7368
- AccountNumber?: string | undefined;
7369
- /**
7370
- * <p>The type of profile used to describe the customer.</p>
7371
- *
7372
- * @deprecated
7373
- * @public
7374
- */
7375
- PartyType?: PartyType | undefined;
7376
- /**
7377
- * <p>The name of the customer’s business.</p>
7378
- * @public
7379
- */
7380
- BusinessName?: string | undefined;
7381
- /**
7382
- * <p>The customer’s first name.</p>
7383
- * @public
7384
- */
7385
- FirstName?: string | undefined;
7821
+ export interface UpdateEventTriggerResponse {
7386
7822
  /**
7387
- * <p>The customer’s middle name.</p>
7823
+ * <p>The unique name of the event trigger.</p>
7388
7824
  * @public
7389
7825
  */
7390
- MiddleName?: string | undefined;
7826
+ EventTriggerName?: string | undefined;
7391
7827
  /**
7392
- * <p>The customer’s last name.</p>
7828
+ * <p>The unique name of the object type.</p>
7393
7829
  * @public
7394
7830
  */
7395
- LastName?: string | undefined;
7831
+ ObjectTypeName?: string | undefined;
7396
7832
  /**
7397
- * <p>The customer’s birth date. </p>
7833
+ * <p>The description of the event trigger.</p>
7398
7834
  * @public
7399
7835
  */
7400
- BirthDate?: string | undefined;
7836
+ Description?: string | undefined;
7401
7837
  /**
7402
- * <p>The gender with which the customer identifies. </p>
7403
- *
7404
- * @deprecated
7838
+ * <p>A list of conditions that determine when an event should trigger the destination.</p>
7405
7839
  * @public
7406
7840
  */
7407
- Gender?: Gender | undefined;
7841
+ EventTriggerConditions?: EventTriggerCondition[] | undefined;
7408
7842
  /**
7409
- * <p>The customer’s phone number, which has not been specified as a mobile, home, or business
7410
- * number. </p>
7843
+ * <p>The destination is triggered only for profiles that meet the criteria of a segment
7844
+ * definition.</p>
7411
7845
  * @public
7412
7846
  */
7413
- PhoneNumber?: string | undefined;
7847
+ SegmentFilter?: string | undefined;
7414
7848
  /**
7415
- * <p>The customer’s mobile phone number.</p>
7849
+ * <p>Defines limits controlling whether an event triggers the destination, based on ingestion
7850
+ * latency and the number of invocations per profile over specific time periods.</p>
7416
7851
  * @public
7417
7852
  */
7418
- MobilePhoneNumber?: string | undefined;
7853
+ EventTriggerLimits?: EventTriggerLimits | undefined;
7419
7854
  /**
7420
- * <p>The customer’s home phone number.</p>
7855
+ * <p>The timestamp of when the event trigger was created.</p>
7421
7856
  * @public
7422
7857
  */
7423
- HomePhoneNumber?: string | undefined;
7858
+ CreatedAt?: Date | undefined;
7424
7859
  /**
7425
- * <p>The customer’s business phone number.</p>
7860
+ * <p>The timestamp of when the event trigger was most recently updated.</p>
7426
7861
  * @public
7427
7862
  */
7428
- BusinessPhoneNumber?: string | undefined;
7863
+ LastUpdatedAt?: Date | undefined;
7429
7864
  /**
7430
- * <p>The customer’s email address, which has not been specified as a personal or business
7431
- * address. </p>
7865
+ * <p>An array of key-value pairs to apply to this resource.</p>
7432
7866
  * @public
7433
7867
  */
7434
- EmailAddress?: string | undefined;
7868
+ Tags?: Record<string, string> | undefined;
7869
+ }
7870
+ /**
7871
+ * <p>Updates associated with the address properties of a customer profile.</p>
7872
+ * @public
7873
+ */
7874
+ export interface UpdateAddress {
7435
7875
  /**
7436
- * <p>The customer’s personal email address.</p>
7876
+ * <p>The first line of a customer address.</p>
7437
7877
  * @public
7438
7878
  */
7439
- PersonalEmailAddress?: string | undefined;
7879
+ Address1?: string | undefined;
7440
7880
  /**
7441
- * <p>The customer’s business email address.</p>
7881
+ * <p>The second line of a customer address.</p>
7442
7882
  * @public
7443
7883
  */
7444
- BusinessEmailAddress?: string | undefined;
7884
+ Address2?: string | undefined;
7445
7885
  /**
7446
- * <p>A generic address associated with the customer that is not mailing, shipping, or
7447
- * billing.</p>
7886
+ * <p>The third line of a customer address.</p>
7448
7887
  * @public
7449
7888
  */
7450
- Address?: UpdateAddress | undefined;
7889
+ Address3?: string | undefined;
7451
7890
  /**
7452
- * <p>The customer’s shipping address.</p>
7891
+ * <p>The fourth line of a customer address.</p>
7453
7892
  * @public
7454
7893
  */
7455
- ShippingAddress?: UpdateAddress | undefined;
7894
+ Address4?: string | undefined;
7456
7895
  /**
7457
- * <p>The customer’s mailing address.</p>
7896
+ * <p>The city in which a customer lives.</p>
7458
7897
  * @public
7459
7898
  */
7460
- MailingAddress?: UpdateAddress | undefined;
7899
+ City?: string | undefined;
7461
7900
  /**
7462
- * <p>The customer’s billing address.</p>
7901
+ * <p>The county in which a customer lives.</p>
7463
7902
  * @public
7464
7903
  */
7465
- BillingAddress?: UpdateAddress | undefined;
7904
+ County?: string | undefined;
7466
7905
  /**
7467
- * <p>A key value pair of attributes of a customer profile.</p>
7906
+ * <p>The state in which a customer lives.</p>
7468
7907
  * @public
7469
7908
  */
7470
- Attributes?: Record<string, string> | undefined;
7909
+ State?: string | undefined;
7471
7910
  /**
7472
- * <p>An alternative to <code>PartyType</code> which accepts any string as input.</p>
7911
+ * <p>The province in which a customer lives.</p>
7473
7912
  * @public
7474
7913
  */
7475
- PartyTypeString?: string | undefined;
7914
+ Province?: string | undefined;
7476
7915
  /**
7477
- * <p>An alternative to <code>Gender</code> which accepts any string as input.</p>
7916
+ * <p>The country in which a customer lives.</p>
7478
7917
  * @public
7479
7918
  */
7480
- GenderString?: string | undefined;
7481
- }
7482
- /**
7483
- * @public
7484
- */
7485
- export interface UpdateProfileResponse {
7919
+ Country?: string | undefined;
7486
7920
  /**
7487
- * <p>The unique identifier of a customer profile.</p>
7921
+ * <p>The postal code of a customer address.</p>
7488
7922
  * @public
7489
7923
  */
7490
- ProfileId: string | undefined;
7924
+ PostalCode?: string | undefined;
7491
7925
  }
7492
7926
  /**
7493
7927
  * @internal
@@ -7545,6 +7979,14 @@ export declare const CreateCalculatedAttributeDefinitionRequestFilterSensitiveLo
7545
7979
  * @internal
7546
7980
  */
7547
7981
  export declare const CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog: (obj: CreateCalculatedAttributeDefinitionResponse) => any;
7982
+ /**
7983
+ * @internal
7984
+ */
7985
+ export declare const CreateDomainLayoutRequestFilterSensitiveLog: (obj: CreateDomainLayoutRequest) => any;
7986
+ /**
7987
+ * @internal
7988
+ */
7989
+ export declare const CreateDomainLayoutResponseFilterSensitiveLog: (obj: CreateDomainLayoutResponse) => any;
7548
7990
  /**
7549
7991
  * @internal
7550
7992
  */
@@ -7613,6 +8055,10 @@ export declare const DetectProfileObjectTypeResponseFilterSensitiveLog: (obj: De
7613
8055
  * @internal
7614
8056
  */
7615
8057
  export declare const GetCalculatedAttributeDefinitionResponseFilterSensitiveLog: (obj: GetCalculatedAttributeDefinitionResponse) => any;
8058
+ /**
8059
+ * @internal
8060
+ */
8061
+ export declare const GetDomainLayoutResponseFilterSensitiveLog: (obj: GetDomainLayoutResponse) => any;
7616
8062
  /**
7617
8063
  * @internal
7618
8064
  */
@@ -7641,6 +8087,14 @@ export declare const GetSegmentMembershipResponseFilterSensitiveLog: (obj: GetSe
7641
8087
  * @internal
7642
8088
  */
7643
8089
  export declare const ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog: (obj: ListCalculatedAttributeDefinitionsResponse) => any;
8090
+ /**
8091
+ * @internal
8092
+ */
8093
+ export declare const LayoutItemFilterSensitiveLog: (obj: LayoutItem) => any;
8094
+ /**
8095
+ * @internal
8096
+ */
8097
+ export declare const ListDomainLayoutsResponseFilterSensitiveLog: (obj: ListDomainLayoutsResponse) => any;
7644
8098
  /**
7645
8099
  * @internal
7646
8100
  */
@@ -7696,16 +8150,20 @@ export declare const UpdateCalculatedAttributeDefinitionResponseFilterSensitiveL
7696
8150
  /**
7697
8151
  * @internal
7698
8152
  */
7699
- export declare const UpdateEventTriggerRequestFilterSensitiveLog: (obj: UpdateEventTriggerRequest) => any;
8153
+ export declare const UpdateDomainLayoutRequestFilterSensitiveLog: (obj: UpdateDomainLayoutRequest) => any;
7700
8154
  /**
7701
8155
  * @internal
7702
8156
  */
7703
- export declare const UpdateEventTriggerResponseFilterSensitiveLog: (obj: UpdateEventTriggerResponse) => any;
8157
+ export declare const UpdateDomainLayoutResponseFilterSensitiveLog: (obj: UpdateDomainLayoutResponse) => any;
7704
8158
  /**
7705
8159
  * @internal
7706
8160
  */
7707
- export declare const UpdateAddressFilterSensitiveLog: (obj: UpdateAddress) => any;
8161
+ export declare const UpdateEventTriggerRequestFilterSensitiveLog: (obj: UpdateEventTriggerRequest) => any;
7708
8162
  /**
7709
8163
  * @internal
7710
8164
  */
7711
- export declare const UpdateProfileRequestFilterSensitiveLog: (obj: UpdateProfileRequest) => any;
8165
+ export declare const UpdateEventTriggerResponseFilterSensitiveLog: (obj: UpdateEventTriggerResponse) => any;
8166
+ /**
8167
+ * @internal
8168
+ */
8169
+ export declare const UpdateAddressFilterSensitiveLog: (obj: UpdateAddress) => any;