@aws-sdk/client-customer-profiles 3.288.0 → 3.290.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/dist-types/commands/AddProfileKeyCommand.d.ts +16 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +16 -0
- package/dist-types/commands/CreateIntegrationWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/CreateProfileCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +16 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProfileCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProfileKeyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProfileObjectCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProfileObjectTypeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/GetAutoMergingPreviewCommand.d.ts +16 -0
- package/dist-types/commands/GetDomainCommand.d.ts +16 -0
- package/dist-types/commands/GetIdentityResolutionJobCommand.d.ts +16 -0
- package/dist-types/commands/GetIntegrationCommand.d.ts +16 -0
- package/dist-types/commands/GetMatchesCommand.d.ts +16 -0
- package/dist-types/commands/GetProfileObjectTypeCommand.d.ts +16 -0
- package/dist-types/commands/GetProfileObjectTypeTemplateCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkflowStepsCommand.d.ts +16 -0
- package/dist-types/commands/ListAccountIntegrationsCommand.d.ts +16 -0
- package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
- package/dist-types/commands/ListIdentityResolutionJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListIntegrationsCommand.d.ts +16 -0
- package/dist-types/commands/ListProfileObjectTypeTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/ListProfileObjectTypesCommand.d.ts +16 -0
- package/dist-types/commands/ListProfileObjectsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +16 -0
- package/dist-types/commands/MergeProfilesCommand.d.ts +13 -0
- package/dist-types/commands/PutIntegrationCommand.d.ts +16 -0
- package/dist-types/commands/PutProfileObjectCommand.d.ts +16 -0
- package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +16 -0
- package/dist-types/commands/SearchProfilesCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProfileCommand.d.ts +16 -0
- package/package.json +29 -29
|
@@ -32,6 +32,22 @@ export interface AddProfileKeyCommandOutput extends AddProfileKeyResponse, __Met
|
|
|
32
32
|
* @see {@link AddProfileKeyCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link BadRequestException} (client fault)
|
|
39
|
+
* <p>The input you provided is invalid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p>An internal service error occurred.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
35
51
|
*/
|
|
36
52
|
export declare class AddProfileKeyCommand extends $Command<AddProfileKeyCommandInput, AddProfileKeyCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
37
53
|
readonly input: AddProfileKeyCommandInput;
|
|
@@ -38,6 +38,22 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
|
|
|
38
38
|
* @see {@link CreateDomainCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
42
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link BadRequestException} (client fault)
|
|
45
|
+
* <p>The input you provided is invalid.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InternalServerException} (server fault)
|
|
48
|
+
* <p>An internal service error occurred.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
54
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
41
57
|
*/
|
|
42
58
|
export declare class CreateDomainCommand extends $Command<CreateDomainCommandInput, CreateDomainCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
43
59
|
readonly input: CreateDomainCommandInput;
|
|
@@ -31,6 +31,22 @@ export interface CreateIntegrationWorkflowCommandOutput extends CreateIntegratio
|
|
|
31
31
|
* @see {@link CreateIntegrationWorkflowCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link BadRequestException} (client fault)
|
|
38
|
+
* <p>The input you provided is invalid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerException} (server fault)
|
|
41
|
+
* <p>An internal service error occurred.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
34
50
|
*/
|
|
35
51
|
export declare class CreateIntegrationWorkflowCommand extends $Command<CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
36
52
|
readonly input: CreateIntegrationWorkflowCommandInput;
|
|
@@ -31,6 +31,22 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met
|
|
|
31
31
|
* @see {@link CreateProfileCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link BadRequestException} (client fault)
|
|
38
|
+
* <p>The input you provided is invalid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerException} (server fault)
|
|
41
|
+
* <p>An internal service error occurred.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
34
50
|
*/
|
|
35
51
|
export declare class CreateProfileCommand extends $Command<CreateProfileCommandInput, CreateProfileCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
36
52
|
readonly input: CreateProfileCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad
|
|
|
30
30
|
* @see {@link DeleteDomainCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link BadRequestException} (client fault)
|
|
37
|
+
* <p>The input you provided is invalid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>An internal service error occurred.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class DeleteDomainCommand extends $Command<DeleteDomainCommandInput, DeleteDomainCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
35
51
|
readonly input: DeleteDomainCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DeleteIntegrationCommandOutput extends DeleteIntegrationRespons
|
|
|
29
29
|
* @see {@link DeleteIntegrationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteIntegrationCommand extends $Command<DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteIntegrationCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DeleteProfileCommandOutput extends DeleteProfileResponse, __Met
|
|
|
29
29
|
* @see {@link DeleteProfileCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteProfileCommand extends $Command<DeleteProfileCommandInput, DeleteProfileCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteProfileCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DeleteProfileKeyCommandOutput extends DeleteProfileKeyResponse,
|
|
|
29
29
|
* @see {@link DeleteProfileKeyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteProfileKeyCommand extends $Command<DeleteProfileKeyCommandInput, DeleteProfileKeyCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteProfileKeyCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DeleteProfileObjectCommandOutput extends DeleteProfileObjectRes
|
|
|
29
29
|
* @see {@link DeleteProfileObjectCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteProfileObjectCommand extends $Command<DeleteProfileObjectCommandInput, DeleteProfileObjectCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteProfileObjectCommandInput;
|
|
@@ -32,6 +32,22 @@ export interface DeleteProfileObjectTypeCommandOutput extends DeleteProfileObjec
|
|
|
32
32
|
* @see {@link DeleteProfileObjectTypeCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link BadRequestException} (client fault)
|
|
39
|
+
* <p>The input you provided is invalid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p>An internal service error occurred.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
35
51
|
*/
|
|
36
52
|
export declare class DeleteProfileObjectTypeCommand extends $Command<DeleteProfileObjectTypeCommandInput, DeleteProfileObjectTypeCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
37
53
|
readonly input: DeleteProfileObjectTypeCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DeleteWorkflowCommandOutput extends DeleteWorkflowResponse, __M
|
|
|
29
29
|
* @see {@link DeleteWorkflowCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteWorkflowCommand extends $Command<DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteWorkflowCommandInput;
|
|
@@ -41,6 +41,22 @@ export interface GetAutoMergingPreviewCommandOutput extends GetAutoMergingPrevie
|
|
|
41
41
|
* @see {@link GetAutoMergingPreviewCommandOutput} for command's `response` shape.
|
|
42
42
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
43
43
|
*
|
|
44
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
45
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link BadRequestException} (client fault)
|
|
48
|
+
* <p>The input you provided is invalid.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InternalServerException} (server fault)
|
|
51
|
+
* <p>An internal service error occurred.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
54
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
57
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
44
60
|
*/
|
|
45
61
|
export declare class GetAutoMergingPreviewCommand extends $Command<GetAutoMergingPreviewCommandInput, GetAutoMergingPreviewCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
46
62
|
readonly input: GetAutoMergingPreviewCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetDomainCommandOutput extends GetDomainResponse, __MetadataBea
|
|
|
29
29
|
* @see {@link GetDomainCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetDomainCommand extends $Command<GetDomainCommandInput, GetDomainCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: GetDomainCommandInput;
|
|
@@ -31,6 +31,22 @@ export interface GetIdentityResolutionJobCommandOutput extends GetIdentityResolu
|
|
|
31
31
|
* @see {@link GetIdentityResolutionJobCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link BadRequestException} (client fault)
|
|
38
|
+
* <p>The input you provided is invalid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerException} (server fault)
|
|
41
|
+
* <p>An internal service error occurred.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
34
50
|
*/
|
|
35
51
|
export declare class GetIdentityResolutionJobCommand extends $Command<GetIdentityResolutionJobCommandInput, GetIdentityResolutionJobCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
36
52
|
readonly input: GetIdentityResolutionJobCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetIntegrationCommandOutput extends GetIntegrationResponse, __M
|
|
|
29
29
|
* @see {@link GetIntegrationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetIntegrationCommand extends $Command<GetIntegrationCommandInput, GetIntegrationCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: GetIntegrationCommandInput;
|
|
@@ -73,6 +73,22 @@ export interface GetMatchesCommandOutput extends GetMatchesResponse, __MetadataB
|
|
|
73
73
|
* @see {@link GetMatchesCommandOutput} for command's `response` shape.
|
|
74
74
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
75
75
|
*
|
|
76
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
77
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link BadRequestException} (client fault)
|
|
80
|
+
* <p>The input you provided is invalid.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link InternalServerException} (server fault)
|
|
83
|
+
* <p>An internal service error occurred.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
86
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
89
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
90
|
+
*
|
|
91
|
+
*
|
|
76
92
|
*/
|
|
77
93
|
export declare class GetMatchesCommand extends $Command<GetMatchesCommandInput, GetMatchesCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
78
94
|
readonly input: GetMatchesCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetProfileObjectTypeCommandOutput extends GetProfileObjectTypeR
|
|
|
29
29
|
* @see {@link GetProfileObjectTypeCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetProfileObjectTypeCommand extends $Command<GetProfileObjectTypeCommandInput, GetProfileObjectTypeCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: GetProfileObjectTypeCommandInput;
|
|
@@ -33,6 +33,22 @@ export interface GetProfileObjectTypeTemplateCommandOutput extends GetProfileObj
|
|
|
33
33
|
* @see {@link GetProfileObjectTypeTemplateCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link BadRequestException} (client fault)
|
|
40
|
+
* <p>The input you provided is invalid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p>An internal service error occurred.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
49
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
36
52
|
*/
|
|
37
53
|
export declare class GetProfileObjectTypeTemplateCommand extends $Command<GetProfileObjectTypeTemplateCommandInput, GetProfileObjectTypeTemplateCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
38
54
|
readonly input: GetProfileObjectTypeTemplateCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetWorkflowCommandOutput extends GetWorkflowResponse, __Metadat
|
|
|
29
29
|
* @see {@link GetWorkflowCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetWorkflowCommand extends $Command<GetWorkflowCommandInput, GetWorkflowCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: GetWorkflowCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetWorkflowStepsCommandOutput extends GetWorkflowStepsResponse,
|
|
|
29
29
|
* @see {@link GetWorkflowStepsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetWorkflowStepsCommand extends $Command<GetWorkflowStepsCommandInput, GetWorkflowStepsCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: GetWorkflowStepsCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListAccountIntegrationsCommandOutput extends ListAccountIntegra
|
|
|
29
29
|
* @see {@link ListAccountIntegrationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListAccountIntegrationsCommand extends $Command<ListAccountIntegrationsCommandInput, ListAccountIntegrationsCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: ListAccountIntegrationsCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat
|
|
|
29
29
|
* @see {@link ListDomainsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListDomainsCommand extends $Command<ListDomainsCommandInput, ListDomainsCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: ListDomainsCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface ListIdentityResolutionJobsCommandOutput extends ListIdentityRes
|
|
|
30
30
|
* @see {@link ListIdentityResolutionJobsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link BadRequestException} (client fault)
|
|
37
|
+
* <p>The input you provided is invalid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>An internal service error occurred.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class ListIdentityResolutionJobsCommand extends $Command<ListIdentityResolutionJobsCommandInput, ListIdentityResolutionJobsCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
35
51
|
readonly input: ListIdentityResolutionJobsCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListIntegrationsCommandOutput extends ListIntegrationsResponse,
|
|
|
29
29
|
* @see {@link ListIntegrationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListIntegrationsCommand extends $Command<ListIntegrationsCommandInput, ListIntegrationsCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: ListIntegrationsCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListProfileObjectTypeTemplatesCommandOutput extends ListProfile
|
|
|
29
29
|
* @see {@link ListProfileObjectTypeTemplatesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListProfileObjectTypeTemplatesCommand extends $Command<ListProfileObjectTypeTemplatesCommandInput, ListProfileObjectTypeTemplatesCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: ListProfileObjectTypeTemplatesCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListProfileObjectTypesCommandOutput extends ListProfileObjectTy
|
|
|
29
29
|
* @see {@link ListProfileObjectTypesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListProfileObjectTypesCommand extends $Command<ListProfileObjectTypesCommandInput, ListProfileObjectTypesCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: ListProfileObjectTypesCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListProfileObjectsCommandOutput extends ListProfileObjectsRespo
|
|
|
29
29
|
* @see {@link ListProfileObjectsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListProfileObjectsCommand extends $Command<ListProfileObjectsCommandInput, ListProfileObjectsCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: ListProfileObjectsCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
30
30
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input you provided is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>An internal service error occurred.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
35
45
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met
|
|
|
29
29
|
* @see {@link ListWorkflowsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An internal service error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListWorkflowsCommand extends $Command<ListWorkflowsCommandInput, ListWorkflowsCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
34
50
|
readonly input: ListWorkflowsCommandInput;
|
|
@@ -71,6 +71,19 @@ export interface MergeProfilesCommandOutput extends MergeProfilesResponse, __Met
|
|
|
71
71
|
* @see {@link MergeProfilesCommandOutput} for command's `response` shape.
|
|
72
72
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
73
73
|
*
|
|
74
|
+
* @throws {@link BadRequestException} (client fault)
|
|
75
|
+
* <p>The input you provided is invalid.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InternalServerException} (server fault)
|
|
78
|
+
* <p>An internal service error occurred.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
81
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
84
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
85
|
+
*
|
|
86
|
+
*
|
|
74
87
|
*/
|
|
75
88
|
export declare class MergeProfilesCommand extends $Command<MergeProfilesCommandInput, MergeProfilesCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
76
89
|
readonly input: MergeProfilesCommandInput;
|
|
@@ -34,6 +34,22 @@ export interface PutIntegrationCommandOutput extends PutIntegrationResponse, __M
|
|
|
34
34
|
* @see {@link PutIntegrationCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
38
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link BadRequestException} (client fault)
|
|
41
|
+
* <p>The input you provided is invalid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p>An internal service error occurred.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
37
53
|
*/
|
|
38
54
|
export declare class PutIntegrationCommand extends $Command<PutIntegrationCommandInput, PutIntegrationCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
39
55
|
readonly input: PutIntegrationCommandInput;
|
|
@@ -38,6 +38,22 @@ export interface PutProfileObjectCommandOutput extends PutProfileObjectResponse,
|
|
|
38
38
|
* @see {@link PutProfileObjectCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
42
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link BadRequestException} (client fault)
|
|
45
|
+
* <p>The input you provided is invalid.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InternalServerException} (server fault)
|
|
48
|
+
* <p>An internal service error occurred.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
54
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
41
57
|
*/
|
|
42
58
|
export declare class PutProfileObjectCommand extends $Command<PutProfileObjectCommandInput, PutProfileObjectCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
43
59
|
readonly input: PutProfileObjectCommandInput;
|
|
@@ -31,6 +31,22 @@ export interface PutProfileObjectTypeCommandOutput extends PutProfileObjectTypeR
|
|
|
31
31
|
* @see {@link PutProfileObjectTypeCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link BadRequestException} (client fault)
|
|
38
|
+
* <p>The input you provided is invalid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerException} (server fault)
|
|
41
|
+
* <p>An internal service error occurred.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
34
50
|
*/
|
|
35
51
|
export declare class PutProfileObjectTypeCommand extends $Command<PutProfileObjectTypeCommandInput, PutProfileObjectTypeCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
36
52
|
readonly input: PutProfileObjectTypeCommandInput;
|
|
@@ -33,6 +33,22 @@ export interface SearchProfilesCommandOutput extends SearchProfilesResponse, __M
|
|
|
33
33
|
* @see {@link SearchProfilesCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link BadRequestException} (client fault)
|
|
40
|
+
* <p>The input you provided is invalid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p>An internal service error occurred.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
49
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
36
52
|
*/
|
|
37
53
|
export declare class SearchProfilesCommand extends $Command<SearchProfilesCommandInput, SearchProfilesCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
38
54
|
readonly input: SearchProfilesCommandInput;
|
|
@@ -40,6 +40,16 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
40
40
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link BadRequestException} (client fault)
|
|
44
|
+
* <p>The input you provided is invalid.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerException} (server fault)
|
|
47
|
+
* <p>An internal service error occurred.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
43
53
|
*/
|
|
44
54
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
45
55
|
readonly input: TagResourceCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
30
30
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input you provided is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>An internal service error occurred.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
35
45
|
readonly input: UntagResourceCommandInput;
|
|
@@ -37,6 +37,22 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad
|
|
|
37
37
|
* @see {@link UpdateDomainCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
41
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link BadRequestException} (client fault)
|
|
44
|
+
* <p>The input you provided is invalid.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerException} (server fault)
|
|
47
|
+
* <p>An internal service error occurred.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
53
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
40
56
|
*/
|
|
41
57
|
export declare class UpdateDomainCommand extends $Command<UpdateDomainCommandInput, UpdateDomainCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
42
58
|
readonly input: UpdateDomainCommandInput;
|
|
@@ -33,6 +33,22 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met
|
|
|
33
33
|
* @see {@link UpdateProfileCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link BadRequestException} (client fault)
|
|
40
|
+
* <p>The input you provided is invalid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p>An internal service error occurred.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
49
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
36
52
|
*/
|
|
37
53
|
export declare class UpdateProfileCommand extends $Command<UpdateProfileCommandInput, UpdateProfileCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
38
54
|
readonly input: UpdateProfileCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-customer-profiles",
|
|
3
3
|
"description": "AWS SDK for JavaScript Customer Profiles Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|