@aws-sdk/client-customer-profiles 3.296.0 → 3.297.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 (43) hide show
  1. package/dist-types/CustomerProfiles.d.ts +39 -0
  2. package/dist-types/CustomerProfilesClient.d.ts +24 -4
  3. package/dist-types/commands/AddProfileKeyCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateDomainCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateIntegrationWorkflowCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateProfileCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteDomainCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteIntegrationCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteProfileCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteProfileKeyCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteProfileObjectCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteProfileObjectTypeCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteWorkflowCommand.d.ts +16 -0
  14. package/dist-types/commands/GetAutoMergingPreviewCommand.d.ts +16 -0
  15. package/dist-types/commands/GetDomainCommand.d.ts +16 -0
  16. package/dist-types/commands/GetIdentityResolutionJobCommand.d.ts +16 -0
  17. package/dist-types/commands/GetIntegrationCommand.d.ts +16 -0
  18. package/dist-types/commands/GetMatchesCommand.d.ts +16 -0
  19. package/dist-types/commands/GetProfileObjectTypeCommand.d.ts +16 -0
  20. package/dist-types/commands/GetProfileObjectTypeTemplateCommand.d.ts +16 -0
  21. package/dist-types/commands/GetWorkflowCommand.d.ts +16 -0
  22. package/dist-types/commands/GetWorkflowStepsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListAccountIntegrationsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListIdentityResolutionJobsCommand.d.ts +16 -0
  26. package/dist-types/commands/ListIntegrationsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListProfileObjectTypeTemplatesCommand.d.ts +16 -0
  28. package/dist-types/commands/ListProfileObjectTypesCommand.d.ts +16 -0
  29. package/dist-types/commands/ListProfileObjectsCommand.d.ts +16 -0
  30. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  31. package/dist-types/commands/ListWorkflowsCommand.d.ts +16 -0
  32. package/dist-types/commands/MergeProfilesCommand.d.ts +16 -0
  33. package/dist-types/commands/PutIntegrationCommand.d.ts +16 -0
  34. package/dist-types/commands/PutProfileObjectCommand.d.ts +16 -0
  35. package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +16 -0
  36. package/dist-types/commands/SearchProfilesCommand.d.ts +16 -0
  37. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  38. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdateDomainCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateProfileCommand.d.ts +16 -0
  41. package/dist-types/models/CustomerProfilesServiceException.d.ts +2 -0
  42. package/dist-types/models/models_0.d.ts +345 -0
  43. package/package.json +3 -3
@@ -39,6 +39,7 @@ import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/
39
39
  import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "./commands/UpdateProfileCommand";
40
40
  import { CustomerProfilesClient } from "./CustomerProfilesClient";
41
41
  /**
42
+ * @public
42
43
  * <fullname>Amazon Connect Customer Profiles</fullname>
43
44
  * <p>Amazon Connect Customer Profiles is a unified customer profile for your contact center that has
44
45
  * pre-built connectors powered by AppFlow that make it easy to combine customer information
@@ -48,6 +49,7 @@ import { CustomerProfilesClient } from "./CustomerProfilesClient";
48
49
  */
