@aws-sdk/client-customer-profiles 3.693.0 → 3.695.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 +1 -1
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
2
|
import { AddProfileKeyCommandInput, AddProfileKeyCommandOutput } from "./commands/AddProfileKeyCommand";
|
|
3
|
+
import { BatchGetCalculatedAttributeForProfileCommandInput, BatchGetCalculatedAttributeForProfileCommandOutput } from "./commands/BatchGetCalculatedAttributeForProfileCommand";
|
|
4
|
+
import { BatchGetProfileCommandInput, BatchGetProfileCommandOutput } from "./commands/BatchGetProfileCommand";
|
|
3
5
|
import { CreateCalculatedAttributeDefinitionCommandInput, CreateCalculatedAttributeDefinitionCommandOutput } from "./commands/CreateCalculatedAttributeDefinitionCommand";
|
|
4
6
|
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
|
|
5
7
|
import { CreateEventStreamCommandInput, CreateEventStreamCommandOutput } from "./commands/CreateEventStreamCommand";
|
|
6
8
|
import { CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput } from "./commands/CreateIntegrationWorkflowCommand";
|
|
7
9
|
import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand";
|
|
10
|
+
import { CreateSegmentDefinitionCommandInput, CreateSegmentDefinitionCommandOutput } from "./commands/CreateSegmentDefinitionCommand";
|
|
11
|
+
import { CreateSegmentEstimateCommandInput, CreateSegmentEstimateCommandOutput } from "./commands/CreateSegmentEstimateCommand";
|
|
12
|
+
import { CreateSegmentSnapshotCommandInput, CreateSegmentSnapshotCommandOutput } from "./commands/CreateSegmentSnapshotCommand";
|
|
8
13
|
import { DeleteCalculatedAttributeDefinitionCommandInput, DeleteCalculatedAttributeDefinitionCommandOutput } from "./commands/DeleteCalculatedAttributeDefinitionCommand";
|
|
9
14
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
10
15
|
import { DeleteEventStreamCommandInput, DeleteEventStreamCommandOutput } from "./commands/DeleteEventStreamCommand";
|
|
@@ -13,6 +18,7 @@ import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "./command
|
|
|
13
18
|
import { DeleteProfileKeyCommandInput, DeleteProfileKeyCommandOutput } from "./commands/DeleteProfileKeyCommand";
|
|
14
19
|
import { DeleteProfileObjectCommandInput, DeleteProfileObjectCommandOutput } from "./commands/DeleteProfileObjectCommand";
|
|
15
20
|
import { DeleteProfileObjectTypeCommandInput, DeleteProfileObjectTypeCommandOutput } from "./commands/DeleteProfileObjectTypeCommand";
|
|
21
|
+
import { DeleteSegmentDefinitionCommandInput, DeleteSegmentDefinitionCommandOutput } from "./commands/DeleteSegmentDefinitionCommand";
|
|
16
22
|
import { DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput } from "./commands/DeleteWorkflowCommand";
|
|
17
23
|
import { DetectProfileObjectTypeCommandInput, DetectProfileObjectTypeCommandOutput } from "./commands/DetectProfileObjectTypeCommand";
|
|
18
24
|
import { GetAutoMergingPreviewCommandInput, GetAutoMergingPreviewCommandOutput } from "./commands/GetAutoMergingPreviewCommand";
|
|
@@ -25,6 +31,10 @@ import { GetIntegrationCommandInput, GetIntegrationCommandOutput } from "./comma
|
|
|
25
31
|
import { GetMatchesCommandInput, GetMatchesCommandOutput } from "./commands/GetMatchesCommand";
|
|
26
32
|
import { GetProfileObjectTypeCommandInput, GetProfileObjectTypeCommandOutput } from "./commands/GetProfileObjectTypeCommand";
|
|
27
33
|
import { GetProfileObjectTypeTemplateCommandInput, GetProfileObjectTypeTemplateCommandOutput } from "./commands/GetProfileObjectTypeTemplateCommand";
|
|
34
|
+
import { GetSegmentDefinitionCommandInput, GetSegmentDefinitionCommandOutput } from "./commands/GetSegmentDefinitionCommand";
|
|
35
|
+
import { GetSegmentEstimateCommandInput, GetSegmentEstimateCommandOutput } from "./commands/GetSegmentEstimateCommand";
|
|
36
|
+
import { GetSegmentMembershipCommandInput, GetSegmentMembershipCommandOutput } from "./commands/GetSegmentMembershipCommand";
|
|
37
|
+
import { GetSegmentSnapshotCommandInput, GetSegmentSnapshotCommandOutput } from "./commands/GetSegmentSnapshotCommand";
|
|
28
38
|
import { GetSimilarProfilesCommandInput, GetSimilarProfilesCommandOutput } from "./commands/GetSimilarProfilesCommand";
|
|
29
39
|
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
30
40
|
import { GetWorkflowStepsCommandInput, GetWorkflowStepsCommandOutput } from "./commands/GetWorkflowStepsCommand";
|
|
@@ -35,10 +45,13 @@ import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/Li
|
|
|
35
45
|
import { ListEventStreamsCommandInput, ListEventStreamsCommandOutput } from "./commands/ListEventStreamsCommand";
|
|
36
46
|
import { ListIdentityResolutionJobsCommandInput, ListIdentityResolutionJobsCommandOutput } from "./commands/ListIdentityResolutionJobsCommand";
|
|
37
47
|
import { ListIntegrationsCommandInput, ListIntegrationsCommandOutput } from "./commands/ListIntegrationsCommand";
|
|
48
|
+
import { ListObjectTypeAttributesCommandInput, ListObjectTypeAttributesCommandOutput } from "./commands/ListObjectTypeAttributesCommand";
|
|
49
|
+
import { ListProfileAttributeValuesCommandInput, ListProfileAttributeValuesCommandOutput } from "./commands/ListProfileAttributeValuesCommand";
|
|
38
50
|
import { ListProfileObjectsCommandInput, ListProfileObjectsCommandOutput } from "./commands/ListProfileObjectsCommand";
|
|
39
51
|
import { ListProfileObjectTypesCommandInput, ListProfileObjectTypesCommandOutput } from "./commands/ListProfileObjectTypesCommand";
|
|
40
52
|
import { ListProfileObjectTypeTemplatesCommandInput, ListProfileObjectTypeTemplatesCommandOutput } from "./commands/ListProfileObjectTypeTemplatesCommand";
|
|
41
53
|
import { ListRuleBasedMatchesCommandInput, ListRuleBasedMatchesCommandOutput } from "./commands/ListRuleBasedMatchesCommand";
|
|
54
|
+
import { ListSegmentDefinitionsCommandInput, ListSegmentDefinitionsCommandOutput } from "./commands/ListSegmentDefinitionsCommand";
|
|
42
55
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
43
56
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
44
57
|
import { MergeProfilesCommandInput, MergeProfilesCommandOutput } from "./commands/MergeProfilesCommand";
|
|
@@ -59,6 +72,18 @@ export interface CustomerProfiles {
|
|
|
59
72
|
addProfileKey(args: AddProfileKeyCommandInput, options?: __HttpHandlerOptions): Promise<AddProfileKeyCommandOutput>;
|
|
60
73
|
addProfileKey(args: AddProfileKeyCommandInput, cb: (err: any, data?: AddProfileKeyCommandOutput) => void): void;
|
|
61
74
|
addProfileKey(args: AddProfileKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddProfileKeyCommandOutput) => void): void;
|
|
75
|
+
/**
|
|
76
|
+
* @see {@link BatchGetCalculatedAttributeForProfileCommand}
|
|
77
|
+
*/
|
|
78
|
+
batchGetCalculatedAttributeForProfile(args: BatchGetCalculatedAttributeForProfileCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetCalculatedAttributeForProfileCommandOutput>;
|
|
79
|
+
batchGetCalculatedAttributeForProfile(args: BatchGetCalculatedAttributeForProfileCommandInput, cb: (err: any, data?: BatchGetCalculatedAttributeForProfileCommandOutput) => void): void;
|
|
80
|
+
batchGetCalculatedAttributeForProfile(args: BatchGetCalculatedAttributeForProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetCalculatedAttributeForProfileCommandOutput) => void): void;
|
|
81
|
+
/**
|
|
82
|
+
* @see {@link BatchGetProfileCommand}
|
|
83
|
+
*/
|
|
84
|
+
batchGetProfile(args: BatchGetProfileCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetProfileCommandOutput>;
|
|
85
|
+
batchGetProfile(args: BatchGetProfileCommandInput, cb: (err: any, data?: BatchGetProfileCommandOutput) => void): void;
|
|
86
|
+
batchGetProfile(args: BatchGetProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetProfileCommandOutput) => void): void;
|
|
62
87
|
/**
|
|
63
88
|
* @see {@link CreateCalculatedAttributeDefinitionCommand}
|
|
64
89
|
*/
|
|
@@ -89,6 +114,24 @@ export interface CustomerProfiles {
|
|
|
89
114
|
createProfile(args: CreateProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateProfileCommandOutput>;
|
|
90
115
|
createProfile(args: CreateProfileCommandInput, cb: (err: any, data?: CreateProfileCommandOutput) => void): void;
|
|
91
116
|
createProfile(args: CreateProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProfileCommandOutput) => void): void;
|
|
117
|
+
/**
|
|
118
|
+
* @see {@link CreateSegmentDefinitionCommand}
|
|
119
|
+
*/
|
|
120
|
+
createSegmentDefinition(args: CreateSegmentDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateSegmentDefinitionCommandOutput>;
|
|
121
|
+
createSegmentDefinition(args: CreateSegmentDefinitionCommandInput, cb: (err: any, data?: CreateSegmentDefinitionCommandOutput) => void): void;
|
|
122
|
+
createSegmentDefinition(args: CreateSegmentDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSegmentDefinitionCommandOutput) => void): void;
|
|
123
|
+
/**
|
|
124
|
+
* @see {@link CreateSegmentEstimateCommand}
|
|
125
|
+
*/
|
|
126
|
+
createSegmentEstimate(args: CreateSegmentEstimateCommandInput, options?: __HttpHandlerOptions): Promise<CreateSegmentEstimateCommandOutput>;
|
|
127
|
+
createSegmentEstimate(args: CreateSegmentEstimateCommandInput, cb: (err: any, data?: CreateSegmentEstimateCommandOutput) => void): void;
|
|
128
|
+
createSegmentEstimate(args: CreateSegmentEstimateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSegmentEstimateCommandOutput) => void): void;
|
|
129
|
+
/**
|
|
130
|
+
* @see {@link CreateSegmentSnapshotCommand}
|
|
131
|
+
*/
|
|
132
|
+
createSegmentSnapshot(args: CreateSegmentSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CreateSegmentSnapshotCommandOutput>;
|
|
133
|
+
createSegmentSnapshot(args: CreateSegmentSnapshotCommandInput, cb: (err: any, data?: CreateSegmentSnapshotCommandOutput) => void): void;
|
|
134
|
+
createSegmentSnapshot(args: CreateSegmentSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSegmentSnapshotCommandOutput) => void): void;
|
|
92
135
|
/**
|
|
93
136
|
* @see {@link DeleteCalculatedAttributeDefinitionCommand}
|
|
94
137
|
*/
|
|
@@ -137,6 +180,12 @@ export interface CustomerProfiles {
|
|
|
137
180
|
deleteProfileObjectType(args: DeleteProfileObjectTypeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProfileObjectTypeCommandOutput>;
|
|
138
181
|
deleteProfileObjectType(args: DeleteProfileObjectTypeCommandInput, cb: (err: any, data?: DeleteProfileObjectTypeCommandOutput) => void): void;
|
|
139
182
|
deleteProfileObjectType(args: DeleteProfileObjectTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProfileObjectTypeCommandOutput) => void): void;
|
|
183
|
+
/**
|
|
184
|
+
* @see {@link DeleteSegmentDefinitionCommand}
|
|
185
|
+
*/
|
|
186
|
+
deleteSegmentDefinition(args: DeleteSegmentDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSegmentDefinitionCommandOutput>;
|
|
187
|
+
deleteSegmentDefinition(args: DeleteSegmentDefinitionCommandInput, cb: (err: any, data?: DeleteSegmentDefinitionCommandOutput) => void): void;
|
|
188
|
+
deleteSegmentDefinition(args: DeleteSegmentDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSegmentDefinitionCommandOutput) => void): void;
|
|
140
189
|
/**
|
|
141
190
|
* @see {@link DeleteWorkflowCommand}
|
|
142
191
|
*/
|
|
@@ -209,6 +258,30 @@ export interface CustomerProfiles {
|
|
|
209
258
|
getProfileObjectTypeTemplate(args: GetProfileObjectTypeTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetProfileObjectTypeTemplateCommandOutput>;
|
|
210
259
|
getProfileObjectTypeTemplate(args: GetProfileObjectTypeTemplateCommandInput, cb: (err: any, data?: GetProfileObjectTypeTemplateCommandOutput) => void): void;
|
|
211
260
|
getProfileObjectTypeTemplate(args: GetProfileObjectTypeTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProfileObjectTypeTemplateCommandOutput) => void): void;
|
|
261
|
+
/**
|
|
262
|
+
* @see {@link GetSegmentDefinitionCommand}
|
|
263
|
+
*/
|
|
264
|
+
getSegmentDefinition(args: GetSegmentDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetSegmentDefinitionCommandOutput>;
|
|
265
|
+
getSegmentDefinition(args: GetSegmentDefinitionCommandInput, cb: (err: any, data?: GetSegmentDefinitionCommandOutput) => void): void;
|
|
266
|
+
getSegmentDefinition(args: GetSegmentDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSegmentDefinitionCommandOutput) => void): void;
|
|
267
|
+
/**
|
|
268
|
+
* @see {@link GetSegmentEstimateCommand}
|
|
269
|
+
*/
|
|
270
|
+
getSegmentEstimate(args: GetSegmentEstimateCommandInput, options?: __HttpHandlerOptions): Promise<GetSegmentEstimateCommandOutput>;
|
|
271
|
+
getSegmentEstimate(args: GetSegmentEstimateCommandInput, cb: (err: any, data?: GetSegmentEstimateCommandOutput) => void): void;
|
|
272
|
+
getSegmentEstimate(args: GetSegmentEstimateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSegmentEstimateCommandOutput) => void): void;
|
|
273
|
+
/**
|
|
274
|
+
* @see {@link GetSegmentMembershipCommand}
|
|
275
|
+
*/
|
|
276
|
+
getSegmentMembership(args: GetSegmentMembershipCommandInput, options?: __HttpHandlerOptions): Promise<GetSegmentMembershipCommandOutput>;
|
|
277
|
+
getSegmentMembership(args: GetSegmentMembershipCommandInput, cb: (err: any, data?: GetSegmentMembershipCommandOutput) => void): void;
|
|
278
|
+
getSegmentMembership(args: GetSegmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSegmentMembershipCommandOutput) => void): void;
|
|
279
|
+
/**
|
|
280
|
+
* @see {@link GetSegmentSnapshotCommand}
|
|
281
|
+
*/
|
|
282
|
+
getSegmentSnapshot(args: GetSegmentSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<GetSegmentSnapshotCommandOutput>;
|
|
283
|
+
getSegmentSnapshot(args: GetSegmentSnapshotCommandInput, cb: (err: any, data?: GetSegmentSnapshotCommandOutput) => void): void;
|
|
284
|
+
getSegmentSnapshot(args: GetSegmentSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSegmentSnapshotCommandOutput) => void): void;
|
|
212
285
|
/**
|
|
213
286
|
* @see {@link GetSimilarProfilesCommand}
|
|
214
287
|
*/
|
|
@@ -270,6 +343,18 @@ export interface CustomerProfiles {
|
|
|
270
343
|
listIntegrations(args: ListIntegrationsCommandInput, options?: __HttpHandlerOptions): Promise<ListIntegrationsCommandOutput>;
|
|
271
344
|
listIntegrations(args: ListIntegrationsCommandInput, cb: (err: any, data?: ListIntegrationsCommandOutput) => void): void;
|
|
272
345
|
listIntegrations(args: ListIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIntegrationsCommandOutput) => void): void;
|
|
346
|
+
/**
|
|
347
|
+
* @see {@link ListObjectTypeAttributesCommand}
|
|
348
|
+
*/
|
|
349
|
+
listObjectTypeAttributes(args: ListObjectTypeAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectTypeAttributesCommandOutput>;
|
|
350
|
+
listObjectTypeAttributes(args: ListObjectTypeAttributesCommandInput, cb: (err: any, data?: ListObjectTypeAttributesCommandOutput) => void): void;
|
|
351
|
+
listObjectTypeAttributes(args: ListObjectTypeAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectTypeAttributesCommandOutput) => void): void;
|
|
352
|
+
/**
|
|
353
|
+
* @see {@link ListProfileAttributeValuesCommand}
|
|
354
|
+
*/
|
|
355
|
+
listProfileAttributeValues(args: ListProfileAttributeValuesCommandInput, options?: __HttpHandlerOptions): Promise<ListProfileAttributeValuesCommandOutput>;
|
|
356
|
+
listProfileAttributeValues(args: ListProfileAttributeValuesCommandInput, cb: (err: any, data?: ListProfileAttributeValuesCommandOutput) => void): void;
|
|
357
|
+
listProfileAttributeValues(args: ListProfileAttributeValuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfileAttributeValuesCommandOutput) => void): void;
|
|
273
358
|
/**
|
|
274
359
|
* @see {@link ListProfileObjectsCommand}
|
|
275
360
|
*/
|
|
@@ -295,6 +380,12 @@ export interface CustomerProfiles {
|
|
|
295
380
|
listRuleBasedMatches(args: ListRuleBasedMatchesCommandInput, options?: __HttpHandlerOptions): Promise<ListRuleBasedMatchesCommandOutput>;
|
|
296
381
|
listRuleBasedMatches(args: ListRuleBasedMatchesCommandInput, cb: (err: any, data?: ListRuleBasedMatchesCommandOutput) => void): void;
|
|
297
382
|
listRuleBasedMatches(args: ListRuleBasedMatchesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRuleBasedMatchesCommandOutput) => void): void;
|
|
383
|
+
/**
|
|
384
|
+
* @see {@link ListSegmentDefinitionsCommand}
|
|
385
|
+
*/
|
|
386
|
+
listSegmentDefinitions(args: ListSegmentDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListSegmentDefinitionsCommandOutput>;
|
|
387
|
+
listSegmentDefinitions(args: ListSegmentDefinitionsCommandInput, cb: (err: any, data?: ListSegmentDefinitionsCommandOutput) => void): void;
|
|
388
|
+
listSegmentDefinitions(args: ListSegmentDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSegmentDefinitionsCommandOutput) => void): void;
|
|
298
389
|
/**
|
|
299
390
|
* @see {@link ListTagsForResourceCommand}
|
|
300
391
|
*/
|
|
@@ -8,11 +8,16 @@ import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration
|
|
|
8
8
|
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AddProfileKeyCommandInput, AddProfileKeyCommandOutput } from "./commands/AddProfileKeyCommand";
|
|
11
|
+
import { BatchGetCalculatedAttributeForProfileCommandInput, BatchGetCalculatedAttributeForProfileCommandOutput } from "./commands/BatchGetCalculatedAttributeForProfileCommand";
|
|
12
|
+
import { BatchGetProfileCommandInput, BatchGetProfileCommandOutput } from "./commands/BatchGetProfileCommand";
|
|
11
13
|
import { CreateCalculatedAttributeDefinitionCommandInput, CreateCalculatedAttributeDefinitionCommandOutput } from "./commands/CreateCalculatedAttributeDefinitionCommand";
|
|
12
14
|
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
|
|
13
15
|
import { CreateEventStreamCommandInput, CreateEventStreamCommandOutput } from "./commands/CreateEventStreamCommand";
|
|
14
16
|
import { CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput } from "./commands/CreateIntegrationWorkflowCommand";
|
|
15
17
|
import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand";
|
|
18
|
+
import { CreateSegmentDefinitionCommandInput, CreateSegmentDefinitionCommandOutput } from "./commands/CreateSegmentDefinitionCommand";
|
|
19
|
+
import { CreateSegmentEstimateCommandInput, CreateSegmentEstimateCommandOutput } from "./commands/CreateSegmentEstimateCommand";
|
|
20
|
+
import { CreateSegmentSnapshotCommandInput, CreateSegmentSnapshotCommandOutput } from "./commands/CreateSegmentSnapshotCommand";
|
|
16
21
|
import { DeleteCalculatedAttributeDefinitionCommandInput, DeleteCalculatedAttributeDefinitionCommandOutput } from "./commands/DeleteCalculatedAttributeDefinitionCommand";
|
|
17
22
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
18
23
|
import { DeleteEventStreamCommandInput, DeleteEventStreamCommandOutput } from "./commands/DeleteEventStreamCommand";
|
|
@@ -21,6 +26,7 @@ import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "./command
|
|
|
21
26
|
import { DeleteProfileKeyCommandInput, DeleteProfileKeyCommandOutput } from "./commands/DeleteProfileKeyCommand";
|
|
22
27
|
import { DeleteProfileObjectCommandInput, DeleteProfileObjectCommandOutput } from "./commands/DeleteProfileObjectCommand";
|
|
23
28
|
import { DeleteProfileObjectTypeCommandInput, DeleteProfileObjectTypeCommandOutput } from "./commands/DeleteProfileObjectTypeCommand";
|
|
29
|
+
import { DeleteSegmentDefinitionCommandInput, DeleteSegmentDefinitionCommandOutput } from "./commands/DeleteSegmentDefinitionCommand";
|
|
24
30
|
import { DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput } from "./commands/DeleteWorkflowCommand";
|
|
25
31
|
import { DetectProfileObjectTypeCommandInput, DetectProfileObjectTypeCommandOutput } from "./commands/DetectProfileObjectTypeCommand";
|
|
26
32
|
import { GetAutoMergingPreviewCommandInput, GetAutoMergingPreviewCommandOutput } from "./commands/GetAutoMergingPreviewCommand";
|
|
@@ -33,6 +39,10 @@ import { GetIntegrationCommandInput, GetIntegrationCommandOutput } from "./comma
|
|
|
33
39
|
import { GetMatchesCommandInput, GetMatchesCommandOutput } from "./commands/GetMatchesCommand";
|
|
34
40
|
import { GetProfileObjectTypeCommandInput, GetProfileObjectTypeCommandOutput } from "./commands/GetProfileObjectTypeCommand";
|
|
35
41
|
import { GetProfileObjectTypeTemplateCommandInput, GetProfileObjectTypeTemplateCommandOutput } from "./commands/GetProfileObjectTypeTemplateCommand";
|
|
42
|
+
import { GetSegmentDefinitionCommandInput, GetSegmentDefinitionCommandOutput } from "./commands/GetSegmentDefinitionCommand";
|
|
43
|
+
import { GetSegmentEstimateCommandInput, GetSegmentEstimateCommandOutput } from "./commands/GetSegmentEstimateCommand";
|
|
44
|
+
import { GetSegmentMembershipCommandInput, GetSegmentMembershipCommandOutput } from "./commands/GetSegmentMembershipCommand";
|
|
45
|
+
import { GetSegmentSnapshotCommandInput, GetSegmentSnapshotCommandOutput } from "./commands/GetSegmentSnapshotCommand";
|
|
36
46
|
import { GetSimilarProfilesCommandInput, GetSimilarProfilesCommandOutput } from "./commands/GetSimilarProfilesCommand";
|
|
37
47
|
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
38
48
|
import { GetWorkflowStepsCommandInput, GetWorkflowStepsCommandOutput } from "./commands/GetWorkflowStepsCommand";
|
|
@@ -43,10 +53,13 @@ import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/Li
|
|
|
43
53
|
import { ListEventStreamsCommandInput, ListEventStreamsCommandOutput } from "./commands/ListEventStreamsCommand";
|
|
44
54
|
import { ListIdentityResolutionJobsCommandInput, ListIdentityResolutionJobsCommandOutput } from "./commands/ListIdentityResolutionJobsCommand";
|
|
45
55
|
import { ListIntegrationsCommandInput, ListIntegrationsCommandOutput } from "./commands/ListIntegrationsCommand";
|
|
56
|
+
import { ListObjectTypeAttributesCommandInput, ListObjectTypeAttributesCommandOutput } from "./commands/ListObjectTypeAttributesCommand";
|
|
57
|
+
import { ListProfileAttributeValuesCommandInput, ListProfileAttributeValuesCommandOutput } from "./commands/ListProfileAttributeValuesCommand";
|
|
46
58
|
import { ListProfileObjectsCommandInput, ListProfileObjectsCommandOutput } from "./commands/ListProfileObjectsCommand";
|
|
47
59
|
import { ListProfileObjectTypesCommandInput, ListProfileObjectTypesCommandOutput } from "./commands/ListProfileObjectTypesCommand";
|
|
48
60
|
import { ListProfileObjectTypeTemplatesCommandInput, ListProfileObjectTypeTemplatesCommandOutput } from "./commands/ListProfileObjectTypeTemplatesCommand";
|
|
49
61
|
import { ListRuleBasedMatchesCommandInput, ListRuleBasedMatchesCommandOutput } from "./commands/ListRuleBasedMatchesCommand";
|
|
62
|
+
import { ListSegmentDefinitionsCommandInput, ListSegmentDefinitionsCommandOutput } from "./commands/ListSegmentDefinitionsCommand";
|
|
50
63
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
51
64
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
52
65
|
import { MergeProfilesCommandInput, MergeProfilesCommandOutput } from "./commands/MergeProfilesCommand";
|
|
@@ -65,11 +78,11 @@ export { __Client };
|
|
|
65
78
|
/**
|
|
66
79
|
* @public
|
|
67
80
|
*/
|
|
68
|
-
export type ServiceInputTypes = AddProfileKeyCommandInput | CreateCalculatedAttributeDefinitionCommandInput | CreateDomainCommandInput | CreateEventStreamCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | DeleteCalculatedAttributeDefinitionCommandInput | DeleteDomainCommandInput | DeleteEventStreamCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteWorkflowCommandInput | DetectProfileObjectTypeCommandInput | GetAutoMergingPreviewCommandInput | GetCalculatedAttributeDefinitionCommandInput | GetCalculatedAttributeForProfileCommandInput | GetDomainCommandInput | GetEventStreamCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetSimilarProfilesCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListCalculatedAttributeDefinitionsCommandInput | ListCalculatedAttributesForProfileCommandInput | ListDomainsCommandInput | ListEventStreamsCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListRuleBasedMatchesCommandInput | ListTagsForResourceCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCalculatedAttributeDefinitionCommandInput | UpdateDomainCommandInput | UpdateProfileCommandInput;
|
|
81
|
+
export type ServiceInputTypes = AddProfileKeyCommandInput | BatchGetCalculatedAttributeForProfileCommandInput | BatchGetProfileCommandInput | CreateCalculatedAttributeDefinitionCommandInput | CreateDomainCommandInput | CreateEventStreamCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | CreateSegmentDefinitionCommandInput | CreateSegmentEstimateCommandInput | CreateSegmentSnapshotCommandInput | DeleteCalculatedAttributeDefinitionCommandInput | DeleteDomainCommandInput | DeleteEventStreamCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteSegmentDefinitionCommandInput | DeleteWorkflowCommandInput | DetectProfileObjectTypeCommandInput | GetAutoMergingPreviewCommandInput | GetCalculatedAttributeDefinitionCommandInput | GetCalculatedAttributeForProfileCommandInput | GetDomainCommandInput | GetEventStreamCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetSegmentDefinitionCommandInput | GetSegmentEstimateCommandInput | GetSegmentMembershipCommandInput | GetSegmentSnapshotCommandInput | GetSimilarProfilesCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListCalculatedAttributeDefinitionsCommandInput | ListCalculatedAttributesForProfileCommandInput | ListDomainsCommandInput | ListEventStreamsCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListObjectTypeAttributesCommandInput | ListProfileAttributeValuesCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListRuleBasedMatchesCommandInput | ListSegmentDefinitionsCommandInput | ListTagsForResourceCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCalculatedAttributeDefinitionCommandInput | UpdateDomainCommandInput | UpdateProfileCommandInput;
|
|
69
82
|
/**
|
|
70
83
|
* @public
|
|
71
84
|
*/
|
|
72
|
-
export type ServiceOutputTypes = AddProfileKeyCommandOutput | CreateCalculatedAttributeDefinitionCommandOutput | CreateDomainCommandOutput | CreateEventStreamCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | DeleteCalculatedAttributeDefinitionCommandOutput | DeleteDomainCommandOutput | DeleteEventStreamCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteWorkflowCommandOutput | DetectProfileObjectTypeCommandOutput | GetAutoMergingPreviewCommandOutput | GetCalculatedAttributeDefinitionCommandOutput | GetCalculatedAttributeForProfileCommandOutput | GetDomainCommandOutput | GetEventStreamCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetSimilarProfilesCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListCalculatedAttributeDefinitionsCommandOutput | ListCalculatedAttributesForProfileCommandOutput | ListDomainsCommandOutput | ListEventStreamsCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListRuleBasedMatchesCommandOutput | ListTagsForResourceCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCalculatedAttributeDefinitionCommandOutput | UpdateDomainCommandOutput | UpdateProfileCommandOutput;
|
|
85
|
+
export type ServiceOutputTypes = AddProfileKeyCommandOutput | BatchGetCalculatedAttributeForProfileCommandOutput | BatchGetProfileCommandOutput | CreateCalculatedAttributeDefinitionCommandOutput | CreateDomainCommandOutput | CreateEventStreamCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | CreateSegmentDefinitionCommandOutput | CreateSegmentEstimateCommandOutput | CreateSegmentSnapshotCommandOutput | DeleteCalculatedAttributeDefinitionCommandOutput | DeleteDomainCommandOutput | DeleteEventStreamCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteSegmentDefinitionCommandOutput | DeleteWorkflowCommandOutput | DetectProfileObjectTypeCommandOutput | GetAutoMergingPreviewCommandOutput | GetCalculatedAttributeDefinitionCommandOutput | GetCalculatedAttributeForProfileCommandOutput | GetDomainCommandOutput | GetEventStreamCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetSegmentDefinitionCommandOutput | GetSegmentEstimateCommandOutput | GetSegmentMembershipCommandOutput | GetSegmentSnapshotCommandOutput | GetSimilarProfilesCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListCalculatedAttributeDefinitionsCommandOutput | ListCalculatedAttributesForProfileCommandOutput | ListDomainsCommandOutput | ListEventStreamsCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListObjectTypeAttributesCommandOutput | ListProfileAttributeValuesCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListRuleBasedMatchesCommandOutput | ListSegmentDefinitionsCommandOutput | ListTagsForResourceCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCalculatedAttributeDefinitionCommandOutput | UpdateDomainCommandOutput | UpdateProfileCommandOutput;
|
|
73
86
|
/**
|
|
74
87
|
* @public
|
|
75
88
|
*/
|
|
@@ -0,0 +1,119 @@
|
|
|
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 { BatchGetCalculatedAttributeForProfileRequest, BatchGetCalculatedAttributeForProfileResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link BatchGetCalculatedAttributeForProfileCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface BatchGetCalculatedAttributeForProfileCommandInput extends BatchGetCalculatedAttributeForProfileRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link BatchGetCalculatedAttributeForProfileCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface BatchGetCalculatedAttributeForProfileCommandOutput extends BatchGetCalculatedAttributeForProfileResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const BatchGetCalculatedAttributeForProfileCommand_base: {
|
|
25
|
+
new (input: BatchGetCalculatedAttributeForProfileCommandInput): import("@smithy/smithy-client").CommandImpl<BatchGetCalculatedAttributeForProfileCommandInput, BatchGetCalculatedAttributeForProfileCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: BatchGetCalculatedAttributeForProfileCommandInput): import("@smithy/smithy-client").CommandImpl<BatchGetCalculatedAttributeForProfileCommandInput, BatchGetCalculatedAttributeForProfileCommandOutput, 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, BatchGetCalculatedAttributeForProfileCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
35
|
+
* // const { CustomerProfilesClient, BatchGetCalculatedAttributeForProfileCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
36
|
+
* const client = new CustomerProfilesClient(config);
|
|
37
|
+
* const input = { // BatchGetCalculatedAttributeForProfileRequest
|
|
38
|
+
* CalculatedAttributeName: "STRING_VALUE", // required
|
|
39
|
+
* DomainName: "STRING_VALUE", // required
|
|
40
|
+
* ProfileIds: [ // BatchGetCalculatedAttributeForProfileIdList // required
|
|
41
|
+
* "STRING_VALUE",
|
|
42
|
+
* ],
|
|
43
|
+
* ConditionOverrides: { // ConditionOverrides
|
|
44
|
+
* Range: { // RangeOverride
|
|
45
|
+
* Start: Number("int"), // required
|
|
46
|
+
* End: Number("int"),
|
|
47
|
+
* Unit: "DAYS", // required
|
|
48
|
+
* },
|
|
49
|
+
* },
|
|
50
|
+
* };
|
|
51
|
+
* const command = new BatchGetCalculatedAttributeForProfileCommand(input);
|
|
52
|
+
* const response = await client.send(command);
|
|
53
|
+
* // { // BatchGetCalculatedAttributeForProfileResponse
|
|
54
|
+
* // Errors: [ // BatchGetCalculatedAttributeForProfileErrorList
|
|
55
|
+
* // { // BatchGetCalculatedAttributeForProfileError
|
|
56
|
+
* // Code: "STRING_VALUE", // required
|
|
57
|
+
* // Message: "STRING_VALUE", // required
|
|
58
|
+
* // ProfileId: "STRING_VALUE", // required
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // CalculatedAttributeValues: [ // CalculatedAttributeValueList
|
|
62
|
+
* // { // CalculatedAttributeValue
|
|
63
|
+
* // CalculatedAttributeName: "STRING_VALUE",
|
|
64
|
+
* // DisplayName: "STRING_VALUE",
|
|
65
|
+
* // IsDataPartial: "STRING_VALUE",
|
|
66
|
+
* // ProfileId: "STRING_VALUE",
|
|
67
|
+
* // Value: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // ],
|
|
70
|
+
* // ConditionOverrides: { // ConditionOverrides
|
|
71
|
+
* // Range: { // RangeOverride
|
|
72
|
+
* // Start: Number("int"), // required
|
|
73
|
+
* // End: Number("int"),
|
|
74
|
+
* // Unit: "DAYS", // required
|
|
75
|
+
* // },
|
|
76
|
+
* // },
|
|
77
|
+
* // };
|
|
78
|
+
*
|
|
79
|
+
* ```
|
|
80
|
+
*
|
|
81
|
+
* @param BatchGetCalculatedAttributeForProfileCommandInput - {@link BatchGetCalculatedAttributeForProfileCommandInput}
|
|
82
|
+
* @returns {@link BatchGetCalculatedAttributeForProfileCommandOutput}
|
|
83
|
+
* @see {@link BatchGetCalculatedAttributeForProfileCommandInput} for command's `input` shape.
|
|
84
|
+
* @see {@link BatchGetCalculatedAttributeForProfileCommandOutput} for command's `response` shape.
|
|
85
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
88
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link BadRequestException} (client fault)
|
|
91
|
+
* <p>The input you provided is invalid.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link InternalServerException} (server fault)
|
|
94
|
+
* <p>An internal service error occurred.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
97
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
100
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
103
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
104
|
+
*
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
export declare class BatchGetCalculatedAttributeForProfileCommand extends BatchGetCalculatedAttributeForProfileCommand_base {
|
|
108
|
+
/** @internal type navigation helper, not in runtime. */
|
|
109
|
+
protected static __types: {
|
|
110
|
+
api: {
|
|
111
|
+
input: BatchGetCalculatedAttributeForProfileRequest;
|
|
112
|
+
output: BatchGetCalculatedAttributeForProfileResponse;
|
|
113
|
+
};
|
|
114
|
+
sdk: {
|
|
115
|
+
input: BatchGetCalculatedAttributeForProfileCommandInput;
|
|
116
|
+
output: BatchGetCalculatedAttributeForProfileCommandOutput;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
}
|
|
@@ -0,0 +1,177 @@
|
|
|
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 { BatchGetProfileRequest, BatchGetProfileResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link BatchGetProfileCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface BatchGetProfileCommandInput extends BatchGetProfileRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link BatchGetProfileCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface BatchGetProfileCommandOutput extends BatchGetProfileResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const BatchGetProfileCommand_base: {
|
|
25
|
+
new (input: BatchGetProfileCommandInput): import("@smithy/smithy-client").CommandImpl<BatchGetProfileCommandInput, BatchGetProfileCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: BatchGetProfileCommandInput): import("@smithy/smithy-client").CommandImpl<BatchGetProfileCommandInput, BatchGetProfileCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Get a batch of profiles.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { CustomerProfilesClient, BatchGetProfileCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
35
|
+
* // const { CustomerProfilesClient, BatchGetProfileCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
36
|
+
* const client = new CustomerProfilesClient(config);
|
|
37
|
+
* const input = { // BatchGetProfileRequest
|
|
38
|
+
* DomainName: "STRING_VALUE", // required
|
|
39
|
+
* ProfileIds: [ // BatchGetProfileIdList // required
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* };
|
|
43
|
+
* const command = new BatchGetProfileCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // BatchGetProfileResponse
|
|
46
|
+
* // Errors: [ // BatchGetProfileErrorList
|
|
47
|
+
* // { // BatchGetProfileError
|
|
48
|
+
* // Code: "STRING_VALUE", // required
|
|
49
|
+
* // Message: "STRING_VALUE", // required
|
|
50
|
+
* // ProfileId: "STRING_VALUE", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // Profiles: [ // ProfileList
|
|
54
|
+
* // { // Profile
|
|
55
|
+
* // ProfileId: "STRING_VALUE",
|
|
56
|
+
* // AccountNumber: "STRING_VALUE",
|
|
57
|
+
* // AdditionalInformation: "STRING_VALUE",
|
|
58
|
+
* // PartyType: "INDIVIDUAL" || "BUSINESS" || "OTHER",
|
|
59
|
+
* // BusinessName: "STRING_VALUE",
|
|
60
|
+
* // FirstName: "STRING_VALUE",
|
|
61
|
+
* // MiddleName: "STRING_VALUE",
|
|
62
|
+
* // LastName: "STRING_VALUE",
|
|
63
|
+
* // BirthDate: "STRING_VALUE",
|
|
64
|
+
* // Gender: "MALE" || "FEMALE" || "UNSPECIFIED",
|
|
65
|
+
* // PhoneNumber: "STRING_VALUE",
|
|
66
|
+
* // MobilePhoneNumber: "STRING_VALUE",
|
|
67
|
+
* // HomePhoneNumber: "STRING_VALUE",
|
|
68
|
+
* // BusinessPhoneNumber: "STRING_VALUE",
|
|
69
|
+
* // EmailAddress: "STRING_VALUE",
|
|
70
|
+
* // PersonalEmailAddress: "STRING_VALUE",
|
|
71
|
+
* // BusinessEmailAddress: "STRING_VALUE",
|
|
72
|
+
* // Address: { // Address
|
|
73
|
+
* // Address1: "STRING_VALUE",
|
|
74
|
+
* // Address2: "STRING_VALUE",
|
|
75
|
+
* // Address3: "STRING_VALUE",
|
|
76
|
+
* // Address4: "STRING_VALUE",
|
|
77
|
+
* // City: "STRING_VALUE",
|
|
78
|
+
* // County: "STRING_VALUE",
|
|
79
|
+
* // State: "STRING_VALUE",
|
|
80
|
+
* // Province: "STRING_VALUE",
|
|
81
|
+
* // Country: "STRING_VALUE",
|
|
82
|
+
* // PostalCode: "STRING_VALUE",
|
|
83
|
+
* // },
|
|
84
|
+
* // ShippingAddress: {
|
|
85
|
+
* // Address1: "STRING_VALUE",
|
|
86
|
+
* // Address2: "STRING_VALUE",
|
|
87
|
+
* // Address3: "STRING_VALUE",
|
|
88
|
+
* // Address4: "STRING_VALUE",
|
|
89
|
+
* // City: "STRING_VALUE",
|
|
90
|
+
* // County: "STRING_VALUE",
|
|
91
|
+
* // State: "STRING_VALUE",
|
|
92
|
+
* // Province: "STRING_VALUE",
|
|
93
|
+
* // Country: "STRING_VALUE",
|
|
94
|
+
* // PostalCode: "STRING_VALUE",
|
|
95
|
+
* // },
|
|
96
|
+
* // MailingAddress: {
|
|
97
|
+
* // Address1: "STRING_VALUE",
|
|
98
|
+
* // Address2: "STRING_VALUE",
|
|
99
|
+
* // Address3: "STRING_VALUE",
|
|
100
|
+
* // Address4: "STRING_VALUE",
|
|
101
|
+
* // City: "STRING_VALUE",
|
|
102
|
+
* // County: "STRING_VALUE",
|
|
103
|
+
* // State: "STRING_VALUE",
|
|
104
|
+
* // Province: "STRING_VALUE",
|
|
105
|
+
* // Country: "STRING_VALUE",
|
|
106
|
+
* // PostalCode: "STRING_VALUE",
|
|
107
|
+
* // },
|
|
108
|
+
* // BillingAddress: {
|
|
109
|
+
* // Address1: "STRING_VALUE",
|
|
110
|
+
* // Address2: "STRING_VALUE",
|
|
111
|
+
* // Address3: "STRING_VALUE",
|
|
112
|
+
* // Address4: "STRING_VALUE",
|
|
113
|
+
* // City: "STRING_VALUE",
|
|
114
|
+
* // County: "STRING_VALUE",
|
|
115
|
+
* // State: "STRING_VALUE",
|
|
116
|
+
* // Province: "STRING_VALUE",
|
|
117
|
+
* // Country: "STRING_VALUE",
|
|
118
|
+
* // PostalCode: "STRING_VALUE",
|
|
119
|
+
* // },
|
|
120
|
+
* // Attributes: { // Attributes
|
|
121
|
+
* // "<keys>": "STRING_VALUE",
|
|
122
|
+
* // },
|
|
123
|
+
* // FoundByItems: [ // foundByList
|
|
124
|
+
* // { // FoundByKeyValue
|
|
125
|
+
* // KeyName: "STRING_VALUE",
|
|
126
|
+
* // Values: [ // requestValueList
|
|
127
|
+
* // "STRING_VALUE",
|
|
128
|
+
* // ],
|
|
129
|
+
* // },
|
|
130
|
+
* // ],
|
|
131
|
+
* // PartyTypeString: "STRING_VALUE",
|
|
132
|
+
* // GenderString: "STRING_VALUE",
|
|
133
|
+
* // },
|
|
134
|
+
* // ],
|
|
135
|
+
* // };
|
|
136
|
+
*
|
|
137
|
+
* ```
|
|
138
|
+
*
|
|
139
|
+
* @param BatchGetProfileCommandInput - {@link BatchGetProfileCommandInput}
|
|
140
|
+
* @returns {@link BatchGetProfileCommandOutput}
|
|
141
|
+
* @see {@link BatchGetProfileCommandInput} for command's `input` shape.
|
|
142
|
+
* @see {@link BatchGetProfileCommandOutput} for command's `response` shape.
|
|
143
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
144
|
+
*
|
|
145
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
146
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
147
|
+
*
|
|
148
|
+
* @throws {@link BadRequestException} (client fault)
|
|
149
|
+
* <p>The input you provided is invalid.</p>
|
|
150
|
+
*
|
|
151
|
+
* @throws {@link InternalServerException} (server fault)
|
|
152
|
+
* <p>An internal service error occurred.</p>
|
|
153
|
+
*
|
|
154
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
155
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
156
|
+
*
|
|
157
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
158
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
159
|
+
*
|
|
160
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
161
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
162
|
+
*
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
export declare class BatchGetProfileCommand extends BatchGetProfileCommand_base {
|
|
166
|
+
/** @internal type navigation helper, not in runtime. */
|
|
167
|
+
protected static __types: {
|
|
168
|
+
api: {
|
|
169
|
+
input: BatchGetProfileRequest;
|
|
170
|
+
output: BatchGetProfileResponse;
|
|
171
|
+
};
|
|
172
|
+
sdk: {
|
|
173
|
+
input: BatchGetProfileCommandInput;
|
|
174
|
+
output: BatchGetProfileCommandOutput;
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
}
|
|
@@ -63,6 +63,26 @@ declare const CreateCalculatedAttributeDefinitionCommand_base: {
|
|
|
63
63
|
* Operator: "EQUAL_TO" || "GREATER_THAN" || "LESS_THAN" || "NOT_EQUAL_TO", // required
|
|
64
64
|
* },
|
|
65
65
|
* },
|
|
66
|
+
* Filter: { // Filter
|
|
67
|
+
* Include: "ALL" || "ANY" || "NONE", // required
|
|
68
|
+
* Groups: [ // GroupList // required
|
|
69
|
+
* { // FilterGroup
|
|
70
|
+
* Type: "ALL" || "ANY" || "NONE", // required
|
|
71
|
+
* Dimensions: [ // FilterDimensionList // required
|
|
72
|
+
* { // FilterDimension
|
|
73
|
+
* Attributes: { // AttributeMap // required
|
|
74
|
+
* "<keys>": { // FilterAttributeDimension
|
|
75
|
+
* DimensionType: "INCLUSIVE" || "EXCLUSIVE" || "CONTAINS" || "BEGINS_WITH" || "ENDS_WITH" || "BEFORE" || "AFTER" || "BETWEEN" || "NOT_BETWEEN" || "ON" || "GREATER_THAN" || "LESS_THAN" || "GREATER_THAN_OR_EQUAL" || "LESS_THAN_OR_EQUAL" || "EQUAL", // required
|
|
76
|
+
* Values: [ // ValueList // required
|
|
77
|
+
* "STRING_VALUE",
|
|
78
|
+
* ],
|
|
79
|
+
* },
|
|
80
|
+
* },
|
|
81
|
+
* },
|
|
82
|
+
* ],
|
|
83
|
+
* },
|
|
84
|
+
* ],
|
|
85
|
+
* },
|
|
66
86
|
* Statistic: "FIRST_OCCURRENCE" || "LAST_OCCURRENCE" || "COUNT" || "SUM" || "MINIMUM" || "MAXIMUM" || "AVERAGE" || "MAX_OCCURRENCE", // required
|
|
67
87
|
* Tags: { // TagMap
|
|
68
88
|
* "<keys>": "STRING_VALUE",
|
|
@@ -93,6 +113,26 @@ declare const CreateCalculatedAttributeDefinitionCommand_base: {
|
|
|
93
113
|
* // Operator: "EQUAL_TO" || "GREATER_THAN" || "LESS_THAN" || "NOT_EQUAL_TO", // required
|
|
94
114
|
* // },
|
|
95
115
|
* // },
|
|
116
|
+
* // Filter: { // Filter
|
|
117
|
+
* // Include: "ALL" || "ANY" || "NONE", // required
|
|
118
|
+
* // Groups: [ // GroupList // required
|
|
119
|
+
* // { // FilterGroup
|
|
120
|
+
* // Type: "ALL" || "ANY" || "NONE", // required
|
|
121
|
+
* // Dimensions: [ // FilterDimensionList // required
|
|
122
|
+
* // { // FilterDimension
|
|
123
|
+
* // Attributes: { // AttributeMap // required
|
|
124
|
+
* // "<keys>": { // FilterAttributeDimension
|
|
125
|
+
* // DimensionType: "INCLUSIVE" || "EXCLUSIVE" || "CONTAINS" || "BEGINS_WITH" || "ENDS_WITH" || "BEFORE" || "AFTER" || "BETWEEN" || "NOT_BETWEEN" || "ON" || "GREATER_THAN" || "LESS_THAN" || "GREATER_THAN_OR_EQUAL" || "LESS_THAN_OR_EQUAL" || "EQUAL", // required
|
|
126
|
+
* // Values: [ // ValueList // required
|
|
127
|
+
* // "STRING_VALUE",
|
|
128
|
+
* // ],
|
|
129
|
+
* // },
|
|
130
|
+
* // },
|
|
131
|
+
* // },
|
|
132
|
+
* // ],
|
|
133
|
+
* // },
|
|
134
|
+
* // ],
|
|
135
|
+
* // },
|
|
96
136
|
* // Statistic: "FIRST_OCCURRENCE" || "LAST_OCCURRENCE" || "COUNT" || "SUM" || "MINIMUM" || "MAXIMUM" || "AVERAGE" || "MAX_OCCURRENCE",
|
|
97
137
|
* // CreatedAt: new Date("TIMESTAMP"),
|
|
98
138
|
* // LastUpdatedAt: new Date("TIMESTAMP"),
|