@aws-sdk/client-customer-profiles 3.896.0 → 3.900.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 (34) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +181 -39
  3. package/dist-es/CustomerProfiles.js +4 -0
  4. package/dist-es/commands/GetProfileHistoryRecordCommand.js +23 -0
  5. package/dist-es/commands/ListProfileHistoryRecordsCommand.js +22 -0
  6. package/dist-es/commands/PutIntegrationCommand.js +1 -1
  7. package/dist-es/commands/PutProfileObjectCommand.js +1 -1
  8. package/dist-es/commands/index.js +2 -0
  9. package/dist-es/models/models_0.js +15 -8
  10. package/dist-es/models/models_1.js +8 -0
  11. package/dist-es/protocols/Aws_restJson1.js +87 -0
  12. package/dist-types/CustomerProfiles.d.ts +14 -0
  13. package/dist-types/CustomerProfilesClient.d.ts +4 -2
  14. package/dist-types/commands/GetProfileHistoryRecordCommand.d.ts +98 -0
  15. package/dist-types/commands/ListProfileHistoryRecordsCommand.d.ts +106 -0
  16. package/dist-types/commands/MergeProfilesCommand.d.ts +1 -1
  17. package/dist-types/commands/PutIntegrationCommand.d.ts +1 -1
  18. package/dist-types/commands/PutProfileObjectCommand.d.ts +1 -1
  19. package/dist-types/commands/index.d.ts +2 -0
  20. package/dist-types/models/models_0.d.ts +185 -190
  21. package/dist-types/models/models_1.d.ts +191 -1
  22. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  23. package/dist-types/ts3.4/CustomerProfiles.d.ts +34 -0
  24. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +12 -0
  25. package/dist-types/ts3.4/commands/GetProfileHistoryRecordCommand.d.ts +51 -0
  26. package/dist-types/ts3.4/commands/ListProfileHistoryRecordsCommand.d.ts +51 -0
  27. package/dist-types/ts3.4/commands/MergeProfilesCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/PutIntegrationCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/PutProfileObjectCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +52 -46
  32. package/dist-types/ts3.4/models/models_1.d.ts +48 -0
  33. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  34. package/package.json +11 -11
@@ -13,6 +13,25 @@ export declare class AccessDeniedException extends __BaseException {
13
13
  */
14
14
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
15
  }
16
+ /**
17
+ * @public
18
+ * @enum
19
+ */
20
+ export declare const ActionType: {
21
+ readonly ADDED_PROFILE_KEY: "ADDED_PROFILE_KEY";
22
+ readonly CREATED: "CREATED";
23
+ readonly DELETED_BY_CUSTOMER: "DELETED_BY_CUSTOMER";
24
+ readonly DELETED_BY_MERGE: "DELETED_BY_MERGE";
25
+ readonly DELETED_PROFILE_KEY: "DELETED_PROFILE_KEY";
26
+ readonly EXPIRED: "EXPIRED";
27
+ readonly INGESTED: "INGESTED";
28
+ readonly MERGED: "MERGED";
29
+ readonly UPDATED: "UPDATED";
30
+ };
31
+ /**
32
+ * @public
33
+ */
34
+ export type ActionType = (typeof ActionType)[keyof typeof ActionType];
16
35
  /**
17
36
  * <p>A data type pair that consists of a <code>KeyName</code> and <code>Values</code> list
18
37
  * that is used in conjunction with the <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_SearchProfiles.html#customerprofiles-SearchProfiles-request-KeyName">KeyName</a> and <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_SearchProfiles.html#customerprofiles-SearchProfiles-request-Values">Values</a> parameters to search for profiles using the <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_SearchProfiles.html">SearchProfiles</a>
@@ -5168,6 +5187,71 @@ export interface GetMatchesResponse {
5168
5187
  */
5169
5188
  Matches?: MatchItem[] | undefined;
5170
5189
  }
