@aws-sdk/client-customer-profiles 3.295.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 +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
5
5
  import { PutIntegrationRequest, PutIntegrationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutIntegrationCommand}.
8
10
  */
9
11
  export interface PutIntegrationCommandInput extends PutIntegrationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutIntegrationCommand}.
13
17
  */
14
18
  export interface PutIntegrationCommandOutput extends PutIntegrationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds an integration between the service and a third-party service, which includes
18
23
  * Amazon AppFlow and Amazon Connect.</p>
19
24
  * <p>An integration can belong to only one domain.</p>
@@ -30,6 +35,8 @@ export interface PutIntegrationCommandOutput extends PutIntegrationResponse, __M
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param PutIntegrationCommandInput - {@link PutIntegrationCommandInput}
39
+ * @returns {@link PutIntegrationCommandOutput}
33
40
  * @see {@link PutIntegrationCommandInput} for command's `input` shape.
34
41
  * @see {@link PutIntegrationCommandOutput} for command's `response` shape.
35
42
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -54,11 +61,20 @@ export interface PutIntegrationCommandOutput extends PutIntegrationResponse, __M
54
61
  export declare class PutIntegrationCommand extends $Command<PutIntegrationCommandInput, PutIntegrationCommandOutput, CustomerProfilesClientResolvedConfig> {
55
62
  readonly input: PutIntegrationCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: PutIntegrationCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutIntegrationCommandInput, PutIntegrationCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
5
5
  import { PutProfileObjectRequest, PutProfileObjectResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutProfileObjectCommand}.
8
10
  */
9
11
  export interface PutProfileObjectCommandInput extends PutProfileObjectRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutProfileObjectCommand}.
13
17
  */
14
18
  export interface PutProfileObjectCommandOutput extends PutProfileObjectResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds additional objects to customer profiles of a given ObjectType.</p>
18
23
  * <p>When adding a specific profile object, like a Contact Record, an inferred profile can
19
24
  * get created if it is not mapped to an existing profile. The resulting profile will only
@@ -34,6 +39,8 @@ export interface PutProfileObjectCommandOutput extends PutProfileObjectResponse,
34
39
  * const response = await client.send(command);
35
40
  * ```
36
41
  *
42
+ * @param PutProfileObjectCommandInput - {@link PutProfileObjectCommandInput}
43
+ * @returns {@link PutProfileObjectCommandOutput}
37
44
  * @see {@link PutProfileObjectCommandInput} for command's `input` shape.
38
45
  * @see {@link PutProfileObjectCommandOutput} for command's `response` shape.
39
46
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -58,11 +65,20 @@ export interface PutProfileObjectCommandOutput extends PutProfileObjectResponse,
58
65
  export declare class PutProfileObjectCommand extends $Command<PutProfileObjectCommandInput, PutProfileObjectCommandOutput, CustomerProfilesClientResolvedConfig> {
59
66
  readonly input: PutProfileObjectCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: PutProfileObjectCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutProfileObjectCommandInput, PutProfileObjectCommandOutput>;
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 { PutProfileObjectTypeRequest, PutProfileObjectTypeResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutProfileObjectTypeCommand}.
8
10
  */
9
11
  export interface PutProfileObjectTypeCommandInput extends PutProfileObjectTypeRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutProfileObjectTypeCommand}.
13
17
  */
14
18
  export interface PutProfileObjectTypeCommandOutput extends PutProfileObjectTypeResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Defines a ProfileObjectType.</p>
18
23
  * <p>To add or remove tags on an existing ObjectType, see <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_TagResource.html">
19
24
  * TagResource</a>/<a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_UntagResource.html">UntagResource</a>.</p>
@@ -27,6 +32,8 @@ export interface PutProfileObjectTypeCommandOutput extends PutProfileObjectTypeR
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param PutProfileObjectTypeCommandInput - {@link PutProfileObjectTypeCommandInput}
36
+ * @returns {@link PutProfileObjectTypeCommandOutput}
30
37
  * @see {@link PutProfileObjectTypeCommandInput} for command's `input` shape.
31
38
  * @see {@link PutProfileObjectTypeCommandOutput} for command's `response` shape.
32
39
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -51,11 +58,20 @@ export interface PutProfileObjectTypeCommandOutput extends PutProfileObjectTypeR
51
58
  export declare class PutProfileObjectTypeCommand extends $Command<PutProfileObjectTypeCommandInput, PutProfileObjectTypeCommandOutput, CustomerProfilesClientResolvedConfig> {
52
59
  readonly input: PutProfileObjectTypeCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: PutProfileObjectTypeCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutProfileObjectTypeCommandInput, PutProfileObjectTypeCommandOutput>;
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 { SearchProfilesRequest, SearchProfilesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchProfilesCommand}.
8
10
  */
9
11
  export interface SearchProfilesCommandInput extends SearchProfilesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchProfilesCommand}.
13
17
  */
14
18
  export interface SearchProfilesCommandOutput extends SearchProfilesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Searches for profiles within a specific domain using one or more predefined search keys
18
23
  * (e.g., _fullName, _phone, _email, _account, etc.) and/or custom-defined search keys. A search key
19
24
  * is a data type pair that consists of a <code>KeyName</code> and <code>Values</code> list.</p>
@@ -29,6 +34,8 @@ export interface SearchProfilesCommandOutput extends SearchProfilesResponse, __M
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param SearchProfilesCommandInput - {@link SearchProfilesCommandInput}
38
+ * @returns {@link SearchProfilesCommandOutput}
32
39
  * @see {@link SearchProfilesCommandInput} for command's `input` shape.
33
40
  * @see {@link SearchProfilesCommandOutput} for command's `response` shape.
34
41
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -53,11 +60,20 @@ export interface SearchProfilesCommandOutput extends SearchProfilesResponse, __M
53
60
  export declare class SearchProfilesCommand extends $Command<SearchProfilesCommandInput, SearchProfilesCommandOutput, CustomerProfilesClientResolvedConfig> {
54
61
  readonly input: SearchProfilesCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: SearchProfilesCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchProfilesCommandInput, SearchProfilesCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Assigns one or more tags (key-value pairs) to the specified Amazon Connect Customer Profiles
18
23
  * resource. Tags can help you organize and categorize your resources. You can also use them
19
24
  * to scope user permissions by granting a user permission to access or change only resources
@@ -36,6 +41,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
36
41
  * const response = await client.send(command);
37
42
  * ```