49
50
  export declare class CustomerProfiles extends CustomerProfilesClient {
50
51
  /**
52
+ * @public
51
53
  * <p>Associates a new key value with a specific profile, such as a Contact Record
52
54
  * ContactId.</p>
53
55
  * <p>A profile object can have a single unique key and any number of additional keys that can
@@ -57,6 +59,7 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
57
59
  addProfileKey(args: AddProfileKeyCommandInput, cb: (err: any, data?: AddProfileKeyCommandOutput) => void): void;
58
60
  addProfileKey(args: AddProfileKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddProfileKeyCommandOutput) => void): void;
59
61
  /**
62
+ * @public
60
63
  * <p>Creates a domain, which is a container for all customer data, such as customer profile
61
64
  * attributes, object types, profile keys, and encryption keys. You can create multiple
62
65
  * domains, and each domain can have multiple third-party integrations.</p>
@@ -72,6 +75,7 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
72
75
  createDomain(args: CreateDomainCommandInput, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
73
76
  createDomain(args: CreateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
74
77
  /**
78
+ * @public
75
79
  * <p>
76
80
  * Creates an integration workflow. An integration workflow is an async process which ingests historic data and sets up an integration for ongoing updates. The supported Amazon AppFlow sources are Salesforce, ServiceNow, and Marketo.
77
81
  * </p>
@@ -80,6 +84,7 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
80
84
  createIntegrationWorkflow(args: CreateIntegrationWorkflowCommandInput, cb: (err: any, data?: CreateIntegrationWorkflowCommandOutput) => void): void;
81
85
  createIntegrationWorkflow(args: CreateIntegrationWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIntegrationWorkflowCommandOutput) => void): void;
82
86
  /**
87
+ * @public
83
88
  * <p>Creates a standard profile.</p>
84
89
  * <p>A standard profile represents the following attributes for a customer profile in a
85
90
  * domain.</p>
@@ -88,6 +93,7 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
88
93
  createProfile(args: CreateProfileCommandInput, cb: (err: any, data?: CreateProfileCommandOutput) => void): void;
89
94
  createProfile(args: CreateProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProfileCommandOutput) => void): void;
90
95
  /**
96
+ * @public
91
97
  * <p>Deletes a specific domain and all of its customer data, such as customer profile
92
98
  * attributes and their related objects.</p>
93
99
  */
@@ -95,30 +101,35 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
95
101
  deleteDomain(args: DeleteDomainCommandInput, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
96
102
  deleteDomain(args: DeleteDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
97
103
  /**
104
+ * @public
98
105
  * <p>Removes an integration from a specific domain.</p>
99
106
  */
100
107
  deleteIntegration(args: DeleteIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIntegrationCommandOutput>;
101
108
  deleteIntegration(args: DeleteIntegrationCommandInput, cb: (err: any, data?: DeleteIntegrationCommandOutput) => void): void;
102
109
  deleteIntegration(args: DeleteIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntegrationCommandOutput) => void): void;
103
110
  /**
111
+ * @public
104
112
  * <p>Deletes the standard customer profile and all data pertaining to the profile.</p>
105
113
  */
106
114
  deleteProfile(args: DeleteProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProfileCommandOutput>;
107
115
  deleteProfile(args: DeleteProfileCommandInput, cb: (err: any, data?: DeleteProfileCommandOutput) => void): void;
108
116
  deleteProfile(args: DeleteProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProfileCommandOutput) => void): void;
109
117
  /**
118
+ * @public
110
119
  * <p>Removes a searchable key from a customer profile.</p>
111
120
  */
112
121
  deleteProfileKey(args: DeleteProfileKeyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProfileKeyCommandOutput>;
113
122
  deleteProfileKey(args: DeleteProfileKeyCommandInput, cb: (err: any, data?: DeleteProfileKeyCommandOutput) => void): void;
114
123
  deleteProfileKey(args: DeleteProfileKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProfileKeyCommandOutput) => void): void;
115
124
  /**
125
+ * @public
116
126
  * <p>Removes an object associated with a profile of a given ProfileObjectType.</p>
117
127
  */
118
128
  deleteProfileObject(args: DeleteProfileObjectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProfileObjectCommandOutput>;
119
129
  deleteProfileObject(args: DeleteProfileObjectCommandInput, cb: (err: any, data?: DeleteProfileObjectCommandOutput) => void): void;
120
130
  deleteProfileObject(args: DeleteProfileObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProfileObjectCommandOutput) => void): void;
121
131
  /**
132
+ * @public
122
133
  * <p>Removes a ProfileObjectType from a specific domain as well as removes all the
123
134
  * ProfileObjects of that type. It also disables integrations from this specific
124
135
  * ProfileObjectType. In addition, it scrubs all of the fields of the standard profile that
@@ -128,12 +139,14 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
128
139
  deleteProfileObjectType(args: DeleteProfileObjectTypeCommandInput, cb: (err: any, data?: DeleteProfileObjectTypeCommandOutput) => void): void;
129
140
  deleteProfileObjectType(args: DeleteProfileObjectTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProfileObjectTypeCommandOutput) => void): void;
130
141
  /**
142
+ * @public
131
143
  * <p>Deletes the specified workflow and all its corresponding resources. This is an async process.</p>
132
144
  */
133
145
  deleteWorkflow(args: DeleteWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkflowCommandOutput>;
134
146
  deleteWorkflow(args: DeleteWorkflowCommandInput, cb: (err: any, data?: DeleteWorkflowCommandOutput) => void): void;
135
147
  deleteWorkflow(args: DeleteWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkflowCommandOutput) => void): void;
136
148
  /**
149
+ * @public
137
150
  * <p>Tests the auto-merging settings of your Identity Resolution Job without merging your data. It randomly
138
151
  * selects a sample of matching groups from the existing matching results, and applies the
139
152
  * automerging settings that you provided. You can then view the number of profiles in the
@@ -152,12 +165,14 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
152
165
  getAutoMergingPreview(args: GetAutoMergingPreviewCommandInput, cb: (err: any, data?: GetAutoMergingPreviewCommandOutput) => void): void;
153
166
  getAutoMergingPreview(args: GetAutoMergingPreviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAutoMergingPreviewCommandOutput) => void): void;
154
167
  /**
168
+ * @public
155
169
  * <p>Returns information about a specific domain.</p>
156
170
  */
157
171
  getDomain(args: GetDomainCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainCommandOutput>;
158
172
  getDomain(args: GetDomainCommandInput, cb: (err: any, data?: GetDomainCommandOutput) => void): void;
159
173
  getDomain(args: GetDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainCommandOutput) => void): void;
160
174
  /**
175
+ * @public
161
176
  * <p>Returns information about an Identity Resolution Job in a specific domain. </p>
162
177
  * <p>Identity Resolution Jobs are set up using the Amazon Connect admin console. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/use-identity-resolution.html">Use
163
178
  * Identity Resolution to consolidate similar profiles</a>.</p>
@@ -166,12 +181,14 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
166
181
  getIdentityResolutionJob(args: GetIdentityResolutionJobCommandInput, cb: (err: any, data?: GetIdentityResolutionJobCommandOutput) => void): void;
167
182
  getIdentityResolutionJob(args: GetIdentityResolutionJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityResolutionJobCommandOutput) => void): void;
168
183
  /**
184
+ * @public
169
185
  * <p>Returns an integration for a domain.</p>
170
186
  */
171
187
  getIntegration(args: GetIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<GetIntegrationCommandOutput>;
172
188
  getIntegration(args: GetIntegrationCommandInput, cb: (err: any, data?: GetIntegrationCommandOutput) => void): void;
173
189
  getIntegration(args: GetIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIntegrationCommandOutput) => void): void;
174
190
  /**
191
+ * @public
175
192
  * <p>Before calling this API, use <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_CreateDomain.html">CreateDomain</a> or
176
193
  * <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_UpdateDomain.html">UpdateDomain</a> to
177
194
  * enable identity resolution: set <code>Matching</code> to true.</p>
@@ -222,12 +239,14 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
222
239
  getMatches(args: GetMatchesCommandInput, cb: (err: any, data?: GetMatchesCommandOutput) => void): void;
223
240
  getMatches(args: GetMatchesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMatchesCommandOutput) => void): void;
224
241
  /**
242
+ * @public
225
243
  * <p>Returns the object types for a specific domain.</p>
226
244
  */
227
245
  getProfileObjectType(args: GetProfileObjectTypeCommandInput, options?: __HttpHandlerOptions): Promise<GetProfileObjectTypeCommandOutput>;
228
246
  getProfileObjectType(args: GetProfileObjectTypeCommandInput, cb: (err: any, data?: GetProfileObjectTypeCommandOutput) => void): void;
229
247
  getProfileObjectType(args: GetProfileObjectTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProfileObjectTypeCommandOutput) => void): void;
230
248
  /**
249
+ * @public
231
250
  * <p>Returns the template information for a specific object type.</p>
232
251
  * <p>A template is a predefined ProfileObjectType, such as “Salesforce-Account” or
233
252
  * “Salesforce-Contact.” When a user sends a ProfileObject, using the PutProfileObject API,
@@ -238,30 +257,35 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
238
257
  getProfileObjectTypeTemplate(args: GetProfileObjectTypeTemplateCommandInput, cb: (err: any, data?: GetProfileObjectTypeTemplateCommandOutput) => void): void;
239
258
  getProfileObjectTypeTemplate(args: GetProfileObjectTypeTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProfileObjectTypeTemplateCommandOutput) => void): void;
240
259
  /**
260
+ * @public
241
261
  * <p>Get details of specified workflow.</p>
242
262
  */
243
263
  getWorkflow(args: GetWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkflowCommandOutput>;
244
264
  getWorkflow(args: GetWorkflowCommandInput, cb: (err: any, data?: GetWorkflowCommandOutput) => void): void;
245
265
  getWorkflow(args: GetWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkflowCommandOutput) => void): void;
246
266
  /**
267
+ * @public
247
268
  * <p>Get granular list of steps in workflow.</p>
248
269
  */
249
270
  getWorkflowSteps(args: GetWorkflowStepsCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkflowStepsCommandOutput>;
250
271
  getWorkflowSteps(args: GetWorkflowStepsCommandInput, cb: (err: any, data?: GetWorkflowStepsCommandOutput) => void): void;
251
272
  getWorkflowSteps(args: GetWorkflowStepsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkflowStepsCommandOutput) => void): void;
252
273
  /**
274
+ * @public
253
275
  * <p>Lists all of the integrations associated to a specific URI in the AWS account.</p>
254
276
  */
255
277
  listAccountIntegrations(args: ListAccountIntegrationsCommandInput, options?: __HttpHandlerOptions): Promise<ListAccountIntegrationsCommandOutput>;
256
278
  listAccountIntegrations(args: ListAccountIntegrationsCommandInput, cb: (err: any, data?: ListAccountIntegrationsCommandOutput) => void): void;
257
279
  listAccountIntegrations(args: ListAccountIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAccountIntegrationsCommandOutput) => void): void;
258
280
  /**
281
+ * @public
259
282
  * <p>Returns a list of all the domains for an AWS account that have been created.</p>
260
283
  */
261
284
  listDomains(args: ListDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainsCommandOutput>;
262
285
  listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
263
286
  listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
264
287
  /**
288
+ * @public
265
289
  * <p>Lists all of the Identity Resolution Jobs in your domain. The response sorts the list by
266
290
  * <code>JobStartTime</code>.</p>
267
291
  */
@@ -269,30 +293,35 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
269
293
  listIdentityResolutionJobs(args: ListIdentityResolutionJobsCommandInput, cb: (err: any, data?: ListIdentityResolutionJobsCommandOutput) => void): void;
270
294
  listIdentityResolutionJobs(args: ListIdentityResolutionJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentityResolutionJobsCommandOutput) => void): void;
271
295
  /**
296
+ * @public
272
297
  * <p>Lists all of the integrations in your domain.</p>
273
298
  */
274
299
  listIntegrations(args: ListIntegrationsCommandInput, options?: __HttpHandlerOptions): Promise<ListIntegrationsCommandOutput>;
275
300
  listIntegrations(args: ListIntegrationsCommandInput, cb: (err: any, data?: ListIntegrationsCommandOutput) => void): void;
276
301
  listIntegrations(args: ListIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIntegrationsCommandOutput) => void): void;