5190
+ /**
5191
+ * @public
5192
+ */
5193
+ export interface GetProfileHistoryRecordRequest {
5194
+ /**
5195
+ * <p>The unique name of the domain for which to return a profile history record.</p>
5196
+ * @public
5197
+ */
5198
+ DomainName: string | undefined;
5199
+ /**
5200
+ * <p>The unique identifier of the profile for which to return a history record.</p>
5201
+ * @public
5202
+ */
5203
+ ProfileId: string | undefined;
5204
+ /**
5205
+ * <p>The unique identifier of the profile history record to return.</p>
5206
+ * @public
5207
+ */
5208
+ Id: string | undefined;
5209
+ }
5210
+ /**
5211
+ * @public
5212
+ */
5213
+ export interface GetProfileHistoryRecordResponse {
5214
+ /**
5215
+ * <p>The unique identifier of the profile history record.</p>
5216
+ * @public
5217
+ */
5218
+ Id: string | undefined;
5219
+ /**
5220
+ * <p>The name of the profile object type.</p>
5221
+ * @public
5222
+ */
5223
+ ObjectTypeName: string | undefined;
5224
+ /**
5225
+ * <p>The timestamp of when the profile history record was created.</p>
5226
+ * @public
5227
+ */
5228
+ CreatedAt: Date | undefined;
5229
+ /**
5230
+ * <p>The timestamp of when the profile history record was last updated.</p>
5231
+ * @public
5232
+ */
5233
+ LastUpdatedAt?: Date | undefined;
5234
+ /**
5235
+ * <p>The action type of the profile history record.</p>
5236
+ * @public
5237
+ */
5238
+ ActionType: ActionType | undefined;
5239
+ /**
5240
+ * <p>The unique identifier of the profile object generated by the service.</p>
5241
+ * @public
5242
+ */
5243
+ ProfileObjectUniqueKey?: string | undefined;
5244
+ /**
5245
+ * <p>A string containing the customer profile, profile object, or profile key content.</p>
5246
+ * @public
5247
+ */
5248
+ Content?: string | undefined;
5249
+ /**
5250
+ * <p>The Amazon Resource Name (ARN) of the person or service principal who performed the action.</p>
5251
+ * @public
5252
+ */
5253
+ PerformedBy?: string | undefined;
5254
+ }
5171
5255
  /**
5172
5256
  * @public
5173
5257
  */
@@ -6807,6 +6891,103 @@ export interface ProfileAttributeValuesResponse {
6807
6891
  */
6808
6892
  StatusCode?: number | undefined;
6809
6893
  }
