@aws-sdk/client-customer-profiles 3.693.0 → 3.696.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 +104 -0
- package/dist-cjs/index.js +1265 -46
- package/dist-es/CustomerProfiles.js +26 -0
- package/dist-es/commands/BatchGetCalculatedAttributeForProfileCommand.js +23 -0
- package/dist-es/commands/BatchGetProfileCommand.js +23 -0
- package/dist-es/commands/CreateSegmentDefinitionCommand.js +23 -0
- package/dist-es/commands/CreateSegmentEstimateCommand.js +23 -0
- package/dist-es/commands/CreateSegmentSnapshotCommand.js +22 -0
- package/dist-es/commands/DeleteSegmentDefinitionCommand.js +22 -0
- package/dist-es/commands/GetSegmentDefinitionCommand.js +23 -0
- package/dist-es/commands/GetSegmentEstimateCommand.js +22 -0
- package/dist-es/commands/GetSegmentMembershipCommand.js +23 -0
- package/dist-es/commands/GetSegmentSnapshotCommand.js +22 -0
- package/dist-es/commands/ListObjectTypeAttributesCommand.js +22 -0
- package/dist-es/commands/ListProfileAttributeValuesCommand.js +22 -0
- package/dist-es/commands/ListSegmentDefinitionsCommand.js +23 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/models_0.js +208 -34
- package/dist-es/pagination/GetSimilarProfilesPaginator.js +4 -0
- package/dist-es/pagination/ListObjectTypeAttributesPaginator.js +4 -0
- package/dist-es/pagination/ListRuleBasedMatchesPaginator.js +4 -0
- package/dist-es/pagination/ListSegmentDefinitionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +739 -2
- package/dist-types/CustomerProfiles.d.ts +91 -0
- package/dist-types/CustomerProfilesClient.d.ts +15 -2
- package/dist-types/commands/BatchGetCalculatedAttributeForProfileCommand.d.ts +119 -0
- package/dist-types/commands/BatchGetProfileCommand.d.ts +177 -0
- package/dist-types/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +40 -0
- package/dist-types/commands/CreateSegmentDefinitionCommand.d.ts +221 -0
- package/dist-types/commands/CreateSegmentEstimateCommand.d.ts +210 -0
- package/dist-types/commands/CreateSegmentSnapshotCommand.d.ts +91 -0
- package/dist-types/commands/DeleteSegmentDefinitionCommand.d.ts +87 -0
- package/dist-types/commands/DetectProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetCalculatedAttributeDefinitionCommand.d.ts +20 -0
- package/dist-types/commands/GetProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetProfileObjectTypeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +216 -0
- package/dist-types/commands/GetSegmentEstimateCommand.d.ts +92 -0
- package/dist-types/commands/GetSegmentMembershipCommand.d.ts +183 -0
- package/dist-types/commands/GetSegmentSnapshotCommand.d.ts +94 -0
- package/dist-types/commands/ListObjectTypeAttributesCommand.d.ts +95 -0
- package/dist-types/commands/ListProfileAttributeValuesCommand.d.ts +94 -0
- package/dist-types/commands/ListSegmentDefinitionsCommand.d.ts +100 -0
- package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +2277 -826
- package/dist-types/pagination/GetSimilarProfilesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListObjectTypeAttributesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRuleBasedMatchesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSegmentDefinitionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +117 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +227 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/BatchGetCalculatedAttributeForProfileCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetProfileCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateSegmentDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateSegmentEstimateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateSegmentSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteSegmentDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSegmentDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSegmentEstimateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSegmentMembershipCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSegmentSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListObjectTypeAttributesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProfileAttributeValuesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSegmentDefinitionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +503 -44
- package/dist-types/ts3.4/pagination/GetSimilarProfilesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListObjectTypeAttributesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRuleBasedMatchesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSegmentDefinitionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +156 -0
- package/package.json +35 -35
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
|
|
4
|
+
import { ListObjectTypeAttributesRequest, ListObjectTypeAttributesResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListObjectTypeAttributesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListObjectTypeAttributesCommandInput extends ListObjectTypeAttributesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListObjectTypeAttributesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListObjectTypeAttributesCommandOutput extends ListObjectTypeAttributesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListObjectTypeAttributesCommand_base: {
|
|
25
|
+
new (input: ListObjectTypeAttributesCommandInput): import("@smithy/smithy-client").CommandImpl<ListObjectTypeAttributesCommandInput, ListObjectTypeAttributesCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: ListObjectTypeAttributesCommandInput): import("@smithy/smithy-client").CommandImpl<ListObjectTypeAttributesCommandInput, ListObjectTypeAttributesCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Fetch the possible attribute values given the attribute name.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { CustomerProfilesClient, ListObjectTypeAttributesCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
35
|
+
* // const { CustomerProfilesClient, ListObjectTypeAttributesCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
36
|
+
* const client = new CustomerProfilesClient(config);
|
|
37
|
+
* const input = { // ListObjectTypeAttributesRequest
|
|
38
|
+
* NextToken: "STRING_VALUE",
|
|
39
|
+
* MaxResults: Number("int"),
|
|
40
|
+
* DomainName: "STRING_VALUE", // required
|
|
41
|
+
* ObjectTypeName: "STRING_VALUE", // required
|
|
42
|
+
* };
|
|
43
|
+
* const command = new ListObjectTypeAttributesCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // ListObjectTypeAttributesResponse
|
|
46
|
+
* // Items: [ // ListObjectTypeAttributesList
|
|
47
|
+
* // { // ListObjectTypeAttributeItem
|
|
48
|
+
* // AttributeName: "STRING_VALUE", // required
|
|
49
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // NextToken: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
55
|
+
* ```
|
|
56
|
+
*
|
|
57
|
+
* @param ListObjectTypeAttributesCommandInput - {@link ListObjectTypeAttributesCommandInput}
|
|
58
|
+
* @returns {@link ListObjectTypeAttributesCommandOutput}
|
|
59
|
+
* @see {@link ListObjectTypeAttributesCommandInput} for command's `input` shape.
|
|
60
|
+
* @see {@link ListObjectTypeAttributesCommandOutput} for command's `response` shape.
|
|
61
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
64
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link BadRequestException} (client fault)
|
|
67
|
+
* <p>The input you provided is invalid.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link InternalServerException} (server fault)
|
|
70
|
+
* <p>An internal service error occurred.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
73
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
76
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
80
|
+
*
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class ListObjectTypeAttributesCommand extends ListObjectTypeAttributesCommand_base {
|
|
84
|
+
/** @internal type navigation helper, not in runtime. */
|
|
85
|
+
protected static __types: {
|
|
86
|
+
api: {
|
|
87
|
+
input: ListObjectTypeAttributesRequest;
|
|
88
|
+
output: ListObjectTypeAttributesResponse;
|
|
89
|
+
};
|
|
90
|
+
sdk: {
|
|
91
|
+
input: ListObjectTypeAttributesCommandInput;
|
|
92
|
+
output: ListObjectTypeAttributesCommandOutput;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
|
|
4
|
+
import { ProfileAttributeValuesRequest, ProfileAttributeValuesResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListProfileAttributeValuesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListProfileAttributeValuesCommandInput extends ProfileAttributeValuesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListProfileAttributeValuesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListProfileAttributeValuesCommandOutput extends ProfileAttributeValuesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListProfileAttributeValuesCommand_base: {
|
|
25
|
+
new (input: ListProfileAttributeValuesCommandInput): import("@smithy/smithy-client").CommandImpl<ListProfileAttributeValuesCommandInput, ListProfileAttributeValuesCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: ListProfileAttributeValuesCommandInput): import("@smithy/smithy-client").CommandImpl<ListProfileAttributeValuesCommandInput, ListProfileAttributeValuesCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Fetch the possible attribute values given the attribute name.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { CustomerProfilesClient, ListProfileAttributeValuesCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
35
|
+
* // const { CustomerProfilesClient, ListProfileAttributeValuesCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
36
|
+
* const client = new CustomerProfilesClient(config);
|
|
37
|
+
* const input = { // ProfileAttributeValuesRequest
|
|
38
|
+
* DomainName: "STRING_VALUE", // required
|
|
39
|
+
* AttributeName: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new ListProfileAttributeValuesCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // ProfileAttributeValuesResponse
|
|
44
|
+
* // DomainName: "STRING_VALUE",
|
|
45
|
+
* // AttributeName: "STRING_VALUE",
|
|
46
|
+
* // Items: [ // AttributeValueItemList
|
|
47
|
+
* // { // AttributeValueItem
|
|
48
|
+
* // Value: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // StatusCode: Number("int"),
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* @param ListProfileAttributeValuesCommandInput - {@link ListProfileAttributeValuesCommandInput}
|
|
57
|
+
* @returns {@link ListProfileAttributeValuesCommandOutput}
|
|
58
|
+
* @see {@link ListProfileAttributeValuesCommandInput} for command's `input` shape.
|
|
59
|
+
* @see {@link ListProfileAttributeValuesCommandOutput} for command's `response` shape.
|
|
60
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
63
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link BadRequestException} (client fault)
|
|
66
|
+
* <p>The input you provided is invalid.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link InternalServerException} (server fault)
|
|
69
|
+
* <p>An internal service error occurred.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
72
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
75
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
79
|
+
*
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export declare class ListProfileAttributeValuesCommand extends ListProfileAttributeValuesCommand_base {
|
|
83
|
+
/** @internal type navigation helper, not in runtime. */
|
|
84
|
+
protected static __types: {
|
|
85
|
+
api: {
|
|
86
|
+
input: ProfileAttributeValuesRequest;
|
|
87
|
+
output: ProfileAttributeValuesResponse;
|
|
88
|
+
};
|
|
89
|
+
sdk: {
|
|
90
|
+
input: ListProfileAttributeValuesCommandInput;
|
|
91
|
+
output: ListProfileAttributeValuesCommandOutput;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
|
|
4
|
+
import { ListSegmentDefinitionsRequest, ListSegmentDefinitionsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListSegmentDefinitionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListSegmentDefinitionsCommandInput extends ListSegmentDefinitionsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListSegmentDefinitionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListSegmentDefinitionsCommandOutput extends ListSegmentDefinitionsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListSegmentDefinitionsCommand_base: {
|
|
25
|
+
new (input: ListSegmentDefinitionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSegmentDefinitionsCommandInput, ListSegmentDefinitionsCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: ListSegmentDefinitionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSegmentDefinitionsCommandInput, ListSegmentDefinitionsCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Lists all segment definitions under a domain.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { CustomerProfilesClient, ListSegmentDefinitionsCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
35
|
+
* // const { CustomerProfilesClient, ListSegmentDefinitionsCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
36
|
+
* const client = new CustomerProfilesClient(config);
|
|
37
|
+
* const input = { // ListSegmentDefinitionsRequest
|
|
38
|
+
* DomainName: "STRING_VALUE", // required
|
|
39
|
+
* MaxResults: Number("int"),
|
|
40
|
+
* NextToken: "STRING_VALUE",
|
|
41
|
+
* };
|
|
42
|
+
* const command = new ListSegmentDefinitionsCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // ListSegmentDefinitionsResponse
|
|
45
|
+
* // NextToken: "STRING_VALUE",
|
|
46
|
+
* // Items: [ // SegmentDefinitionsList
|
|
47
|
+
* // { // SegmentDefinitionItem
|
|
48
|
+
* // SegmentDefinitionName: "STRING_VALUE",
|
|
49
|
+
* // DisplayName: "STRING_VALUE",
|
|
50
|
+
* // Description: "STRING_VALUE",
|
|
51
|
+
* // SegmentDefinitionArn: "STRING_VALUE",
|
|
52
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
53
|
+
* // Tags: { // TagMap
|
|
54
|
+
* // "<keys>": "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* @param ListSegmentDefinitionsCommandInput - {@link ListSegmentDefinitionsCommandInput}
|
|
63
|
+
* @returns {@link ListSegmentDefinitionsCommandOutput}
|
|
64
|
+
* @see {@link ListSegmentDefinitionsCommandInput} for command's `input` shape.
|
|
65
|
+
* @see {@link ListSegmentDefinitionsCommandOutput} for command's `response` shape.
|
|
66
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
69
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link BadRequestException} (client fault)
|
|
72
|
+
* <p>The input you provided is invalid.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link InternalServerException} (server fault)
|
|
75
|
+
* <p>An internal service error occurred.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
78
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
81
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
85
|
+
*
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export declare class ListSegmentDefinitionsCommand extends ListSegmentDefinitionsCommand_base {
|
|
89
|
+
/** @internal type navigation helper, not in runtime. */
|
|
90
|
+
protected static __types: {
|
|
91
|
+
api: {
|
|
92
|
+
input: ListSegmentDefinitionsRequest;
|
|
93
|
+
output: ListSegmentDefinitionsResponse;
|
|
94
|
+
};
|
|
95
|
+
sdk: {
|
|
96
|
+
input: ListSegmentDefinitionsCommandInput;
|
|
97
|
+
output: ListSegmentDefinitionsCommandOutput;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
}
|
|
@@ -57,7 +57,7 @@ declare const PutProfileObjectTypeCommand_base: {
|
|
|
57
57
|
* "<keys>": [ // ObjectTypeKeyList
|
|
58
58
|
* { // ObjectTypeKey
|
|
59
59
|
* StandardIdentifiers: [ // StandardIdentifierList
|
|
60
|
-
* "PROFILE" || "ASSET" || "CASE" || "
|
|
60
|
+
* "PROFILE" || "ASSET" || "CASE" || "ORDER" || "COMMUNICATION_RECORD" || "UNIQUE" || "SECONDARY" || "LOOKUP_ONLY" || "NEW_ONLY",
|
|
61
61
|
* ],
|
|
62
62
|
* FieldNames: [ // FieldNameList
|
|
63
63
|
* "STRING_VALUE",
|
|
@@ -92,7 +92,7 @@ declare const PutProfileObjectTypeCommand_base: {
|
|
|
92
92
|
* // "<keys>": [ // ObjectTypeKeyList
|
|
93
93
|
* // { // ObjectTypeKey
|
|
94
94
|
* // StandardIdentifiers: [ // StandardIdentifierList
|
|
95
|
-
* // "PROFILE" || "ASSET" || "CASE" || "
|
|
95
|
+
* // "PROFILE" || "ASSET" || "CASE" || "ORDER" || "COMMUNICATION_RECORD" || "UNIQUE" || "SECONDARY" || "LOOKUP_ONLY" || "NEW_ONLY",
|
|
96
96
|
* // ],
|
|
97
97
|
* // FieldNames: [ // FieldNameList
|
|
98
98
|
* // "STRING_VALUE",
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
export * from "./AddProfileKeyCommand";
|
|
2
|
+
export * from "./BatchGetCalculatedAttributeForProfileCommand";
|
|
3
|
+
export * from "./BatchGetProfileCommand";
|
|
2
4
|
export * from "./CreateCalculatedAttributeDefinitionCommand";
|
|
3
5
|
export * from "./CreateDomainCommand";
|
|
4
6
|
export * from "./CreateEventStreamCommand";
|
|
5
7
|
export * from "./CreateIntegrationWorkflowCommand";
|
|
6
8
|
export * from "./CreateProfileCommand";
|
|
9
|
+
export * from "./CreateSegmentDefinitionCommand";
|
|
10
|
+
export * from "./CreateSegmentEstimateCommand";
|
|
11
|
+
export * from "./CreateSegmentSnapshotCommand";
|
|
7
12
|
export * from "./DeleteCalculatedAttributeDefinitionCommand";
|
|
8
13
|
export * from "./DeleteDomainCommand";
|
|
9
14
|
export * from "./DeleteEventStreamCommand";
|
|
@@ -12,6 +17,7 @@ export * from "./DeleteProfileCommand";
|
|
|
12
17
|
export * from "./DeleteProfileKeyCommand";
|
|
13
18
|
export * from "./DeleteProfileObjectCommand";
|
|
14
19
|
export * from "./DeleteProfileObjectTypeCommand";
|
|
20
|
+
export * from "./DeleteSegmentDefinitionCommand";
|
|
15
21
|
export * from "./DeleteWorkflowCommand";
|
|
16
22
|
export * from "./DetectProfileObjectTypeCommand";
|
|
17
23
|
export * from "./GetAutoMergingPreviewCommand";
|
|
@@ -24,6 +30,10 @@ export * from "./GetIntegrationCommand";
|
|
|
24
30
|
export * from "./GetMatchesCommand";
|
|
25
31
|
export * from "./GetProfileObjectTypeCommand";
|
|
26
32
|
export * from "./GetProfileObjectTypeTemplateCommand";
|
|
33
|
+
export * from "./GetSegmentDefinitionCommand";
|
|
34
|
+
export * from "./GetSegmentEstimateCommand";
|
|
35
|
+
export * from "./GetSegmentMembershipCommand";
|
|
36
|
+
export * from "./GetSegmentSnapshotCommand";
|
|
27
37
|
export * from "./GetSimilarProfilesCommand";
|
|
28
38
|
export * from "./GetWorkflowCommand";
|
|
29
39
|
export * from "./GetWorkflowStepsCommand";
|
|
@@ -34,10 +44,13 @@ export * from "./ListDomainsCommand";
|
|
|
34
44
|
export * from "./ListEventStreamsCommand";
|
|
35
45
|
export * from "./ListIdentityResolutionJobsCommand";
|
|
36
46
|
export * from "./ListIntegrationsCommand";
|
|
47
|
+
export * from "./ListObjectTypeAttributesCommand";
|
|
48
|
+
export * from "./ListProfileAttributeValuesCommand";
|
|
37
49
|
export * from "./ListProfileObjectTypeTemplatesCommand";
|
|
38
50
|
export * from "./ListProfileObjectTypesCommand";
|
|
39
51
|
export * from "./ListProfileObjectsCommand";
|
|
40
52
|
export * from "./ListRuleBasedMatchesCommand";
|
|
53
|
+
export * from "./ListSegmentDefinitionsCommand";
|
|
41
54
|
export * from "./ListTagsForResourceCommand";
|
|
42
55
|
export * from "./ListWorkflowsCommand";
|
|
43
56
|
export * from "./MergeProfilesCommand";
|