277
302
  /**
303
+ * @public
278
304
  * <p>Returns a list of objects associated with a profile of a given ProfileObjectType.</p>
279
305
  */
280
306
  listProfileObjects(args: ListProfileObjectsCommandInput, options?: __HttpHandlerOptions): Promise<ListProfileObjectsCommandOutput>;
281
307
  listProfileObjects(args: ListProfileObjectsCommandInput, cb: (err: any, data?: ListProfileObjectsCommandOutput) => void): void;
282
308
  listProfileObjects(args: ListProfileObjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfileObjectsCommandOutput) => void): void;
283
309
  /**
310
+ * @public
284
311
  * <p>Lists all of the templates available within the service.</p>
285
312
  */
286
313
  listProfileObjectTypes(args: ListProfileObjectTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListProfileObjectTypesCommandOutput>;
287
314
  listProfileObjectTypes(args: ListProfileObjectTypesCommandInput, cb: (err: any, data?: ListProfileObjectTypesCommandOutput) => void): void;
288
315
  listProfileObjectTypes(args: ListProfileObjectTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfileObjectTypesCommandOutput) => void): void;
289
316
  /**
317
+ * @public
290
318
  * <p>Lists all of the template information for object types.</p>
291
319
  */
292
320
  listProfileObjectTypeTemplates(args: ListProfileObjectTypeTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListProfileObjectTypeTemplatesCommandOutput>;
293
321
  listProfileObjectTypeTemplates(args: ListProfileObjectTypeTemplatesCommandInput, cb: (err: any, data?: ListProfileObjectTypeTemplatesCommandOutput) => void): void;
294
322
  listProfileObjectTypeTemplates(args: ListProfileObjectTypeTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfileObjectTypeTemplatesCommandOutput) => void): void;