6894
+ /**
6895
+ * @public
6896
+ */
6897
+ export interface ListProfileHistoryRecordsRequest {
6898
+ /**
6899
+ * <p>The unique name of the domain for which to return profile history records.</p>
6900
+ * @public
6901
+ */
6902
+ DomainName: string | undefined;
6903
+ /**
6904
+ * <p>The identifier of the profile to be taken.</p>
6905
+ * @public
6906
+ */
6907
+ ProfileId: string | undefined;
6908
+ /**
6909
+ * <p>Applies a filter to include profile history records only with the specified <code>ObjectTypeName</code> value in the response.</p>
6910
+ * @public
6911
+ */
6912
+ ObjectTypeName?: string | undefined;
6913
+ /**
6914
+ * <p>The token for the next set of results. Use the value returned in the previous
6915
+ * response in the next request to retrieve the next set of results.</p>
6916
+ * @public
6917
+ */
6918
+ NextToken?: string | undefined;
6919
+ /**
6920
+ * <p>The maximum number of results to return per page.</p>
6921
+ * @public
6922
+ */
6923
+ MaxResults?: number | undefined;
6924
+ /**
6925
+ * <p>Applies a filter to include profile history records only with the specified <code>ActionType</code> value in the response.</p>
6926
+ * @public
6927
+ */
6928
+ ActionType?: ActionType | undefined;
6929
+ /**
6930
+ * <p>Applies a filter to include profile history records only with the specified <code>PerformedBy</code> value in the response. The <code>PerformedBy</code> value can be the Amazon Resource Name (ARN) of the person or service principal who performed the action.</p>
6931
+ * @public
6932
+ */
6933
+ PerformedBy?: string | undefined;
6934
+ }
6935
+ /**
6936
+ * <p>Contains profile history record metadata.</p>
6937
+ * @public
6938
+ */
6939
+ export interface ProfileHistoryRecord {
6940
+ /**
6941
+ * <p>The unique identifier of the profile history record.</p>
6942
+ * @public
6943
+ */
6944
+ Id: string | undefined;
6945
+ /**
6946
+ * <p>The name of the profile object type.</p>
6947
+ * @public
6948
+ */
6949
+ ObjectTypeName: string | undefined;
6950
+ /**
6951
+ * <p>The timestamp of when the profile history record was created.</p>
6952
+ * @public
6953
+ */
6954
+ CreatedAt: Date | undefined;
6955
+ /**
6956
+ * <p>The timestamp of when the profile history record was last updated.</p>
6957
+ * @public
6958
+ */
6959
+ LastUpdatedAt?: Date | undefined;
6960
+ /**
6961
+ * <p>The action type of the profile history record.</p>
6962
+ * @public
6963
+ */
6964
+ ActionType: ActionType | undefined;
6965
+ /**
6966
+ * <p>The unique identifier of the profile object generated by the service.</p>
6967
+ * @public
6968
+ */
6969
+ ProfileObjectUniqueKey?: string | undefined;
6970
+ /**
6971
+ * <p>The Amazon Resource Name (ARN) of the person or service principal who performed the action.</p>
6972
+ * @public
6973
+ */
6974
+ PerformedBy?: string | undefined;
6975
+ }
6976
+ /**
6977
+ * @public
6978
+ */
6979
+ export interface ListProfileHistoryRecordsResponse {
6980
+ /**
6981
+ * <p>The list of profile history records.</p>
6982
+ * @public
6983
+ */
6984
+ ProfileHistoryRecords?: ProfileHistoryRecord[] | undefined;
6985
+ /**
6986
+ * <p>If there are additional results, this is the token for the next set of results.</p>
6987
+ * @public
6988
+ */
6989
+ NextToken?: string | undefined;
6990
+ }
6810
6991
  /**
6811
6992
  * <p>The filter applied to <code>ListProfileObjects</code> response to include profile
6812
6993
  * objects with the specified index values.</p>
@@ -7446,188 +7627,6 @@ export interface FieldSourceProfileIds {
7446
7627
  */
7447
7628
  EngagementPreferences?: string | undefined;
7448
7629
  }
