@aws-sdk/client-customer-profiles 3.341.0 → 3.344.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +56 -0
- package/dist-cjs/CustomerProfiles.js +14 -0
- package/dist-cjs/commands/CreateCalculatedAttributeDefinitionCommand.js +46 -0
- package/dist-cjs/commands/DeleteCalculatedAttributeDefinitionCommand.js +46 -0
- package/dist-cjs/commands/GetCalculatedAttributeDefinitionCommand.js +46 -0
- package/dist-cjs/commands/GetCalculatedAttributeForProfileCommand.js +46 -0
- package/dist-cjs/commands/ListCalculatedAttributeDefinitionsCommand.js +46 -0
- package/dist-cjs/commands/ListCalculatedAttributesForProfileCommand.js +46 -0
- package/dist-cjs/commands/UpdateCalculatedAttributeDefinitionCommand.js +46 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +20 -1
- package/dist-cjs/protocols/Aws_restJson1.js +527 -2
- package/dist-es/CustomerProfiles.js +14 -0
- package/dist-es/commands/CreateCalculatedAttributeDefinitionCommand.js +42 -0
- package/dist-es/commands/DeleteCalculatedAttributeDefinitionCommand.js +42 -0
- package/dist-es/commands/GetCalculatedAttributeDefinitionCommand.js +42 -0
- package/dist-es/commands/GetCalculatedAttributeForProfileCommand.js +42 -0
- package/dist-es/commands/ListCalculatedAttributeDefinitionsCommand.js +42 -0
- package/dist-es/commands/ListCalculatedAttributesForProfileCommand.js +42 -0
- package/dist-es/commands/UpdateCalculatedAttributeDefinitionCommand.js +42 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +19 -0
- package/dist-es/protocols/Aws_restJson1.js +511 -0
- package/dist-types/CustomerProfiles.d.ts +49 -0
- package/dist-types/CustomerProfilesClient.d.ts +9 -2
- package/dist-types/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +146 -0
- package/dist-types/commands/DeleteCalculatedAttributeDefinitionCommand.d.ts +89 -0
- package/dist-types/commands/GetCalculatedAttributeDefinitionCommand.d.ts +116 -0
- package/dist-types/commands/GetCalculatedAttributeForProfileCommand.d.ts +93 -0
- package/dist-types/commands/ListCalculatedAttributeDefinitionsCommand.d.ts +102 -0
- package/dist-types/commands/ListCalculatedAttributesForProfileCommand.d.ts +99 -0
- package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +131 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +491 -8
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +149 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteCalculatedAttributeDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetCalculatedAttributeDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetCalculatedAttributeForProfileCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCalculatedAttributeDefinitionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCalculatedAttributesForProfileCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +145 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +28 -28
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
|
|
5
|
+
import { ListCalculatedAttributeDefinitionsRequest, ListCalculatedAttributeDefinitionsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListCalculatedAttributeDefinitionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListCalculatedAttributeDefinitionsCommandInput extends ListCalculatedAttributeDefinitionsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListCalculatedAttributeDefinitionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListCalculatedAttributeDefinitionsCommandOutput extends ListCalculatedAttributeDefinitionsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Lists calculated attribute definitions for Customer Profiles</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { CustomerProfilesClient, ListCalculatedAttributeDefinitionsCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
31
|
+
* // const { CustomerProfilesClient, ListCalculatedAttributeDefinitionsCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
32
|
+
* const client = new CustomerProfilesClient(config);
|
|
33
|
+
* const input = { // ListCalculatedAttributeDefinitionsRequest
|
|
34
|
+
* DomainName: "STRING_VALUE", // required
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* MaxResults: Number("int"),
|
|
37
|
+
* };
|
|
38
|
+
* const command = new ListCalculatedAttributeDefinitionsCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // ListCalculatedAttributeDefinitionsResponse
|
|
41
|
+
* // Items: [ // CalculatedAttributeDefinitionsList
|
|
42
|
+
* // { // ListCalculatedAttributeDefinitionItem
|
|
43
|
+
* // CalculatedAttributeName: "STRING_VALUE",
|
|
44
|
+
* // DisplayName: "STRING_VALUE",
|
|
45
|
+
* // Description: "STRING_VALUE",
|
|
46
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
47
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
48
|
+
* // Tags: { // TagMap
|
|
49
|
+
* // "<keys>": "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // NextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
56
|
+
* ```
|
|
57
|
+
*
|
|
58
|
+
* @param ListCalculatedAttributeDefinitionsCommandInput - {@link ListCalculatedAttributeDefinitionsCommandInput}
|
|
59
|
+
* @returns {@link ListCalculatedAttributeDefinitionsCommandOutput}
|
|
60
|
+
* @see {@link ListCalculatedAttributeDefinitionsCommandInput} for command's `input` shape.
|
|
61
|
+
* @see {@link ListCalculatedAttributeDefinitionsCommandOutput} for command's `response` shape.
|
|
62
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
65
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link BadRequestException} (client fault)
|
|
68
|
+
* <p>The input you provided is invalid.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InternalServerException} (server fault)
|
|
71
|
+
* <p>An internal service error occurred.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
74
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
77
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
81
|
+
*
|
|
82
|
+
*/
|
|
83
|
+
export declare class ListCalculatedAttributeDefinitionsCommand extends $Command<ListCalculatedAttributeDefinitionsCommandInput, ListCalculatedAttributeDefinitionsCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
84
|
+
readonly input: ListCalculatedAttributeDefinitionsCommandInput;
|
|
85
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
constructor(input: ListCalculatedAttributeDefinitionsCommandInput);
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCalculatedAttributeDefinitionsCommandInput, ListCalculatedAttributeDefinitionsCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
private serialize;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
private deserialize;
|
|
102
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
|
|
5
|
+
import { ListCalculatedAttributesForProfileRequest, ListCalculatedAttributesForProfileResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListCalculatedAttributesForProfileCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListCalculatedAttributesForProfileCommandInput extends ListCalculatedAttributesForProfileRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListCalculatedAttributesForProfileCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListCalculatedAttributesForProfileCommandOutput extends ListCalculatedAttributesForProfileResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Retrieve a list of calculated attributes for a customer profile.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { CustomerProfilesClient, ListCalculatedAttributesForProfileCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
31
|
+
* // const { CustomerProfilesClient, ListCalculatedAttributesForProfileCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
32
|
+
* const client = new CustomerProfilesClient(config);
|
|
33
|
+
* const input = { // ListCalculatedAttributesForProfileRequest
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* MaxResults: Number("int"),
|
|
36
|
+
* DomainName: "STRING_VALUE", // required
|
|
37
|
+
* ProfileId: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
39
|
+
* const command = new ListCalculatedAttributesForProfileCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // ListCalculatedAttributesForProfileResponse
|
|
42
|
+
* // Items: [ // CalculatedAttributesForProfileList
|
|
43
|
+
* // { // ListCalculatedAttributeForProfileItem
|
|
44
|
+
* // CalculatedAttributeName: "STRING_VALUE",
|
|
45
|
+
* // DisplayName: "STRING_VALUE",
|
|
46
|
+
* // IsDataPartial: "STRING_VALUE",
|
|
47
|
+
* // Value: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // NextToken: "STRING_VALUE",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* @param ListCalculatedAttributesForProfileCommandInput - {@link ListCalculatedAttributesForProfileCommandInput}
|
|
56
|
+
* @returns {@link ListCalculatedAttributesForProfileCommandOutput}
|
|
57
|
+
* @see {@link ListCalculatedAttributesForProfileCommandInput} for command's `input` shape.
|
|
58
|
+
* @see {@link ListCalculatedAttributesForProfileCommandOutput} for command's `response` shape.
|
|
59
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
62
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link BadRequestException} (client fault)
|
|
65
|
+
* <p>The input you provided is invalid.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InternalServerException} (server fault)
|
|
68
|
+
* <p>An internal service error occurred.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
71
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
74
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
78
|
+
*
|
|
79
|
+
*/
|
|
80
|
+
export declare class ListCalculatedAttributesForProfileCommand extends $Command<ListCalculatedAttributesForProfileCommandInput, ListCalculatedAttributesForProfileCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
81
|
+
readonly input: ListCalculatedAttributesForProfileCommandInput;
|
|
82
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
constructor(input: ListCalculatedAttributesForProfileCommandInput);
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCalculatedAttributesForProfileCommandInput, ListCalculatedAttributesForProfileCommandOutput>;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
94
|
+
private serialize;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
98
|
+
private deserialize;
|
|
99
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
|
|
5
|
+
import { UpdateCalculatedAttributeDefinitionRequest, UpdateCalculatedAttributeDefinitionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateCalculatedAttributeDefinitionCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateCalculatedAttributeDefinitionCommandInput extends UpdateCalculatedAttributeDefinitionRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateCalculatedAttributeDefinitionCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateCalculatedAttributeDefinitionCommandOutput extends UpdateCalculatedAttributeDefinitionResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Updates an existing calculated attribute definition. When updating the Conditions, note that increasing
|
|
27
|
+
* the date range of a calculated attribute will not trigger inclusion of historical data greater than the
|
|
28
|
+
* current date range.</p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { CustomerProfilesClient, UpdateCalculatedAttributeDefinitionCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
33
|
+
* // const { CustomerProfilesClient, UpdateCalculatedAttributeDefinitionCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
34
|
+
* const client = new CustomerProfilesClient(config);
|
|
35
|
+
* const input = { // UpdateCalculatedAttributeDefinitionRequest
|
|
36
|
+
* DomainName: "STRING_VALUE", // required
|
|
37
|
+
* CalculatedAttributeName: "STRING_VALUE", // required
|
|
38
|
+
* DisplayName: "STRING_VALUE",
|
|
39
|
+
* Description: "STRING_VALUE",
|
|
40
|
+
* Conditions: { // Conditions
|
|
41
|
+
* Range: { // Range
|
|
42
|
+
* Value: Number("int"), // required
|
|
43
|
+
* Unit: "DAYS", // required
|
|
44
|
+
* },
|
|
45
|
+
* ObjectCount: Number("int"),
|
|
46
|
+
* Threshold: { // Threshold
|
|
47
|
+
* Value: "STRING_VALUE", // required
|
|
48
|
+
* Operator: "EQUAL_TO" || "GREATER_THAN" || "LESS_THAN" || "NOT_EQUAL_TO", // required
|
|
49
|
+
* },
|
|
50
|
+
* },
|
|
51
|
+
* };
|
|
52
|
+
* const command = new UpdateCalculatedAttributeDefinitionCommand(input);
|
|
53
|
+
* const response = await client.send(command);
|
|
54
|
+
* // { // UpdateCalculatedAttributeDefinitionResponse
|
|
55
|
+
* // CalculatedAttributeName: "STRING_VALUE",
|
|
56
|
+
* // DisplayName: "STRING_VALUE",
|
|
57
|
+
* // Description: "STRING_VALUE",
|
|
58
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
59
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
60
|
+
* // Statistic: "FIRST_OCCURRENCE" || "LAST_OCCURRENCE" || "COUNT" || "SUM" || "MINIMUM" || "MAXIMUM" || "AVERAGE" || "MAX_OCCURRENCE",
|
|
61
|
+
* // Conditions: { // Conditions
|
|
62
|
+
* // Range: { // Range
|
|
63
|
+
* // Value: Number("int"), // required
|
|
64
|
+
* // Unit: "DAYS", // required
|
|
65
|
+
* // },
|
|
66
|
+
* // ObjectCount: Number("int"),
|
|
67
|
+
* // Threshold: { // Threshold
|
|
68
|
+
* // Value: "STRING_VALUE", // required
|
|
69
|
+
* // Operator: "EQUAL_TO" || "GREATER_THAN" || "LESS_THAN" || "NOT_EQUAL_TO", // required
|
|
70
|
+
* // },
|
|
71
|
+
* // },
|
|
72
|
+
* // AttributeDetails: { // AttributeDetails
|
|
73
|
+
* // Attributes: [ // AttributeList // required
|
|
74
|
+
* // { // AttributeItem
|
|
75
|
+
* // Name: "STRING_VALUE", // required
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // Expression: "STRING_VALUE", // required
|
|
79
|
+
* // },
|
|
80
|
+
* // Tags: { // TagMap
|
|
81
|
+
* // "<keys>": "STRING_VALUE",
|
|
82
|
+
* // },
|
|
83
|
+
* // };
|
|
84
|
+
*
|
|
85
|
+
* ```
|
|
86
|
+
*
|
|
87
|
+
* @param UpdateCalculatedAttributeDefinitionCommandInput - {@link UpdateCalculatedAttributeDefinitionCommandInput}
|
|
88
|
+
* @returns {@link UpdateCalculatedAttributeDefinitionCommandOutput}
|
|
89
|
+
* @see {@link UpdateCalculatedAttributeDefinitionCommandInput} for command's `input` shape.
|
|
90
|
+
* @see {@link UpdateCalculatedAttributeDefinitionCommandOutput} for command's `response` shape.
|
|
91
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
94
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link BadRequestException} (client fault)
|
|
97
|
+
* <p>The input you provided is invalid.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link InternalServerException} (server fault)
|
|
100
|
+
* <p>An internal service error occurred.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
103
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
106
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
107
|
+
*
|
|
108
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
109
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
110
|
+
*
|
|
111
|
+
*/
|
|
112
|
+
export declare class UpdateCalculatedAttributeDefinitionCommand extends $Command<UpdateCalculatedAttributeDefinitionCommandInput, UpdateCalculatedAttributeDefinitionCommandOutput, CustomerProfilesClientResolvedConfig> {
|
|
113
|
+
readonly input: UpdateCalculatedAttributeDefinitionCommandInput;
|
|
114
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
constructor(input: UpdateCalculatedAttributeDefinitionCommandInput);
|
|
119
|
+
/**
|
|
120
|
+
* @internal
|
|
121
|
+
*/
|
|
122
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CustomerProfilesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCalculatedAttributeDefinitionCommandInput, UpdateCalculatedAttributeDefinitionCommandOutput>;
|
|
123
|
+
/**
|
|
124
|
+
* @internal
|
|
125
|
+
*/
|
|
126
|
+
private serialize;
|
|
127
|
+
/**
|
|
128
|
+
* @internal
|
|
129
|
+
*/
|
|
130
|
+
private deserialize;
|
|
131
|
+
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from "./AddProfileKeyCommand";
|
|
2
|
+
export * from "./CreateCalculatedAttributeDefinitionCommand";
|
|
2
3
|
export * from "./CreateDomainCommand";
|
|
3
4
|
export * from "./CreateIntegrationWorkflowCommand";
|
|
4
5
|
export * from "./CreateProfileCommand";
|
|
6
|
+
export * from "./DeleteCalculatedAttributeDefinitionCommand";
|
|
5
7
|
export * from "./DeleteDomainCommand";
|
|
6
8
|
export * from "./DeleteIntegrationCommand";
|
|
7
9
|
export * from "./DeleteProfileCommand";
|
|
@@ -10,6 +12,8 @@ export * from "./DeleteProfileObjectCommand";
|
|
|
10
12
|
export * from "./DeleteProfileObjectTypeCommand";
|
|
11
13
|
export * from "./DeleteWorkflowCommand";
|
|
12
14
|
export * from "./GetAutoMergingPreviewCommand";
|
|
15
|
+
export * from "./GetCalculatedAttributeDefinitionCommand";
|
|
16
|
+
export * from "./GetCalculatedAttributeForProfileCommand";
|
|
13
17
|
export * from "./GetDomainCommand";
|
|
14
18
|
export * from "./GetIdentityResolutionJobCommand";
|
|
15
19
|
export * from "./GetIntegrationCommand";
|
|
@@ -19,6 +23,8 @@ export * from "./GetProfileObjectTypeTemplateCommand";
|
|
|
19
23
|
export * from "./GetWorkflowCommand";
|
|
20
24
|
export * from "./GetWorkflowStepsCommand";
|
|
21
25
|
export * from "./ListAccountIntegrationsCommand";
|
|
26
|
+
export * from "./ListCalculatedAttributeDefinitionsCommand";
|
|
27
|
+
export * from "./ListCalculatedAttributesForProfileCommand";
|
|
22
28
|
export * from "./ListDomainsCommand";
|
|
23
29
|
export * from "./ListIdentityResolutionJobsCommand";
|
|
24
30
|
export * from "./ListIntegrationsCommand";
|
|
@@ -34,5 +40,6 @@ export * from "./PutProfileObjectTypeCommand";
|
|
|
34
40
|
export * from "./SearchProfilesCommand";
|
|
35
41
|
export * from "./TagResourceCommand";
|
|
36
42
|
export * from "./UntagResourceCommand";
|
|
43
|
+
export * from "./UpdateCalculatedAttributeDefinitionCommand";
|
|
37
44
|
export * from "./UpdateDomainCommand";
|
|
38
45
|
export * from "./UpdateProfileCommand";
|
|
@@ -13,7 +13,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
|
|
|
13
13
|
defaultSigningName: string;
|
|
14
14
|
};
|
|
15
15
|
export interface EndpointParameters extends __EndpointParameters {
|
|
16
|
-
Region
|
|
16
|
+
Region?: string;
|
|
17
17
|
UseDualStack?: boolean;
|
|
18
18
|
UseFIPS?: boolean;
|
|
19
19
|
Endpoint?: string;
|