295
323
  /**
324
+ * @public
296
325
  * <p>Displays the tags associated with an Amazon Connect Customer Profiles resource. In Connect
297
326
  * Customer Profiles, domains, profile object types, and integrations can be tagged.</p>
298
327
  */
@@ -300,12 +329,14 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
300
329
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
301
330
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
302
331
  /**
332
+ * @public
303
333
  * <p>Query to list all workflows.</p>
304
334
  */
305
335
  listWorkflows(args: ListWorkflowsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkflowsCommandOutput>;
306
336
  listWorkflows(args: ListWorkflowsCommandInput, cb: (err: any, data?: ListWorkflowsCommandOutput) => void): void;
307
337
  listWorkflows(args: ListWorkflowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkflowsCommandOutput) => void): void;
308
338
  /**
339
+ * @public
309
340
  * <p>Runs an AWS Lambda job that does the following:</p>
310
341
  * <ol>
311
342
  * <li>
@@ -354,6 +385,7 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
354
385
  mergeProfiles(args: MergeProfilesCommandInput, cb: (err: any, data?: MergeProfilesCommandOutput) => void): void;
355
386
  mergeProfiles(args: MergeProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: MergeProfilesCommandOutput) => void): void;
356
387
  /**
388
+ * @public
357
389
  * <p>Adds an integration between the service and a third-party service, which includes
358
390
  * Amazon AppFlow and Amazon Connect.</p>
359
391
  * <p>An integration can belong to only one domain.</p>
@@ -365,6 +397,7 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
365
397
  putIntegration(args: PutIntegrationCommandInput, cb: (err: any, data?: PutIntegrationCommandOutput) => void): void;
366
398
  putIntegration(args: PutIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutIntegrationCommandOutput) => void): void;
367
399
  /**
400
+ * @public
368
401
  * <p>Adds additional objects to customer profiles of a given ObjectType.</p>
369
402
  * <p>When adding a specific profile object, like a Contact Record, an inferred profile can
370
403
  * get created if it is not mapped to an existing profile. The resulting profile will only
@@ -380,6 +413,7 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
380
413
  putProfileObject(args: PutProfileObjectCommandInput, cb: (err: any, data?: PutProfileObjectCommandOutput) => void): void;
381
414
  putProfileObject(args: PutProfileObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutProfileObjectCommandOutput) => void): void;
382
415
  /**
416
+ * @public
383
417
  * <p>Defines a ProfileObjectType.</p>
384
418
  * <p>To add or remove tags on an existing ObjectType, see <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_TagResource.html">
385
419
  * TagResource</a>/<a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_UntagResource.html">UntagResource</a>.</p>
@@ -388,6 +422,7 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
388
422
  putProfileObjectType(args: PutProfileObjectTypeCommandInput, cb: (err: any, data?: PutProfileObjectTypeCommandOutput) => void): void;
389
423
  putProfileObjectType(args: PutProfileObjectTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutProfileObjectTypeCommandOutput) => void): void;
390
424
  /**
425
+ * @public
391
426
  * <p>Searches for profiles within a specific domain using one or more predefined search keys
392
427
  * (e.g., _fullName, _phone, _email, _account, etc.) and/or custom-defined search keys. A search key
393
428
  * is a data type pair that consists of a <code>KeyName</code> and <code>Values</code> list.</p>
@@ -398,6 +433,7 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
398
433
  searchProfiles(args: SearchProfilesCommandInput, cb: (err: any, data?: SearchProfilesCommandOutput) => void): void;
399
434
  searchProfiles(args: SearchProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchProfilesCommandOutput) => void): void;
400
435
  /**
436
+ * @public
401
437
  * <p>Assigns one or more tags (key-value pairs) to the specified Amazon Connect Customer Profiles
402
438
  * resource. Tags can help you organize and categorize your resources. You can also use them
403
439
  * to scope user permissions by granting a user permission to access or change only resources
@@ -415,6 +451,7 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
415
451
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
416
452
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
417
453
  /**
454
+ * @public
418
455
  * <p>Removes one or more tags from the specified Amazon Connect Customer Profiles resource. In Connect
419
456
  * Customer Profiles, domains, profile object types, and integrations can be tagged.</p>
420
457
  */