7449
- /**
7450
- * @public
7451
- */
7452
- export interface MergeProfilesRequest {
7453
- /**
7454
- * <p>The unique name of the domain.</p>
7455
- * @public
7456
- */
7457
- DomainName: string | undefined;
7458
- /**
7459
- * <p>The identifier of the profile to be taken.</p>
7460
- * @public
7461
- */
7462
- MainProfileId: string | undefined;
7463
- /**
7464
- * <p>The identifier of the profile to be merged into MainProfileId.</p>
7465
- * @public
7466
- */
7467
- ProfileIdsToBeMerged: string[] | undefined;
7468
- /**
7469
- * <p>The identifiers of the fields in the profile that has the information you want to apply
7470
- * to the merge. For example, say you want to merge EmailAddress from Profile1 into
7471
- * MainProfile. This would be the identifier of the EmailAddress field in Profile1. </p>
7472
- * @public
7473
- */
7474
- FieldSourceProfileIds?: FieldSourceProfileIds | undefined;
7475
- }
7476
- /**
7477
- * @public
7478
- */
7479
- export interface MergeProfilesResponse {
7480
- /**
7481
- * <p>A message that indicates the merge request is complete.</p>
7482
- * @public
7483
- */
7484
- Message?: string | undefined;
7485
- }
7486
- /**
7487
- * @public
7488
- */
7489
- export interface PutIntegrationRequest {
7490
- /**
7491
- * <p>The unique name of the domain.</p>
7492
- * @public
7493
- */
7494
- DomainName: string | undefined;
7495
- /**
7496
- * <p>The URI of the S3 bucket or any other type of data source.</p>
7497
- * @public
7498
- */
7499
- Uri?: string | undefined;
7500
- /**
7501
- * <p>The name of the profile object type.</p>
7502
- * @public
7503
- */
7504
- ObjectTypeName?: string | undefined;
7505
- /**
7506
- * <p>The tags used to organize, track, or control access for this resource.</p>
7507
- * @public
7508
- */
7509
- Tags?: Record<string, string> | undefined;
7510
- /**
7511
- * <p>The configuration that controls how Customer Profiles retrieves data from the
7512
- * source.</p>
7513
- * @public
7514
- */
7515
- FlowDefinition?: FlowDefinition | undefined;
7516
- /**
7517
- * <p>A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an <code>ObjectTypeName</code> (template) used to ingest the event.
7518
- * It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>,
7519
- * <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
7520
- * @public
7521
- */
7522
- ObjectTypeNames?: Record<string, string> | undefined;
7523
- /**
7524
- * <p>The Amazon Resource Name (ARN) of the IAM role. The Integration uses this role to make
7525
- * Customer Profiles requests on your behalf.</p>
7526
- * @public
7527
- */
7528
- RoleArn?: string | undefined;
7529
- /**
7530
- * <p>A list of unique names for active event triggers associated with the integration.</p>
7531
- * @public
7532
- */
7533
- EventTriggerNames?: string[] | undefined;
7534
- }
7535
- /**
7536
- * @public
7537
- */
7538
- export interface PutIntegrationResponse {
7539
- /**
7540
- * <p>The unique name of the domain.</p>
7541
- * @public
7542
- */
7543
- DomainName: string | undefined;
7544
- /**
7545
- * <p>The URI of the S3 bucket or any other type of data source.</p>
7546
- * @public
7547
- */
7548
- Uri: string | undefined;
7549
- /**
7550
- * <p>The name of the profile object type.</p>
7551
- * @public
7552
- */
7553
- ObjectTypeName?: string | undefined;
7554
- /**
7555
- * <p>The timestamp of when the domain was created.</p>
7556
- * @public
7557
- */
7558
- CreatedAt: Date | undefined;
7559
- /**
7560
- * <p>The timestamp of when the domain was most recently edited.</p>
7561
- * @public
7562
- */
7563
- LastUpdatedAt: Date | undefined;
7564
- /**
7565
- * <p>The tags used to organize, track, or control access for this resource.</p>
7566
- * @public
7567
- */
7568
- Tags?: Record<string, string> | undefined;
7569
- /**
7570
- * <p>A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an <code>ObjectTypeName</code> (template) used to ingest the event.
7571
- * It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>,
7572
- * <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
7573
- * @public
7574
- */
7575
- ObjectTypeNames?: Record<string, string> | undefined;
7576
- /**
7577
- * <p>Unique identifier for the workflow.</p>
7578
- * @public
7579
- */
7580
- WorkflowId?: string | undefined;
7581
- /**
7582
- * <p>Boolean that shows if the Flow that's associated with the Integration is created in
7583
- * Amazon Appflow, or with ObjectTypeName equals _unstructured via API/CLI in
7584
- * flowDefinition.</p>
7585
- * @public
7586
- */
7587
- IsUnstructured?: boolean | undefined;
7588
- /**
7589
- * <p>The Amazon Resource Name (ARN) of the IAM role. The Integration uses this role to make
7590
- * Customer Profiles requests on your behalf.</p>
7591
- * @public
7592
- */
7593
- RoleArn?: string | undefined;
7594
- /**
7595
- * <p>A list of unique names for active event triggers associated with the integration. This
7596
- * list would be empty if no Event Trigger is associated with the integration.</p>
7597
- * @public
7598
- */
7599
- EventTriggerNames?: string[] | undefined;
7600
- }
7601
- /**
7602
- * @public
7603
- */
7604
- export interface PutProfileObjectRequest {
7605
- /**
7606
- * <p>The name of the profile object type.</p>
7607
- * @public
7608
- */
7609
- ObjectTypeName: string | undefined;
7610
- /**
7611
- * <p>A string that is serialized from a JSON object.</p>
7612
- * @public
7613
- */
7614
- Object: string | undefined;
7615
- /**
7616
- * <p>The unique name of the domain.</p>
7617
- * @public
7618
- */
7619
- DomainName: string | undefined;
7620
- }
7621
- /**
7622
- * @public
7623
- */
7624
- export interface PutProfileObjectResponse {
7625
- /**
7626
- * <p>The unique identifier of the profile object generated by the service.</p>
7627
- * @public
7628
- */
7629
- ProfileObjectUniqueKey?: string | undefined;
7630
- }
7631
7630
  /**
7632
7631
  * @internal
7633
7632
  */