38
43
  *
44
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
45
+ * @returns {@link TagResourceCommandOutput}
39
46
  * @see {@link TagResourceCommandInput} for command's `input` shape.
40
47
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
41
48
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -54,11 +61,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
54
61
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CustomerProfilesClientResolvedConfig> {
55
62
  readonly input: TagResourceCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: TagResourceCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes one or more tags from the specified Amazon Connect Customer Profiles resource. In Connect
18
23
  * Customer Profiles, domains, profile object types, and integrations can be tagged.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
35
+ * @returns {@link UntagResourceCommandOutput}
29
36
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
30
37
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -44,11 +51,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
44
51
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CustomerProfilesClientResolvedConfig> {
45
52
  readonly input: UntagResourceCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: UntagResourceCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
5
5
  import { UpdateDomainRequest, UpdateDomainResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateDomainCommand}.
8
10
  */
9
11
  export interface UpdateDomainCommandInput extends UpdateDomainRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateDomainCommand}.
13
17
  */
14
18
  export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the properties of a domain, including creating or selecting a dead letter queue
18
23
  * or an encryption key.</p>
19
24
  * <p>After a domain is created, the name can’t be changed.</p>
@@ -33,6 +38,8 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad
33
38
  * const response = await client.send(command);
34
39
  * ```
35
40
  *
41
+ * @param UpdateDomainCommandInput - {@link UpdateDomainCommandInput}
42
+ * @returns {@link UpdateDomainCommandOutput}
36
43
  * @see {@link UpdateDomainCommandInput} for command's `input` shape.
37
44
  * @see {@link UpdateDomainCommandOutput} for command's `response` shape.
38
45
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -57,11 +64,20 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad
57
64
  export declare class UpdateDomainCommand extends $Command<UpdateDomainCommandInput, UpdateDomainCommandOutput, CustomerProfilesClientResolvedConfig> {
58
65
  readonly input: UpdateDomainCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: UpdateDomainCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDomainCommandInput, UpdateDomainCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
5
5
  import { UpdateProfileRequest, UpdateProfileResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateProfileCommand}.
8
10
  */
9
11
  export interface UpdateProfileCommandInput extends UpdateProfileRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateProfileCommand}.
13
17
  */
14
18
  export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the properties of a profile. The ProfileId is required for updating a customer
18
23
  * profile.</p>
19
24
  * <p>When calling the UpdateProfile API, specifying an empty string value means that any
@@ -29,6 +34,8 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param UpdateProfileCommandInput - {@link UpdateProfileCommandInput}
38
+ * @returns {@link UpdateProfileCommandOutput}
32
39
  * @see {@link UpdateProfileCommandInput} for command's `input` shape.
33
40
  * @see {@link UpdateProfileCommandOutput} for command's `response` shape.
34
41
  * @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
@@ -53,11 +60,20 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met
53
60
  export declare class UpdateProfileCommand extends $Command<UpdateProfileCommandInput, UpdateProfileCommandOutput, CustomerProfilesClientResolvedConfig> {
54
61
  readonly input: UpdateProfileCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: UpdateProfileCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateProfileCommandInput, UpdateProfileCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from CustomerProfiles service.
4
6
  */
5
7
  export declare class CustomerProfilesServiceException extends __ServiceException {