@@ -422,6 +459,7 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
422
459
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
423
460
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
424
461
  /**
462
+ * @public
425
463
  * <p>Updates the properties of a domain, including creating or selecting a dead letter queue
426
464
  * or an encryption key.</p>
427
465
  * <p>After a domain is created, the name can’t be changed.</p>
@@ -436,6 +474,7 @@ export declare class CustomerProfiles extends CustomerProfilesClient {
436
474
  updateDomain(args: UpdateDomainCommandInput, cb: (err: any, data?: UpdateDomainCommandOutput) => void): void;
437
475
  updateDomain(args: UpdateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainCommandOutput) => void): void;
438
476
  /**
477
+ * @public
439
478
  * <p>Updates the properties of a profile. The ProfileId is required for updating a customer
440
479
  * profile.</p>
441
480
  * <p>When calling the UpdateProfile API, specifying an empty string value means that any
@@ -46,15 +46,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
46
46
  import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/UpdateDomainCommand";
47
47
  import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "./commands/UpdateProfileCommand";
48
48
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
49
+ /**
50
+ * @public
51
+ */
49
52
  export type ServiceInputTypes = AddProfileKeyCommandInput | CreateDomainCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | DeleteDomainCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteWorkflowCommandInput | GetAutoMergingPreviewCommandInput | GetDomainCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListDomainsCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListTagsForResourceCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDomainCommandInput | UpdateProfileCommandInput;