@@ -7780,6 +7779,10 @@ export declare const GetDomainLayoutResponseFilterSensitiveLog: (obj: GetDomainL
7780
7779
  * @internal
7781
7780
  */
7782
7781
  export declare const GetEventTriggerResponseFilterSensitiveLog: (obj: GetEventTriggerResponse) => any;
7782
+ /**
7783
+ * @internal
7784
+ */
7785
+ export declare const GetProfileHistoryRecordResponseFilterSensitiveLog: (obj: GetProfileHistoryRecordResponse) => any;
7783
7786
  /**
7784
7787
  * @internal
7785
7788
  */
@@ -7840,11 +7843,3 @@ export declare const SegmentDefinitionItemFilterSensitiveLog: (obj: SegmentDefin
7840
7843
  * @internal
7841
7844
  */
7842
7845
  export declare const ListSegmentDefinitionsResponseFilterSensitiveLog: (obj: ListSegmentDefinitionsResponse) => any;
7843
- /**
7844
- * @internal
7845
- */
7846
- export declare const PutIntegrationRequestFilterSensitiveLog: (obj: PutIntegrationRequest) => any;
7847
- /**
7848
- * @internal
7849
- */
7850
- export declare const PutProfileObjectRequestFilterSensitiveLog: (obj: PutProfileObjectRequest) => any;
@@ -1,4 +1,186 @@
1
- import { AdditionalSearchKey, AttributeDetails, Conditions, EngagementPreferences, EventTriggerCondition, EventTriggerLimits, Gender, LayoutType, MatchingRequest, MatchingResponse, ObjectTypeField, ObjectTypeKey, PartyType, Profile, ProfileType, Readiness, ReadinessStatus, RuleBasedMatchingRequest, RuleBasedMatchingResponse, Statistic } from "./models_0";
1
+ import { AdditionalSearchKey, AttributeDetails, Conditions, EngagementPreferences, EventTriggerCondition, EventTriggerLimits, FieldSourceProfileIds, FlowDefinition, Gender, LayoutType, MatchingRequest, MatchingResponse, ObjectTypeField, ObjectTypeKey, PartyType, Profile, ProfileType, Readiness, ReadinessStatus, RuleBasedMatchingRequest, RuleBasedMatchingResponse, Statistic } from "./models_0";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface MergeProfilesRequest {
6
+ /**
7
+ * <p>The unique name of the domain.</p>
8
+ * @public
9
+ */
10
+ DomainName: string | undefined;
11
+ /**
12
+ * <p>The identifier of the profile to be taken.</p>
13
+ * @public
14
+ */
15
+ MainProfileId: string | undefined;
16
+ /**
17
+ * <p>The identifier of the profile to be merged into MainProfileId.</p>
18
+ * @public
19
+ */
20
+ ProfileIdsToBeMerged: string[] | undefined;
21
+ /**
22
+ * <p>The identifiers of the fields in the profile that has the information you want to apply
23
+ * to the merge. For example, say you want to merge EmailAddress from Profile1 into
24
+ * MainProfile. This would be the identifier of the EmailAddress field in Profile1. </p>
25
+ * @public
26
+ */
27
+ FieldSourceProfileIds?: FieldSourceProfileIds | undefined;
28
+ }
29
+ /**
30
+ * @public
31
+ */
32
+ export interface MergeProfilesResponse {
33
+ /**
34
+ * <p>A message that indicates the merge request is complete.</p>
35
+ * @public
36
+ */
37
+ Message?: string | undefined;
38
+ }
39
+ /**
40
+ * @public
41
+ */
42
+ export interface PutIntegrationRequest {
43
+ /**
44
+ * <p>The unique name of the domain.</p>
45
+ * @public
46
+ */
47
+ DomainName: string | undefined;
48
+ /**
49
+ * <p>The URI of the S3 bucket or any other type of data source.</p>
50
+ * @public
51
+ */
52
+ Uri?: string | undefined;
53
+ /**
54
+ * <p>The name of the profile object type.</p>
55
+ * @public
56
+ */
57
+ ObjectTypeName?: string | undefined;
58
+ /**
59
+ * <p>The tags used to organize, track, or control access for this resource.</p>
60
+ * @public
61
+ */
62
+ Tags?: Record<string, string> | undefined;
63
+ /**
64
+ * <p>The configuration that controls how Customer Profiles retrieves data from the
65
+ * source.</p>
66
+ * @public
67
+ */
68
+ FlowDefinition?: FlowDefinition | undefined;
69
+ /**
70
+ * <p>A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an <code>ObjectTypeName</code> (template) used to ingest the event.
71
+ * It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>,
72
+ * <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
73
+ * @public
74
+ */
75
+ ObjectTypeNames?: Record<string, string> | undefined;
76
+ /**
77
+ * <p>The Amazon Resource Name (ARN) of the IAM role. The Integration uses this role to make
78
+ * Customer Profiles requests on your behalf.</p>
79
+ * @public
80
+ */
81
+ RoleArn?: string | undefined;
82
+ /**
83
+ * <p>A list of unique names for active event triggers associated with the integration.</p>
84
+ * @public
85
+ */
86
+ EventTriggerNames?: string[] | undefined;
87
+ }
88
+ /**
89
+ * @public
90
+ */
91
+ export interface PutIntegrationResponse {
92
+ /**
93
+ * <p>The unique name of the domain.</p>
94
+ * @public
95
+ */
96
+ DomainName: string | undefined;
97
+ /**
98
+ * <p>The URI of the S3 bucket or any other type of data source.</p>
99
+ * @public
100
+ */
101
+ Uri: string | undefined;
102
+ /**
103
+ * <p>The name of the profile object type.</p>
104
+ * @public
105
+ */
106
+ ObjectTypeName?: string | undefined;
107
+ /**
108
+ * <p>The timestamp of when the domain was created.</p>
109
+ * @public
110
+ */
111
+ CreatedAt: Date | undefined;
112
+ /**
113
+ * <p>The timestamp of when the domain was most recently edited.</p>
114
+ * @public
115
+ */
116
+ LastUpdatedAt: Date | undefined;
117
+ /**
118
+ * <p>The tags used to organize, track, or control access for this resource.</p>
119
+ * @public
120
+ */
121
+ Tags?: Record<string, string> | undefined;
122
+ /**
123
+ * <p>A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an <code>ObjectTypeName</code> (template) used to ingest the event.
124
+ * It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>,
125
+ * <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
126
+ * @public
127
+ */
128
+ ObjectTypeNames?: Record<string, string> | undefined;
129
+ /**
130
+ * <p>Unique identifier for the workflow.</p>
131
+ * @public
132
+ */
133
+ WorkflowId?: string | undefined;
134
+ /**
135
+ * <p>Boolean that shows if the Flow that's associated with the Integration is created in
136
+ * Amazon Appflow, or with ObjectTypeName equals _unstructured via API/CLI in
137
+ * flowDefinition.</p>
138
+ * @public
139
+ */
140
+ IsUnstructured?: boolean | undefined;
141
+ /**
142
+ * <p>The Amazon Resource Name (ARN) of the IAM role. The Integration uses this role to make
143
+ * Customer Profiles requests on your behalf.</p>
144
+ * @public
145
+ */
146
+ RoleArn?: string | undefined;
147
+ /**
148
+ * <p>A list of unique names for active event triggers associated with the integration. This
149
+ * list would be empty if no Event Trigger is associated with the integration.</p>
150
+ * @public
151
+ */
152
+ EventTriggerNames?: string[] | undefined;
153
+ }
154
+ /**
155
+ * @public
156
+ */
157
+ export interface PutProfileObjectRequest {
158
+ /**
159
+ * <p>The name of the profile object type.</p>
160
+ * @public
161
+ */
162
+ ObjectTypeName: string | undefined;
163
+ /**
164
+ * <p>A string that is serialized from a JSON object.</p>
165
+ * @public
166
+ */
167
+ Object: string | undefined;
168
+ /**
169
+ * <p>The unique name of the domain.</p>
170
+ * @public
171
+ */
172
+ DomainName: string | undefined;
173
+ }
174
+ /**
175
+ * @public
176
+ */
177
+ export interface PutProfileObjectResponse {
178
+ /**
179
+ * <p>The unique identifier of the profile object generated by the service.</p>
180
+ * @public
181
+ */
182
+ ProfileObjectUniqueKey?: string | undefined;
183
+ }
2
184
  /**
3
185
  * @public
4
186
  */
@@ -966,6 +1148,14 @@ export interface UpdateProfileResponse {
966
1148
  */
967
1149
  ProfileId: string | undefined;
968
1150
  }
1151
+ /**
1152
+ * @internal
1153
+ */
1154
+ export declare const PutIntegrationRequestFilterSensitiveLog: (obj: PutIntegrationRequest) => any;
1155
+ /**
1156
+ * @internal
1157
+ */
1158
+ export declare const PutProfileObjectRequestFilterSensitiveLog: (obj: PutProfileObjectRequest) => any;
969
1159
  /**
970
1160
  * @internal
971
1161
  */
@@ -37,6 +37,7 @@ import { GetEventTriggerCommandInput, GetEventTriggerCommandOutput } from "../co
37
37
  import { GetIdentityResolutionJobCommandInput, GetIdentityResolutionJobCommandOutput } from "../commands/GetIdentityResolutionJobCommand";
38
38
  import { GetIntegrationCommandInput, GetIntegrationCommandOutput } from "../commands/GetIntegrationCommand";
39
39
  import { GetMatchesCommandInput, GetMatchesCommandOutput } from "../commands/GetMatchesCommand";
40
+ import { GetProfileHistoryRecordCommandInput, GetProfileHistoryRecordCommandOutput } from "../commands/GetProfileHistoryRecordCommand";
40
41
  import { GetProfileObjectTypeCommandInput, GetProfileObjectTypeCommandOutput } from "../commands/GetProfileObjectTypeCommand";
41
42
  import { GetProfileObjectTypeTemplateCommandInput, GetProfileObjectTypeTemplateCommandOutput } from "../commands/GetProfileObjectTypeTemplateCommand";
42
43
  import { GetSegmentDefinitionCommandInput, GetSegmentDefinitionCommandOutput } from "../commands/GetSegmentDefinitionCommand";
@@ -59,6 +60,7 @@ import { ListIdentityResolutionJobsCommandInput, ListIdentityResolutionJobsComma
59
60
  import { ListIntegrationsCommandInput, ListIntegrationsCommandOutput } from "../commands/ListIntegrationsCommand";
60
61
  import { ListObjectTypeAttributesCommandInput, ListObjectTypeAttributesCommandOutput } from "../commands/ListObjectTypeAttributesCommand";
61
62
  import { ListProfileAttributeValuesCommandInput, ListProfileAttributeValuesCommandOutput } from "../commands/ListProfileAttributeValuesCommand";
63
+ import { ListProfileHistoryRecordsCommandInput, ListProfileHistoryRecordsCommandOutput } from "../commands/ListProfileHistoryRecordsCommand";
62
64
  import { ListProfileObjectsCommandInput, ListProfileObjectsCommandOutput } from "../commands/ListProfileObjectsCommand";
63
65
  import { ListProfileObjectTypesCommandInput, ListProfileObjectTypesCommandOutput } from "../commands/ListProfileObjectTypesCommand";
64
66
  import { ListProfileObjectTypeTemplatesCommandInput, ListProfileObjectTypeTemplatesCommandOutput } from "../commands/ListProfileObjectTypeTemplatesCommand";
@@ -229,6 +231,10 @@ export declare const se_GetIntegrationCommand: (input: GetIntegrationCommandInpu
229
231
  * serializeAws_restJson1GetMatchesCommand
230
232
  */
231
233
  export declare const se_GetMatchesCommand: (input: GetMatchesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
234
+ /**
235
+ * serializeAws_restJson1GetProfileHistoryRecordCommand
236
+ */
237
+ export declare const se_GetProfileHistoryRecordCommand: (input: GetProfileHistoryRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
232
238
  /**
233
239
  * serializeAws_restJson1GetProfileObjectTypeCommand
234
240
  */
@@ -317,6 +323,10 @@ export declare const se_ListObjectTypeAttributesCommand: (input: ListObjectTypeA
317
323
  * serializeAws_restJson1ListProfileAttributeValuesCommand
318
324
  */
319
325
  export declare const se_ListProfileAttributeValuesCommand: (input: ListProfileAttributeValuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
326
+ /**
327
+ * serializeAws_restJson1ListProfileHistoryRecordsCommand
328
+ */
329
+ export declare const se_ListProfileHistoryRecordsCommand: (input: ListProfileHistoryRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
320
330
  /**
321
331
  * serializeAws_restJson1ListProfileObjectsCommand
322
332
  */
@@ -553,6 +563,10 @@ export declare const de_GetIntegrationCommand: (output: __HttpResponse, context:
553
563
  * deserializeAws_restJson1GetMatchesCommand
554
564
  */
555
565
  export declare const de_GetMatchesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMatchesCommandOutput>;
566
+ /**
567
+ * deserializeAws_restJson1GetProfileHistoryRecordCommand
568
+ */
569
+ export declare const de_GetProfileHistoryRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProfileHistoryRecordCommandOutput>;
556
570
  /**
557
571
  * deserializeAws_restJson1GetProfileObjectTypeCommand
558
572
  */
@@ -641,6 +655,10 @@ export declare const de_ListObjectTypeAttributesCommand: (output: __HttpResponse
641
655
  * deserializeAws_restJson1ListProfileAttributeValuesCommand
642
656
  */
643
657
  export declare const de_ListProfileAttributeValuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProfileAttributeValuesCommandOutput>;
658
+ /**
659
+ * deserializeAws_restJson1ListProfileHistoryRecordsCommand
660
+ */
661
+ export declare const de_ListProfileHistoryRecordsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProfileHistoryRecordsCommandOutput>;
644
662
  /**
645
663
  * deserializeAws_restJson1ListProfileObjectsCommand
646
664
  */