@aws-sdk/client-customer-profiles 3.940.0 → 3.942.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.
- package/README.md +120 -0
- package/dist-cjs/index.js +1058 -84
- package/dist-es/CustomerProfiles.js +30 -0
- package/dist-es/commands/CreateRecommenderCommand.js +16 -0
- package/dist-es/commands/DeleteDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/DeleteRecommenderCommand.js +16 -0
- package/dist-es/commands/GetDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/GetObjectTypeAttributeStatisticsCommand.js +16 -0
- package/dist-es/commands/GetProfileRecommendationsCommand.js +16 -0
- package/dist-es/commands/GetRecommenderCommand.js +16 -0
- package/dist-es/commands/ListDomainObjectTypesCommand.js +16 -0
- package/dist-es/commands/ListObjectTypeAttributeValuesCommand.js +16 -0
- package/dist-es/commands/ListRecommenderRecipesCommand.js +16 -0
- package/dist-es/commands/ListRecommendersCommand.js +16 -0
- package/dist-es/commands/PutDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/StartRecommenderCommand.js +16 -0
- package/dist-es/commands/StopRecommenderCommand.js +16 -0
- package/dist-es/commands/UpdateRecommenderCommand.js +16 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/models/enums.js +41 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListDomainObjectTypesPaginator.js +4 -0
- package/dist-es/pagination/ListRecommenderRecipesPaginator.js +4 -0
- package/dist-es/pagination/ListRecommendersPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +792 -84
- package/dist-types/CustomerProfiles.d.ts +106 -0
- package/dist-types/CustomerProfilesClient.d.ts +17 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +10 -0
- package/dist-types/commands/CreateRecommenderCommand.d.ts +109 -0
- package/dist-types/commands/CreateSegmentDefinitionCommand.d.ts +1 -0
- package/dist-types/commands/CreateSegmentEstimateCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDomainObjectTypeCommand.d.ts +88 -0
- package/dist-types/commands/DeleteRecommenderCommand.d.ts +88 -0
- package/dist-types/commands/GetDomainCommand.d.ts +7 -0
- package/dist-types/commands/GetDomainObjectTypeCommand.d.ts +105 -0
- package/dist-types/commands/GetIntegrationCommand.d.ts +1 -0
- package/dist-types/commands/GetObjectTypeAttributeStatisticsCommand.d.ts +110 -0
- package/dist-types/commands/GetProfileRecommendationsCommand.d.ts +116 -0
- package/dist-types/commands/GetRecommenderCommand.d.ts +136 -0
- package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/GetSegmentMembershipCommand.d.ts +1 -0
- package/dist-types/commands/ListAccountIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/ListDomainObjectTypesCommand.d.ts +102 -0
- package/dist-types/commands/ListIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/ListObjectTypeAttributeValuesCommand.d.ts +99 -0
- package/dist-types/commands/ListRecommenderRecipesCommand.d.ts +93 -0
- package/dist-types/commands/ListRecommendersCommand.d.ts +133 -0
- package/dist-types/commands/ListSegmentDefinitionsCommand.d.ts +1 -0
- package/dist-types/commands/PutDomainObjectTypeCommand.d.ts +118 -0
- package/dist-types/commands/PutIntegrationCommand.d.ts +5 -3
- package/dist-types/commands/StartRecommenderCommand.d.ts +88 -0
- package/dist-types/commands/StopRecommenderCommand.d.ts +89 -0
- package/dist-types/commands/StopUploadJobCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainCommand.d.ts +11 -1
- package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEventTriggerCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRecommenderCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +97 -0
- package/dist-types/models/models_0.d.ts +1084 -738
- package/dist-types/models/models_1.d.ts +744 -0
- package/dist-types/pagination/ListDomainObjectTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommenderRecipesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommendersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +74 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +256 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +92 -2
- package/dist-types/ts3.4/commands/CreateRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetObjectTypeAttributeStatisticsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetProfileRecommendationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRecommenderCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDomainObjectTypesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListObjectTypeAttributeValuesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommenderRecipesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommendersCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PutDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartRecommenderCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StopRecommenderCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/StopUploadJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEventTriggerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +51 -0
- package/dist-types/ts3.4/models/models_0.d.ts +251 -142
- package/dist-types/ts3.4/models/models_1.d.ts +176 -0
- package/dist-types/ts3.4/pagination/ListDomainObjectTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommenderRecipesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommendersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +74 -0
- package/package.json +1 -1
|
@@ -0,0 +1,744 @@
|
|
|
1
|
+
import { Gender, LayoutType, PartyType, ProfileType, ReadinessStatus, Statistic } from "./enums";
|
|
2
|
+
import { AttributeDetails, Conditions, DataStoreRequest, DataStoreResponse, EngagementPreferences, EventTriggerCondition, EventTriggerLimits, MatchingRequest, MatchingResponse, Readiness, RecommenderConfig, RuleBasedMatchingRequest, RuleBasedMatchingResponse } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface StopRecommenderResponse {
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface StopUploadJobRequest {
|
|
12
|
+
/**
|
|
13
|
+
* <p>The unique name of the domain containing the upload job to stop. </p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
DomainName: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The unique identifier of the upload job to stop. </p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
JobId: string | undefined;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export interface StopUploadJobResponse {
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export interface TagResourceRequest {
|
|
32
|
+
/**
|
|
33
|
+
* <p>The ARN of the resource that you're adding tags to.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
resourceArn: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
tags: Record<string, string> | undefined;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export interface TagResourceResponse {
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
export interface UntagResourceRequest {
|
|
52
|
+
/**
|
|
53
|
+
* <p>The ARN of the resource from which you are removing tags.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
resourceArn: string | undefined;
|
|
57
|
+
/**
|
|
58
|
+
* <p>The list of tag keys to remove from the resource.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
tagKeys: string[] | undefined;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
export interface UntagResourceResponse {
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export interface UpdateCalculatedAttributeDefinitionRequest {
|
|
72
|
+
/**
|
|
73
|
+
* <p>The unique name of the domain.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
DomainName: string | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* <p>The unique name of the calculated attribute.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
CalculatedAttributeName: string | undefined;
|
|
82
|
+
/**
|
|
83
|
+
* <p>The display name of the calculated attribute.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
DisplayName?: string | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The description of the calculated attribute.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
Description?: string | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The conditions including range, object count, and threshold for the calculated
|
|
94
|
+
* attribute.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
Conditions?: Conditions | undefined;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export interface UpdateCalculatedAttributeDefinitionResponse {
|
|
103
|
+
/**
|
|
104
|
+
* <p>The unique name of the calculated attribute.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
CalculatedAttributeName?: string | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* <p>The display name of the calculated attribute.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
DisplayName?: string | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* <p>The description of the calculated attribute.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
Description?: string | undefined;
|
|
118
|
+
/**
|
|
119
|
+
* <p>The timestamp of when the calculated attribute definition was created.</p>
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
CreatedAt?: Date | undefined;
|
|
123
|
+
/**
|
|
124
|
+
* <p>The timestamp of when the calculated attribute definition was most recently
|
|
125
|
+
* edited.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
LastUpdatedAt?: Date | undefined;
|
|
129
|
+
/**
|
|
130
|
+
* <p>The aggregation operation to perform for the calculated attribute.</p>
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
Statistic?: Statistic | undefined;
|
|
134
|
+
/**
|
|
135
|
+
* <p>The conditions including range, object count, and threshold for the calculated
|
|
136
|
+
* attribute.</p>
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
Conditions?: Conditions | undefined;
|
|
140
|
+
/**
|
|
141
|
+
* <p>The mathematical expression and a list of attribute items specified in that
|
|
142
|
+
* expression.</p>
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
AttributeDetails?: AttributeDetails | undefined;
|
|
146
|
+
/**
|
|
147
|
+
* <p>Whether historical data ingested before the Calculated Attribute was created should be
|
|
148
|
+
* included in calculations.</p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
UseHistoricalData?: boolean | undefined;
|
|
152
|
+
/**
|
|
153
|
+
* <p>Status of the Calculated Attribute creation (whether all historical data has been
|
|
154
|
+
* indexed.)</p>
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
157
|
+
Status?: ReadinessStatus | undefined;
|
|
158
|
+
/**
|
|
159
|
+
* <p>Information indicating if the Calculated Attribute is ready for use by confirming all
|
|
160
|
+
* historical data has been processed and reflected.</p>
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
Readiness?: Readiness | undefined;
|
|
164
|
+
/**
|
|
165
|
+
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
168
|
+
Tags?: Record<string, string> | undefined;
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
173
|
+
export interface UpdateDomainRequest {
|
|
174
|
+
/**
|
|
175
|
+
* <p>The unique name of the domain.</p>
|
|
176
|
+
* @public
|
|
177
|
+
*/
|
|
178
|
+
DomainName: string | undefined;
|
|
179
|
+
/**
|
|
180
|
+
* <p>The default number of days until the data within the domain expires.</p>
|
|
181
|
+
* @public
|
|
182
|
+
*/
|
|
183
|
+
DefaultExpirationDays?: number | undefined;
|
|
184
|
+
/**
|
|
185
|
+
* <p>The default encryption key, which is an AWS managed key, is used when no specific type
|
|
186
|
+
* of encryption key is specified. It is used to encrypt all data before it is placed in
|
|
187
|
+
* permanent or semi-permanent storage. If specified as an empty string, it will clear any
|
|
188
|
+
* existing value.</p>
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
DefaultEncryptionKey?: string | undefined;
|
|
192
|
+
/**
|
|
193
|
+
* <p>The URL of the SQS dead letter queue, which is used for reporting errors associated with
|
|
194
|
+
* ingesting data from third party applications. If specified as an empty string, it will
|
|
195
|
+
* clear any existing value. You must set up a policy on the DeadLetterQueue for the
|
|
196
|
+
* SendMessage operation to enable Amazon Connect Customer Profiles to send messages to the
|
|
197
|
+
* DeadLetterQueue.</p>
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
200
|
+
DeadLetterQueueUrl?: string | undefined;
|
|
201
|
+
/**
|
|
202
|
+
* <p>The process of matching duplicate profiles. If <code>Matching</code> = <code>true</code>, Amazon Connect Customer Profiles starts a weekly
|
|
203
|
+
* batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every
|
|
204
|
+
* Saturday at 12AM UTC to detect duplicate profiles in your domains. </p>
|
|
205
|
+
* <p>After the Identity Resolution Job completes, use the
|
|
206
|
+
* <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html">GetMatches</a>
|
|
207
|
+
* API to return and review the results. Or, if you have configured <code>ExportingConfig</code> in the <code>MatchingRequest</code>, you can download the results from
|
|
208
|
+
* S3.</p>
|
|
209
|
+
* @public
|
|
210
|
+
*/
|
|
211
|
+
Matching?: MatchingRequest | undefined;
|
|
212
|
+
/**
|
|
213
|
+
* <p>The process of matching duplicate profiles using the rule-Based matching. If
|
|
214
|
+
* <code>RuleBasedMatching</code> = true, Amazon Connect Customer Profiles will start
|
|
215
|
+
* to match and merge your profiles according to your configuration in the
|
|
216
|
+
* <code>RuleBasedMatchingRequest</code>. You can use the <code>ListRuleBasedMatches</code>
|
|
217
|
+
* and <code>GetSimilarProfiles</code> API to return and review the results. Also, if you have
|
|
218
|
+
* configured <code>ExportingConfig</code> in the <code>RuleBasedMatchingRequest</code>, you
|
|
219
|
+
* can download the results from S3.</p>
|
|
220
|
+
* @public
|
|
221
|
+
*/
|
|
222
|
+
RuleBasedMatching?: RuleBasedMatchingRequest | undefined;
|
|
223
|
+
/**
|
|
224
|
+
* <p>Set to true to enabled data store for this domain.</p>
|
|
225
|
+
* @public
|
|
226
|
+
*/
|
|
227
|
+
DataStore?: DataStoreRequest | undefined;
|
|
228
|
+
/**
|
|
229
|
+
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
230
|
+
* @public
|
|
231
|
+
*/
|
|
232
|
+
Tags?: Record<string, string> | undefined;
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export interface UpdateDomainResponse {
|
|
238
|
+
/**
|
|
239
|
+
* <p>The unique name of the domain.</p>
|
|
240
|
+
* @public
|
|
241
|
+
*/
|
|
242
|
+
DomainName: string | undefined;
|
|
243
|
+
/**
|
|
244
|
+
* <p>The default number of days until the data within the domain expires.</p>
|
|
245
|
+
* @public
|
|
246
|
+
*/
|
|
247
|
+
DefaultExpirationDays?: number | undefined;
|
|
248
|
+
/**
|
|
249
|
+
* <p>The default encryption key, which is an AWS managed key, is used when no specific type
|
|
250
|
+
* of encryption key is specified. It is used to encrypt all data before it is placed in
|
|
251
|
+
* permanent or semi-permanent storage.</p>
|
|
252
|
+
* @public
|
|
253
|
+
*/
|
|
254
|
+
DefaultEncryptionKey?: string | undefined;
|
|
255
|
+
/**
|
|
256
|
+
* <p>The URL of the SQS dead letter queue, which is used for reporting errors associated with
|
|
257
|
+
* ingesting data from third party applications.</p>
|
|
258
|
+
* @public
|
|
259
|
+
*/
|
|
260
|
+
DeadLetterQueueUrl?: string | undefined;
|
|
261
|
+
/**
|
|
262
|
+
* <p>The process of matching duplicate profiles. If <code>Matching</code> = <code>true</code>, Amazon Connect Customer Profiles starts a weekly
|
|
263
|
+
* batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every
|
|
264
|
+
* Saturday at 12AM UTC to detect duplicate profiles in your domains. </p>
|
|
265
|
+
* <p>After the Identity Resolution Job completes, use the
|
|
266
|
+
* <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html">GetMatches</a>
|
|
267
|
+
* API to return and review the results. Or, if you have configured <code>ExportingConfig</code> in the <code>MatchingRequest</code>, you can download the results from
|
|
268
|
+
* S3.</p>
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
271
|
+
Matching?: MatchingResponse | undefined;
|
|
272
|
+
/**
|
|
273
|
+
* <p>The process of matching duplicate profiles using the rule-Based matching. If
|
|
274
|
+
* <code>RuleBasedMatching</code> = true, Amazon Connect Customer Profiles will start
|
|
275
|
+
* to match and merge your profiles according to your configuration in the
|
|
276
|
+
* <code>RuleBasedMatchingRequest</code>. You can use the <code>ListRuleBasedMatches</code>
|
|
277
|
+
* and <code>GetSimilarProfiles</code> API to return and review the results. Also, if you have
|
|
278
|
+
* configured <code>ExportingConfig</code> in the <code>RuleBasedMatchingRequest</code>, you
|
|
279
|
+
* can download the results from S3.</p>
|
|
280
|
+
* @public
|
|
281
|
+
*/
|
|
282
|
+
RuleBasedMatching?: RuleBasedMatchingResponse | undefined;
|
|
283
|
+
/**
|
|
284
|
+
* <p>The data store.</p>
|
|
285
|
+
* @public
|
|
286
|
+
*/
|
|
287
|
+
DataStore?: DataStoreResponse | undefined;
|
|
288
|
+
/**
|
|
289
|
+
* <p>The timestamp of when the domain was created.</p>
|
|
290
|
+
* @public
|
|
291
|
+
*/
|
|
292
|
+
CreatedAt: Date | undefined;
|
|
293
|
+
/**
|
|
294
|
+
* <p>The timestamp of when the domain was most recently edited.</p>
|
|
295
|
+
* @public
|
|
296
|
+
*/
|
|
297
|
+
LastUpdatedAt: Date | undefined;
|
|
298
|
+
/**
|
|
299
|
+
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
300
|
+
* @public
|
|
301
|
+
*/
|
|
302
|
+
Tags?: Record<string, string> | undefined;
|
|
303
|
+
}
|
|
304
|
+
/**
|
|
305
|
+
* @public
|
|
306
|
+
*/
|
|
307
|
+
export interface UpdateDomainLayoutRequest {
|
|
308
|
+
/**
|
|
309
|
+
* <p>The unique name of the domain.</p>
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
DomainName: string | undefined;
|
|
313
|
+
/**
|
|
314
|
+
* <p>The unique name of the layout.</p>
|
|
315
|
+
* @public
|
|
316
|
+
*/
|
|
317
|
+
LayoutDefinitionName: string | undefined;
|
|
318
|
+
/**
|
|
319
|
+
* <p>The description of the layout</p>
|
|
320
|
+
* @public
|
|
321
|
+
*/
|
|
322
|
+
Description?: string | undefined;
|
|
323
|
+
/**
|
|
324
|
+
* <p>The display name of the layout</p>
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
327
|
+
DisplayName?: string | undefined;
|
|
328
|
+
/**
|
|
329
|
+
* <p>If set to true for a layout, this layout will be used by default to view data. If set to
|
|
330
|
+
* false, then the layout will not be used by default, but it can be used to view data by
|
|
331
|
+
* explicitly selecting it in the console.</p>
|
|
332
|
+
* @public
|
|
333
|
+
*/
|
|
334
|
+
IsDefault?: boolean | undefined;
|
|
335
|
+
/**
|
|
336
|
+
* <p>The type of layout that can be used to view data under a Customer Profiles domain.</p>
|
|
337
|
+
* @public
|
|
338
|
+
*/
|
|
339
|
+
LayoutType?: LayoutType | undefined;
|
|
340
|
+
/**
|
|
341
|
+
* <p>A customizable layout that can be used to view data under a Customer Profiles domain.</p>
|
|
342
|
+
* @public
|
|
343
|
+
*/
|
|
344
|
+
Layout?: string | undefined;
|
|
345
|
+
}
|
|
346
|
+
/**
|
|
347
|
+
* @public
|
|
348
|
+
*/
|
|
349
|
+
export interface UpdateDomainLayoutResponse {
|
|
350
|
+
/**
|
|
351
|
+
* <p>The unique name of the layout.</p>
|
|
352
|
+
* @public
|
|
353
|
+
*/
|
|
354
|
+
LayoutDefinitionName?: string | undefined;
|
|
355
|
+
/**
|
|
356
|
+
* <p>The description of the layout</p>
|
|
357
|
+
* @public
|
|
358
|
+
*/
|
|
359
|
+
Description?: string | undefined;
|
|
360
|
+
/**
|
|
361
|
+
* <p>The display name of the layout</p>
|
|
362
|
+
* @public
|
|
363
|
+
*/
|
|
364
|
+
DisplayName?: string | undefined;
|
|
365
|
+
/**
|
|
366
|
+
* <p>If set to true for a layout, this layout will be used by default to view data. If set to
|
|
367
|
+
* false, then the layout will not be used by default, but it can be used to view data by
|
|
368
|
+
* explicitly selecting it in the console.</p>
|
|
369
|
+
* @public
|
|
370
|
+
*/
|
|
371
|
+
IsDefault?: boolean | undefined;
|
|
372
|
+
/**
|
|
373
|
+
* <p>The type of layout that can be used to view data under a Customer Profiles domain.</p>
|
|
374
|
+
* @public
|
|
375
|
+
*/
|
|
376
|
+
LayoutType?: LayoutType | undefined;
|
|
377
|
+
/**
|
|
378
|
+
* <p>A customizable layout that can be used to view data under a Customer Profiles domain.</p>
|
|
379
|
+
* @public
|
|
380
|
+
*/
|
|
381
|
+
Layout?: string | undefined;
|
|
382
|
+
/**
|
|
383
|
+
* <p>The version used to create layout.</p>
|
|
384
|
+
* @public
|
|
385
|
+
*/
|
|
386
|
+
Version?: string | undefined;
|
|
387
|
+
/**
|
|
388
|
+
* <p>The timestamp of when the layout was created.</p>
|
|
389
|
+
* @public
|
|
390
|
+
*/
|
|
391
|
+
CreatedAt?: Date | undefined;
|
|
392
|
+
/**
|
|
393
|
+
* <p>The timestamp of when the layout was most recently updated.</p>
|
|
394
|
+
* @public
|
|
395
|
+
*/
|
|
396
|
+
LastUpdatedAt?: Date | undefined;
|
|
397
|
+
/**
|
|
398
|
+
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
399
|
+
* @public
|
|
400
|
+
*/
|
|
401
|
+
Tags?: Record<string, string> | undefined;
|
|
402
|
+
}
|
|
403
|
+
/**
|
|
404
|
+
* @public
|
|
405
|
+
*/
|
|
406
|
+
export interface UpdateEventTriggerRequest {
|
|
407
|
+
/**
|
|
408
|
+
* <p>The unique name of the domain.</p>
|
|
409
|
+
* @public
|
|
410
|
+
*/
|
|
411
|
+
DomainName: string | undefined;
|
|
412
|
+
/**
|
|
413
|
+
* <p>The unique name of the event trigger.</p>
|
|
414
|
+
* @public
|
|
415
|
+
*/
|
|
416
|
+
EventTriggerName: string | undefined;
|
|
417
|
+
/**
|
|
418
|
+
* <p>The unique name of the object type.</p>
|
|
419
|
+
* @public
|
|
420
|
+
*/
|
|
421
|
+
ObjectTypeName?: string | undefined;
|
|
422
|
+
/**
|
|
423
|
+
* <p>The description of the event trigger.</p>
|
|
424
|
+
* @public
|
|
425
|
+
*/
|
|
426
|
+
Description?: string | undefined;
|
|
427
|
+
/**
|
|
428
|
+
* <p>A list of conditions that determine when an event should trigger the destination.</p>
|
|
429
|
+
* @public
|
|
430
|
+
*/
|
|
431
|
+
EventTriggerConditions?: EventTriggerCondition[] | undefined;
|
|
432
|
+
/**
|
|
433
|
+
* <p>The destination is triggered only for profiles that meet the criteria of a segment
|
|
434
|
+
* definition.</p>
|
|
435
|
+
* @public
|
|
436
|
+
*/
|
|
437
|
+
SegmentFilter?: string | undefined;
|
|
438
|
+
/**
|
|
439
|
+
* <p>Defines limits controlling whether an event triggers the destination, based on ingestion
|
|
440
|
+
* latency and the number of invocations per profile over specific time periods.</p>
|
|
441
|
+
* @public
|
|
442
|
+
*/
|
|
443
|
+
EventTriggerLimits?: EventTriggerLimits | undefined;
|
|
444
|
+
}
|
|
445
|
+
/**
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
448
|
+
export interface UpdateEventTriggerResponse {
|
|
449
|
+
/**
|
|
450
|
+
* <p>The unique name of the event trigger.</p>
|
|
451
|
+
* @public
|
|
452
|
+
*/
|
|
453
|
+
EventTriggerName?: string | undefined;
|
|
454
|
+
/**
|
|
455
|
+
* <p>The unique name of the object type.</p>
|
|
456
|
+
* @public
|
|
457
|
+
*/
|
|
458
|
+
ObjectTypeName?: string | undefined;
|
|
459
|
+
/**
|
|
460
|
+
* <p>The description of the event trigger.</p>
|
|
461
|
+
* @public
|
|
462
|
+
*/
|
|
463
|
+
Description?: string | undefined;
|
|
464
|
+
/**
|
|
465
|
+
* <p>A list of conditions that determine when an event should trigger the destination.</p>
|
|
466
|
+
* @public
|
|
467
|
+
*/
|
|
468
|
+
EventTriggerConditions?: EventTriggerCondition[] | undefined;
|
|
469
|
+
/**
|
|
470
|
+
* <p>The destination is triggered only for profiles that meet the criteria of a segment
|
|
471
|
+
* definition.</p>
|
|
472
|
+
* @public
|
|
473
|
+
*/
|
|
474
|
+
SegmentFilter?: string | undefined;
|
|
475
|
+
/**
|
|
476
|
+
* <p>Defines limits controlling whether an event triggers the destination, based on ingestion
|
|
477
|
+
* latency and the number of invocations per profile over specific time periods.</p>
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
480
|
+
EventTriggerLimits?: EventTriggerLimits | undefined;
|
|
481
|
+
/**
|
|
482
|
+
* <p>The timestamp of when the event trigger was created.</p>
|
|
483
|
+
* @public
|
|
484
|
+
*/
|
|
485
|
+
CreatedAt?: Date | undefined;
|
|
486
|
+
/**
|
|
487
|
+
* <p>The timestamp of when the event trigger was most recently updated.</p>
|
|
488
|
+
* @public
|
|
489
|
+
*/
|
|
490
|
+
LastUpdatedAt?: Date | undefined;
|
|
491
|
+
/**
|
|
492
|
+
* <p>An array of key-value pairs to apply to this resource.</p>
|
|
493
|
+
* @public
|
|
494
|
+
*/
|
|
495
|
+
Tags?: Record<string, string> | undefined;
|
|
496
|
+
}
|
|
497
|
+
/**
|
|
498
|
+
* <p>Updates associated with the address properties of a customer profile.</p>
|
|
499
|
+
* @public
|
|
500
|
+
*/
|
|
501
|
+
export interface UpdateAddress {
|
|
502
|
+
/**
|
|
503
|
+
* <p>The first line of a customer address.</p>
|
|
504
|
+
* @public
|
|
505
|
+
*/
|
|
506
|
+
Address1?: string | undefined;
|
|
507
|
+
/**
|
|
508
|
+
* <p>The second line of a customer address.</p>
|
|
509
|
+
* @public
|
|
510
|
+
*/
|
|
511
|
+
Address2?: string | undefined;
|
|
512
|
+
/**
|
|
513
|
+
* <p>The third line of a customer address.</p>
|
|
514
|
+
* @public
|
|
515
|
+
*/
|
|
516
|
+
Address3?: string | undefined;
|
|
517
|
+
/**
|
|
518
|
+
* <p>The fourth line of a customer address.</p>
|
|
519
|
+
* @public
|
|
520
|
+
*/
|
|
521
|
+
Address4?: string | undefined;
|
|
522
|
+
/**
|
|
523
|
+
* <p>The city in which a customer lives.</p>
|
|
524
|
+
* @public
|
|
525
|
+
*/
|
|
526
|
+
City?: string | undefined;
|
|
527
|
+
/**
|
|
528
|
+
* <p>The county in which a customer lives.</p>
|
|
529
|
+
* @public
|
|
530
|
+
*/
|
|
531
|
+
County?: string | undefined;
|
|
532
|
+
/**
|
|
533
|
+
* <p>The state in which a customer lives.</p>
|
|
534
|
+
* @public
|
|
535
|
+
*/
|
|
536
|
+
State?: string | undefined;
|
|
537
|
+
/**
|
|
538
|
+
* <p>The province in which a customer lives.</p>
|
|
539
|
+
* @public
|
|
540
|
+
*/
|
|
541
|
+
Province?: string | undefined;
|
|
542
|
+
/**
|
|
543
|
+
* <p>The country in which a customer lives.</p>
|
|
544
|
+
* @public
|
|
545
|
+
*/
|
|
546
|
+
Country?: string | undefined;
|
|
547
|
+
/**
|
|
548
|
+
* <p>The postal code of a customer address.</p>
|
|
549
|
+
* @public
|
|
550
|
+
*/
|
|
551
|
+
PostalCode?: string | undefined;
|
|
552
|
+
}
|
|
553
|
+
/**
|
|
554
|
+
* @public
|
|
555
|
+
*/
|
|
556
|
+
export interface UpdateProfileRequest {
|
|
557
|
+
/**
|
|
558
|
+
* <p>The unique name of the domain.</p>
|
|
559
|
+
* @public
|
|
560
|
+
*/
|
|
561
|
+
DomainName: string | undefined;
|
|
562
|
+
/**
|
|
563
|
+
* <p>The unique identifier of a customer profile.</p>
|
|
564
|
+
* @public
|
|
565
|
+
*/
|
|
566
|
+
ProfileId: string | undefined;
|
|
567
|
+
/**
|
|
568
|
+
* <p>Any additional information relevant to the customer’s profile.</p>
|
|
569
|
+
* @public
|
|
570
|
+
*/
|
|
571
|
+
AdditionalInformation?: string | undefined;
|
|
572
|
+
/**
|
|
573
|
+
* <p>An account number that you have assigned to the customer.</p>
|
|
574
|
+
* @public
|
|
575
|
+
*/
|
|
576
|
+
AccountNumber?: string | undefined;
|
|
577
|
+
/**
|
|
578
|
+
* <p>The type of profile used to describe the customer.</p>
|
|
579
|
+
*
|
|
580
|
+
* @deprecated deprecated
|
|
581
|
+
* @public
|
|
582
|
+
*/
|
|
583
|
+
PartyType?: PartyType | undefined;
|
|
584
|
+
/**
|
|
585
|
+
* <p>The name of the customer’s business.</p>
|
|
586
|
+
* @public
|
|
587
|
+
*/
|
|
588
|
+
BusinessName?: string | undefined;
|
|
589
|
+
/**
|
|
590
|
+
* <p>The customer’s first name.</p>
|
|
591
|
+
* @public
|
|
592
|
+
*/
|
|
593
|
+
FirstName?: string | undefined;
|
|
594
|
+
/**
|
|
595
|
+
* <p>The customer’s middle name.</p>
|
|
596
|
+
* @public
|
|
597
|
+
*/
|
|
598
|
+
MiddleName?: string | undefined;
|
|
599
|
+
/**
|
|
600
|
+
* <p>The customer’s last name.</p>
|
|
601
|
+
* @public
|
|
602
|
+
*/
|
|
603
|
+
LastName?: string | undefined;
|
|
604
|
+
/**
|
|
605
|
+
* <p>The customer’s birth date. </p>
|
|
606
|
+
* @public
|
|
607
|
+
*/
|
|
608
|
+
BirthDate?: string | undefined;
|
|
609
|
+
/**
|
|
610
|
+
* <p>The gender with which the customer identifies. </p>
|
|
611
|
+
*
|
|
612
|
+
* @deprecated deprecated
|
|
613
|
+
* @public
|
|
614
|
+
*/
|
|
615
|
+
Gender?: Gender | undefined;
|
|
616
|
+
/**
|
|
617
|
+
* <p>The customer’s phone number, which has not been specified as a mobile, home, or business
|
|
618
|
+
* number. </p>
|
|
619
|
+
* @public
|
|
620
|
+
*/
|
|
621
|
+
PhoneNumber?: string | undefined;
|
|
622
|
+
/**
|
|
623
|
+
* <p>The customer’s mobile phone number.</p>
|
|
624
|
+
* @public
|
|
625
|
+
*/
|
|
626
|
+
MobilePhoneNumber?: string | undefined;
|
|
627
|
+
/**
|
|
628
|
+
* <p>The customer’s home phone number.</p>
|
|
629
|
+
* @public
|
|
630
|
+
*/
|
|
631
|
+
HomePhoneNumber?: string | undefined;
|
|
632
|
+
/**
|
|
633
|
+
* <p>The customer’s business phone number.</p>
|
|
634
|
+
* @public
|
|
635
|
+
*/
|
|
636
|
+
BusinessPhoneNumber?: string | undefined;
|
|
637
|
+
/**
|
|
638
|
+
* <p>The customer’s email address, which has not been specified as a personal or business
|
|
639
|
+
* address. </p>
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
642
|
+
EmailAddress?: string | undefined;
|
|
643
|
+
/**
|
|
644
|
+
* <p>The customer’s personal email address.</p>
|
|
645
|
+
* @public
|
|
646
|
+
*/
|
|
647
|
+
PersonalEmailAddress?: string | undefined;
|
|
648
|
+
/**
|
|
649
|
+
* <p>The customer’s business email address.</p>
|
|
650
|
+
* @public
|
|
651
|
+
*/
|
|
652
|
+
BusinessEmailAddress?: string | undefined;
|
|
653
|
+
/**
|
|
654
|
+
* <p>A generic address associated with the customer that is not mailing, shipping, or
|
|
655
|
+
* billing.</p>
|
|
656
|
+
* @public
|
|
657
|
+
*/
|
|
658
|
+
Address?: UpdateAddress | undefined;
|
|
659
|
+
/**
|
|
660
|
+
* <p>The customer’s shipping address.</p>
|
|
661
|
+
* @public
|
|
662
|
+
*/
|
|
663
|
+
ShippingAddress?: UpdateAddress | undefined;
|
|
664
|
+
/**
|
|
665
|
+
* <p>The customer’s mailing address.</p>
|
|
666
|
+
* @public
|
|
667
|
+
*/
|
|
668
|
+
MailingAddress?: UpdateAddress | undefined;
|
|
669
|
+
/**
|
|
670
|
+
* <p>The customer’s billing address.</p>
|
|
671
|
+
* @public
|
|
672
|
+
*/
|
|
673
|
+
BillingAddress?: UpdateAddress | undefined;
|
|
674
|
+
/**
|
|
675
|
+
* <p>A key value pair of attributes of a customer profile.</p>
|
|
676
|
+
* @public
|
|
677
|
+
*/
|
|
678
|
+
Attributes?: Record<string, string> | undefined;
|
|
679
|
+
/**
|
|
680
|
+
* <p>An alternative to <code>PartyType</code> which accepts any string as input.</p>
|
|
681
|
+
* @public
|
|
682
|
+
*/
|
|
683
|
+
PartyTypeString?: string | undefined;
|
|
684
|
+
/**
|
|
685
|
+
* <p>An alternative to <code>Gender</code> which accepts any string as input.</p>
|
|
686
|
+
* @public
|
|
687
|
+
*/
|
|
688
|
+
GenderString?: string | undefined;
|
|
689
|
+
/**
|
|
690
|
+
* <p>Determines the type of the profile.</p>
|
|
691
|
+
* @public
|
|
692
|
+
*/
|
|
693
|
+
ProfileType?: ProfileType | undefined;
|
|
694
|
+
/**
|
|
695
|
+
* <p>Object that defines users preferred methods of engagement.</p>
|
|
696
|
+
* @public
|
|
697
|
+
*/
|
|
698
|
+
EngagementPreferences?: EngagementPreferences | undefined;
|
|
699
|
+
}
|
|
700
|
+
/**
|
|
701
|
+
* @public
|
|
702
|
+
*/
|
|
703
|
+
export interface UpdateProfileResponse {
|
|
704
|
+
/**
|
|
705
|
+
* <p>The unique identifier of a customer profile.</p>
|
|
706
|
+
* @public
|
|
707
|
+
*/
|
|
708
|
+
ProfileId: string | undefined;
|
|
709
|
+
}
|
|
710
|
+
/**
|
|
711
|
+
* @public
|
|
712
|
+
*/
|
|
713
|
+
export interface UpdateRecommenderRequest {
|
|
714
|
+
/**
|
|
715
|
+
* <p>The unique name of the domain.</p>
|
|
716
|
+
* @public
|
|
717
|
+
*/
|
|
718
|
+
DomainName: string | undefined;
|
|
719
|
+
/**
|
|
720
|
+
* <p>The name of the recommender to update.</p>
|
|
721
|
+
* @public
|
|
722
|
+
*/
|
|
723
|
+
RecommenderName: string | undefined;
|
|
724
|
+
/**
|
|
725
|
+
* <p>The new description to assign to the recommender.</p>
|
|
726
|
+
* @public
|
|
727
|
+
*/
|
|
728
|
+
Description?: string | undefined;
|
|
729
|
+
/**
|
|
730
|
+
* <p>The new configuration settings to apply to the recommender, including updated parameters and settings that define its behavior.</p>
|
|
731
|
+
* @public
|
|
732
|
+
*/
|
|
733
|
+
RecommenderConfig?: RecommenderConfig | undefined;
|
|
734
|
+
}
|
|
735
|
+
/**
|
|
736
|
+
* @public
|
|
737
|
+
*/
|
|
738
|
+
export interface UpdateRecommenderResponse {
|
|
739
|
+
/**
|
|
740
|
+
* <p>The name of the recommender that was updated.</p>
|
|
741
|
+
* @public
|
|
742
|
+
*/
|
|
743
|
+
RecommenderName: string | undefined;
|
|
744
|
+
}
|