53
+ /**
54
+ * @public
55
+ */
50
56
  export type ServiceOutputTypes = AddProfileKeyCommandOutput | CreateDomainCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | DeleteDomainCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteWorkflowCommandOutput | GetAutoMergingPreviewCommandOutput | GetDomainCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListDomainsCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListTagsForResourceCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDomainCommandOutput | UpdateProfileCommandOutput;
57
+ /**
58
+ * @public
59
+ */
51
60
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
52
61
  /**
53
62
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
54
63
  */
55
64
  requestHandler?: __HttpHandler;
56
65
  /**
57
- * A constructor for a class implementing the {@link __Checksum} interface
66
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
58
67
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
59
68
  * @internal
60
69
  */
@@ -144,23 +153,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
144
153
  */
145
154
  logger?: __Logger;
146
155
  /**
147
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
156
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
148
157
  */
149
158
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
150
159
  }
160
+ /**
161
+ * @public
162
+ */
151
163
  type CustomerProfilesClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
152
164
  /**
153
- * The configuration interface of CustomerProfilesClient class constructor that set the region, credentials and other options.
165
+ * @public
166
+ *
167
+ * The configuration interface of CustomerProfilesClient class constructor that set the region, credentials and other options.
154
168
  */
155
169
  export interface CustomerProfilesClientConfig extends CustomerProfilesClientConfigType {
156
170
  }
171
+ /**
172
+ * @public
173
+ */
157
174
  type CustomerProfilesClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
158
175
  /**
159
- * The resolved configuration interface of CustomerProfilesClient class. This is resolved and normalized from the {@link CustomerProfilesClientConfig | constructor configuration interface}.
176
+ * @public
177
+ *
178
+ * The resolved configuration interface of CustomerProfilesClient class. This is resolved and normalized from the {@link CustomerProfilesClientConfig | constructor configuration interface}.
160
179
  */
161
180
  export interface CustomerProfilesClientResolvedConfig extends CustomerProfilesClientResolvedConfigType {
162
181
  }
163
182
  /**
183
+ * @public
164
184
  * <fullname>Amazon Connect Customer Profiles</fullname>
165
185
  * <p>Amazon Connect Customer Profiles is a unified customer profile for your contact center that has
166
186
  * pre-built connectors powered by AppFlow that make it easy to combine customer information
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
5
5
  import { AddProfileKeyRequest, AddProfileKeyResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AddProfileKeyCommand}.
8
10
  */
9
11
  export interface AddProfileKeyCommandInput extends AddProfileKeyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AddProfileKeyCommand}.
13
17
  */
14
18
  export interface AddProfileKeyCommandOutput extends AddProfileKeyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Associates a new key value with a specific profile, such as a Contact Record
18
23
  * ContactId.</p>
19
24
  * <p>A profile object can have a single unique key and any number of additional keys that can
@@ -28,6 +33,8 @@ export interface AddProfileKeyCommandOutput extends AddProfileKeyResponse, __Met
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param AddProfileKeyCommandInput - {@link AddProfileKeyCommandInput}
37
+ * @returns {@link AddProfileKeyCommandOutput}
31
38
  * @see {@link AddProfileKeyCommandInput} for command's `input` shape.
32
39
  * @see {@link AddProfileKeyCommandOutput} for command's `response` shape.
33
40
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -52,11 +59,20 @@ export interface AddProfileKeyCommandOutput extends AddProfileKeyResponse, __Met
52
59
  export declare class AddProfileKeyCommand extends $Command<AddProfileKeyCommandInput, AddProfileKeyCommandOutput, CustomerProfilesClientResolvedConfig> {
53
60
  readonly input: AddProfileKeyCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: AddProfileKeyCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddProfileKeyCommandInput, AddProfileKeyCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
5
5
  import { CreateDomainRequest, CreateDomainResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateDomainCommand}.
8
10
  */
9
11
  export interface CreateDomainCommandInput extends CreateDomainRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateDomainCommand}.
13
17
  */
14
18
  export interface CreateDomainCommandOutput extends CreateDomainResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a domain, which is a container for all customer data, such as customer profile
18
23
  * attributes, object types, profile keys, and encryption keys. You can create multiple
19
24
  * domains, and each domain can have multiple third-party integrations.</p>
@@ -34,6 +39,8 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
34
39
  * const response = await client.send(command);
35
40
  * ```
36
41
  *
42
+ * @param CreateDomainCommandInput - {@link CreateDomainCommandInput}
43
+ * @returns {@link CreateDomainCommandOutput}
37
44
  * @see {@link CreateDomainCommandInput} for command's `input` shape.
38
45
  * @see {@link CreateDomainCommandOutput} for command's `response` shape.
39
46
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -58,11 +65,20 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
58
65
  export declare class CreateDomainCommand extends $Command<CreateDomainCommandInput, CreateDomainCommandOutput, CustomerProfilesClientResolvedConfig> {
59
66
  readonly input: CreateDomainCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: CreateDomainCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDomainCommandInput, CreateDomainCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
5
5
  import { CreateIntegrationWorkflowRequest, CreateIntegrationWorkflowResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateIntegrationWorkflowCommand}.
8
10
  */
9
11
  export interface CreateIntegrationWorkflowCommandInput extends CreateIntegrationWorkflowRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateIntegrationWorkflowCommand}.
13
17
  */
14
18
  export interface CreateIntegrationWorkflowCommandOutput extends CreateIntegrationWorkflowResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Creates an integration workflow. An integration workflow is an async process which ingests historic data and sets up an integration for ongoing updates. The supported Amazon AppFlow sources are Salesforce, ServiceNow, and Marketo.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface CreateIntegrationWorkflowCommandOutput extends CreateIntegratio
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param CreateIntegrationWorkflowCommandInput - {@link CreateIntegrationWorkflowCommandInput}
36
+ * @returns {@link CreateIntegrationWorkflowCommandOutput}
30
37
  * @see {@link CreateIntegrationWorkflowCommandInput} for command's `input` shape.
31
38
  * @see {@link CreateIntegrationWorkflowCommandOutput} for command's `response` shape.
32
39
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -51,11 +58,20 @@ export interface CreateIntegrationWorkflowCommandOutput extends CreateIntegratio
51
58
  export declare class CreateIntegrationWorkflowCommand extends $Command<CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput, CustomerProfilesClientResolvedConfig> {
52
59
  readonly input: CreateIntegrationWorkflowCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: CreateIntegrationWorkflowCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
5
5
  import { CreateProfileRequest, CreateProfileResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateProfileCommand}.
8
10
  */
9
11
  export interface CreateProfileCommandInput extends CreateProfileRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateProfileCommand}.
13
17
  */
14
18
  export interface CreateProfileCommandOutput extends CreateProfileResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a standard profile.</p>
18
23
  * <p>A standard profile represents the following attributes for a customer profile in a
19
24
  * domain.</p>
@@ -27,6 +32,8 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param CreateProfileCommandInput - {@link CreateProfileCommandInput}
36
+ * @returns {@link CreateProfileCommandOutput}
30
37
  * @see {@link CreateProfileCommandInput} for command's `input` shape.
31
38
  * @see {@link CreateProfileCommandOutput} for command's `response` shape.
32
39
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -51,11 +58,20 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met
51
58
  export declare class CreateProfileCommand extends $Command<CreateProfileCommandInput, CreateProfileCommandOutput, CustomerProfilesClientResolvedConfig> {
52
59
  readonly input: CreateProfileCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: CreateProfileCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateProfileCommandInput, CreateProfileCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
5
5
  import { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteDomainCommand}.
8
10
  */
9
11
  export interface DeleteDomainCommandInput extends DeleteDomainRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteDomainCommand}.
13
17
  */
14
18
  export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a specific domain and all of its customer data, such as customer profile
18
23
  * attributes and their related objects.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param DeleteDomainCommandInput - {@link DeleteDomainCommandInput}
35
+ * @returns {@link DeleteDomainCommandOutput}
29
36
  * @see {@link DeleteDomainCommandInput} for command's `input` shape.
30
37
  * @see {@link DeleteDomainCommandOutput} for command's `response` shape.
31
38
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -50,11 +57,20 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad
50
57
  export declare class DeleteDomainCommand extends $Command<DeleteDomainCommandInput, DeleteDomainCommandOutput, CustomerProfilesClientResolvedConfig> {
51
58
  readonly input: DeleteDomainCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: DeleteDomainCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDomainCommandInput, DeleteDomainCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }