@aws-sdk/client-customer-profiles 3.840.0 → 3.843.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 +48 -0
- package/dist-cjs/index.js +393 -67
- package/dist-es/CustomerProfiles.js +12 -0
- package/dist-es/commands/CreateUploadJobCommand.js +23 -0
- package/dist-es/commands/GetUploadJobCommand.js +23 -0
- package/dist-es/commands/GetUploadJobPathCommand.js +22 -0
- package/dist-es/commands/ListUploadJobsCommand.js +22 -0
- package/dist-es/commands/StartUploadJobCommand.js +22 -0
- package/dist-es/commands/StopUploadJobCommand.js +22 -0
- package/dist-es/commands/UpdateCalculatedAttributeDefinitionCommand.js +1 -1
- package/dist-es/commands/UpdateDomainLayoutCommand.js +1 -1
- package/dist-es/commands/UpdateEventTriggerCommand.js +1 -1
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +20 -35
- package/dist-es/models/models_1.js +35 -0
- package/dist-es/pagination/ListUploadJobsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +184 -0
- package/dist-types/CustomerProfiles.d.ts +42 -0
- package/dist-types/CustomerProfilesClient.d.ts +8 -2
- package/dist-types/commands/CreateUploadJobCommand.d.ts +98 -0
- package/dist-types/commands/GetUploadJobCommand.d.ts +107 -0
- package/dist-types/commands/GetUploadJobPathCommand.d.ts +91 -0
- package/dist-types/commands/ListUploadJobsCommand.d.ts +100 -0
- package/dist-types/commands/StartUploadJobCommand.d.ts +87 -0
- package/dist-types/commands/StopUploadJobCommand.d.ts +86 -0
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEventTriggerCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +480 -660
- package/dist-types/models/models_1.d.ts +569 -1
- package/dist-types/pagination/ListUploadJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +102 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateUploadJobCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetUploadJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetUploadJobPathCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListUploadJobsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartUploadJobCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/StopUploadJobCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEventTriggerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +95 -137
- package/dist-types/ts3.4/models/models_1.d.ts +147 -1
- package/dist-types/ts3.4/pagination/ListUploadJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./command
|
|
|
12
12
|
import { CreateSegmentDefinitionCommandInput, CreateSegmentDefinitionCommandOutput } from "./commands/CreateSegmentDefinitionCommand";
|
|
13
13
|
import { CreateSegmentEstimateCommandInput, CreateSegmentEstimateCommandOutput } from "./commands/CreateSegmentEstimateCommand";
|
|
14
14
|
import { CreateSegmentSnapshotCommandInput, CreateSegmentSnapshotCommandOutput } from "./commands/CreateSegmentSnapshotCommand";
|
|
15
|
+
import { CreateUploadJobCommandInput, CreateUploadJobCommandOutput } from "./commands/CreateUploadJobCommand";
|
|
15
16
|
import { DeleteCalculatedAttributeDefinitionCommandInput, DeleteCalculatedAttributeDefinitionCommandOutput } from "./commands/DeleteCalculatedAttributeDefinitionCommand";
|
|
16
17
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
17
18
|
import { DeleteDomainLayoutCommandInput, DeleteDomainLayoutCommandOutput } from "./commands/DeleteDomainLayoutCommand";
|
|
@@ -42,6 +43,8 @@ import { GetSegmentEstimateCommandInput, GetSegmentEstimateCommandOutput } from
|
|
|
42
43
|
import { GetSegmentMembershipCommandInput, GetSegmentMembershipCommandOutput } from "./commands/GetSegmentMembershipCommand";
|
|
43
44
|
import { GetSegmentSnapshotCommandInput, GetSegmentSnapshotCommandOutput } from "./commands/GetSegmentSnapshotCommand";
|
|
44
45
|
import { GetSimilarProfilesCommandInput, GetSimilarProfilesCommandOutput } from "./commands/GetSimilarProfilesCommand";
|
|
46
|
+
import { GetUploadJobCommandInput, GetUploadJobCommandOutput } from "./commands/GetUploadJobCommand";
|
|
47
|
+
import { GetUploadJobPathCommandInput, GetUploadJobPathCommandOutput } from "./commands/GetUploadJobPathCommand";
|
|
45
48
|
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
46
49
|
import { GetWorkflowStepsCommandInput, GetWorkflowStepsCommandOutput } from "./commands/GetWorkflowStepsCommand";
|
|
47
50
|
import { ListAccountIntegrationsCommandInput, ListAccountIntegrationsCommandOutput } from "./commands/ListAccountIntegrationsCommand";
|
|
@@ -61,12 +64,15 @@ import { ListProfileObjectTypeTemplatesCommandInput, ListProfileObjectTypeTempla
|
|
|
61
64
|
import { ListRuleBasedMatchesCommandInput, ListRuleBasedMatchesCommandOutput } from "./commands/ListRuleBasedMatchesCommand";
|
|
62
65
|
import { ListSegmentDefinitionsCommandInput, ListSegmentDefinitionsCommandOutput } from "./commands/ListSegmentDefinitionsCommand";
|
|
63
66
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
67
|
+
import { ListUploadJobsCommandInput, ListUploadJobsCommandOutput } from "./commands/ListUploadJobsCommand";
|
|
64
68
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
65
69
|
import { MergeProfilesCommandInput, MergeProfilesCommandOutput } from "./commands/MergeProfilesCommand";
|
|
66
70
|
import { PutIntegrationCommandInput, PutIntegrationCommandOutput } from "./commands/PutIntegrationCommand";
|
|
67
71
|
import { PutProfileObjectCommandInput, PutProfileObjectCommandOutput } from "./commands/PutProfileObjectCommand";
|
|
68
72
|
import { PutProfileObjectTypeCommandInput, PutProfileObjectTypeCommandOutput } from "./commands/PutProfileObjectTypeCommand";
|
|
69
73
|
import { SearchProfilesCommandInput, SearchProfilesCommandOutput } from "./commands/SearchProfilesCommand";
|
|
74
|
+
import { StartUploadJobCommandInput, StartUploadJobCommandOutput } from "./commands/StartUploadJobCommand";
|
|
75
|
+
import { StopUploadJobCommandInput, StopUploadJobCommandOutput } from "./commands/StopUploadJobCommand";
|
|
70
76
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
71
77
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
72
78
|
import { UpdateCalculatedAttributeDefinitionCommandInput, UpdateCalculatedAttributeDefinitionCommandOutput } from "./commands/UpdateCalculatedAttributeDefinitionCommand";
|
|
@@ -154,6 +160,12 @@ export interface CustomerProfiles {
|
|
|
154
160
|
createSegmentSnapshot(args: CreateSegmentSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CreateSegmentSnapshotCommandOutput>;
|
|
155
161
|
createSegmentSnapshot(args: CreateSegmentSnapshotCommandInput, cb: (err: any, data?: CreateSegmentSnapshotCommandOutput) => void): void;
|
|
156
162
|
createSegmentSnapshot(args: CreateSegmentSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSegmentSnapshotCommandOutput) => void): void;
|
|
163
|
+
/**
|
|
164
|
+
* @see {@link CreateUploadJobCommand}
|
|
165
|
+
*/
|
|
166
|
+
createUploadJob(args: CreateUploadJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateUploadJobCommandOutput>;
|
|
167
|
+
createUploadJob(args: CreateUploadJobCommandInput, cb: (err: any, data?: CreateUploadJobCommandOutput) => void): void;
|
|
168
|
+
createUploadJob(args: CreateUploadJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUploadJobCommandOutput) => void): void;
|
|
157
169
|
/**
|
|
158
170
|
* @see {@link DeleteCalculatedAttributeDefinitionCommand}
|
|
159
171
|
*/
|
|
@@ -334,6 +346,18 @@ export interface CustomerProfiles {
|
|
|
334
346
|
getSimilarProfiles(args: GetSimilarProfilesCommandInput, options?: __HttpHandlerOptions): Promise<GetSimilarProfilesCommandOutput>;
|
|
335
347
|
getSimilarProfiles(args: GetSimilarProfilesCommandInput, cb: (err: any, data?: GetSimilarProfilesCommandOutput) => void): void;
|
|
336
348
|
getSimilarProfiles(args: GetSimilarProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSimilarProfilesCommandOutput) => void): void;
|
|
349
|
+
/**
|
|
350
|
+
* @see {@link GetUploadJobCommand}
|
|
351
|
+
*/
|
|
352
|
+
getUploadJob(args: GetUploadJobCommandInput, options?: __HttpHandlerOptions): Promise<GetUploadJobCommandOutput>;
|
|
353
|
+
getUploadJob(args: GetUploadJobCommandInput, cb: (err: any, data?: GetUploadJobCommandOutput) => void): void;
|
|
354
|
+
getUploadJob(args: GetUploadJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUploadJobCommandOutput) => void): void;
|
|
355
|
+
/**
|
|
356
|
+
* @see {@link GetUploadJobPathCommand}
|
|
357
|
+
*/
|
|
358
|
+
getUploadJobPath(args: GetUploadJobPathCommandInput, options?: __HttpHandlerOptions): Promise<GetUploadJobPathCommandOutput>;
|
|
359
|
+
getUploadJobPath(args: GetUploadJobPathCommandInput, cb: (err: any, data?: GetUploadJobPathCommandOutput) => void): void;
|
|
360
|
+
getUploadJobPath(args: GetUploadJobPathCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUploadJobPathCommandOutput) => void): void;
|
|
337
361
|
/**
|
|
338
362
|
* @see {@link GetWorkflowCommand}
|
|
339
363
|
*/
|
|
@@ -450,6 +474,12 @@ export interface CustomerProfiles {
|
|
|
450
474
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
451
475
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
452
476
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
477
|
+
/**
|
|
478
|
+
* @see {@link ListUploadJobsCommand}
|
|
479
|
+
*/
|
|
480
|
+
listUploadJobs(args: ListUploadJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListUploadJobsCommandOutput>;
|
|
481
|
+
listUploadJobs(args: ListUploadJobsCommandInput, cb: (err: any, data?: ListUploadJobsCommandOutput) => void): void;
|
|
482
|
+
listUploadJobs(args: ListUploadJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUploadJobsCommandOutput) => void): void;
|
|
453
483
|
/**
|
|
454
484
|
* @see {@link ListWorkflowsCommand}
|
|
455
485
|
*/
|
|
@@ -486,6 +516,18 @@ export interface CustomerProfiles {
|
|
|
486
516
|
searchProfiles(args: SearchProfilesCommandInput, options?: __HttpHandlerOptions): Promise<SearchProfilesCommandOutput>;
|
|
487
517
|
searchProfiles(args: SearchProfilesCommandInput, cb: (err: any, data?: SearchProfilesCommandOutput) => void): void;
|
|
488
518
|
searchProfiles(args: SearchProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchProfilesCommandOutput) => void): void;
|
|
519
|
+
/**
|
|
520
|
+
* @see {@link StartUploadJobCommand}
|
|
521
|
+
*/
|
|
522
|
+
startUploadJob(args: StartUploadJobCommandInput, options?: __HttpHandlerOptions): Promise<StartUploadJobCommandOutput>;
|
|
523
|
+
startUploadJob(args: StartUploadJobCommandInput, cb: (err: any, data?: StartUploadJobCommandOutput) => void): void;
|
|
524
|
+
startUploadJob(args: StartUploadJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartUploadJobCommandOutput) => void): void;
|
|
525
|
+
/**
|
|
526
|
+
* @see {@link StopUploadJobCommand}
|
|
527
|
+
*/
|
|
528
|
+
stopUploadJob(args: StopUploadJobCommandInput, options?: __HttpHandlerOptions): Promise<StopUploadJobCommandOutput>;
|
|
529
|
+
stopUploadJob(args: StopUploadJobCommandInput, cb: (err: any, data?: StopUploadJobCommandOutput) => void): void;
|
|
530
|
+
stopUploadJob(args: StopUploadJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopUploadJobCommandOutput) => void): void;
|
|
489
531
|
/**
|
|
490
532
|
* @see {@link TagResourceCommand}
|
|
491
533
|
*/
|
|
@@ -20,6 +20,7 @@ import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./command
|
|
|
20
20
|
import { CreateSegmentDefinitionCommandInput, CreateSegmentDefinitionCommandOutput } from "./commands/CreateSegmentDefinitionCommand";
|
|
21
21
|
import { CreateSegmentEstimateCommandInput, CreateSegmentEstimateCommandOutput } from "./commands/CreateSegmentEstimateCommand";
|
|
22
22
|
import { CreateSegmentSnapshotCommandInput, CreateSegmentSnapshotCommandOutput } from "./commands/CreateSegmentSnapshotCommand";
|
|
23
|
+
import { CreateUploadJobCommandInput, CreateUploadJobCommandOutput } from "./commands/CreateUploadJobCommand";
|
|
23
24
|
import { DeleteCalculatedAttributeDefinitionCommandInput, DeleteCalculatedAttributeDefinitionCommandOutput } from "./commands/DeleteCalculatedAttributeDefinitionCommand";
|
|
24
25
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
25
26
|
import { DeleteDomainLayoutCommandInput, DeleteDomainLayoutCommandOutput } from "./commands/DeleteDomainLayoutCommand";
|
|
@@ -50,6 +51,8 @@ import { GetSegmentEstimateCommandInput, GetSegmentEstimateCommandOutput } from
|
|
|
50
51
|
import { GetSegmentMembershipCommandInput, GetSegmentMembershipCommandOutput } from "./commands/GetSegmentMembershipCommand";
|
|
51
52
|
import { GetSegmentSnapshotCommandInput, GetSegmentSnapshotCommandOutput } from "./commands/GetSegmentSnapshotCommand";
|
|
52
53
|
import { GetSimilarProfilesCommandInput, GetSimilarProfilesCommandOutput } from "./commands/GetSimilarProfilesCommand";
|
|
54
|
+
import { GetUploadJobCommandInput, GetUploadJobCommandOutput } from "./commands/GetUploadJobCommand";
|
|
55
|
+
import { GetUploadJobPathCommandInput, GetUploadJobPathCommandOutput } from "./commands/GetUploadJobPathCommand";
|
|
53
56
|
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
54
57
|
import { GetWorkflowStepsCommandInput, GetWorkflowStepsCommandOutput } from "./commands/GetWorkflowStepsCommand";
|
|
55
58
|
import { ListAccountIntegrationsCommandInput, ListAccountIntegrationsCommandOutput } from "./commands/ListAccountIntegrationsCommand";
|
|
@@ -69,12 +72,15 @@ import { ListProfileObjectTypeTemplatesCommandInput, ListProfileObjectTypeTempla
|
|
|
69
72
|
import { ListRuleBasedMatchesCommandInput, ListRuleBasedMatchesCommandOutput } from "./commands/ListRuleBasedMatchesCommand";
|
|
70
73
|
import { ListSegmentDefinitionsCommandInput, ListSegmentDefinitionsCommandOutput } from "./commands/ListSegmentDefinitionsCommand";
|
|
71
74
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
75
|
+
import { ListUploadJobsCommandInput, ListUploadJobsCommandOutput } from "./commands/ListUploadJobsCommand";
|
|
72
76
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
73
77
|
import { MergeProfilesCommandInput, MergeProfilesCommandOutput } from "./commands/MergeProfilesCommand";
|
|
74
78
|
import { PutIntegrationCommandInput, PutIntegrationCommandOutput } from "./commands/PutIntegrationCommand";
|
|
75
79
|
import { PutProfileObjectCommandInput, PutProfileObjectCommandOutput } from "./commands/PutProfileObjectCommand";
|
|
76
80
|
import { PutProfileObjectTypeCommandInput, PutProfileObjectTypeCommandOutput } from "./commands/PutProfileObjectTypeCommand";
|
|
77
81
|
import { SearchProfilesCommandInput, SearchProfilesCommandOutput } from "./commands/SearchProfilesCommand";
|
|
82
|
+
import { StartUploadJobCommandInput, StartUploadJobCommandOutput } from "./commands/StartUploadJobCommand";
|
|
83
|
+
import { StopUploadJobCommandInput, StopUploadJobCommandOutput } from "./commands/StopUploadJobCommand";
|
|
78
84
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
79
85
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
80
86
|
import { UpdateCalculatedAttributeDefinitionCommandInput, UpdateCalculatedAttributeDefinitionCommandOutput } from "./commands/UpdateCalculatedAttributeDefinitionCommand";
|
|
@@ -88,11 +94,11 @@ export { __Client };
|
|
|
88
94
|
/**
|
|
89
95
|
* @public
|
|
90
96
|
*/
|
|
91
|
-
export type ServiceInputTypes = AddProfileKeyCommandInput | BatchGetCalculatedAttributeForProfileCommandInput | BatchGetProfileCommandInput | CreateCalculatedAttributeDefinitionCommandInput | CreateDomainCommandInput | CreateDomainLayoutCommandInput | CreateEventStreamCommandInput | CreateEventTriggerCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | CreateSegmentDefinitionCommandInput | CreateSegmentEstimateCommandInput | CreateSegmentSnapshotCommandInput | DeleteCalculatedAttributeDefinitionCommandInput | DeleteDomainCommandInput | DeleteDomainLayoutCommandInput | DeleteEventStreamCommandInput | DeleteEventTriggerCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteSegmentDefinitionCommandInput | DeleteWorkflowCommandInput | DetectProfileObjectTypeCommandInput | GetAutoMergingPreviewCommandInput | GetCalculatedAttributeDefinitionCommandInput | GetCalculatedAttributeForProfileCommandInput | GetDomainCommandInput | GetDomainLayoutCommandInput | GetEventStreamCommandInput | GetEventTriggerCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetSegmentDefinitionCommandInput | GetSegmentEstimateCommandInput | GetSegmentMembershipCommandInput | GetSegmentSnapshotCommandInput | GetSimilarProfilesCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListCalculatedAttributeDefinitionsCommandInput | ListCalculatedAttributesForProfileCommandInput | ListDomainLayoutsCommandInput | ListDomainsCommandInput | ListEventStreamsCommandInput | ListEventTriggersCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListObjectTypeAttributesCommandInput | ListProfileAttributeValuesCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListRuleBasedMatchesCommandInput | ListSegmentDefinitionsCommandInput | ListTagsForResourceCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCalculatedAttributeDefinitionCommandInput | UpdateDomainCommandInput | UpdateDomainLayoutCommandInput | UpdateEventTriggerCommandInput | UpdateProfileCommandInput;
|
|
97
|
+
export type ServiceInputTypes = AddProfileKeyCommandInput | BatchGetCalculatedAttributeForProfileCommandInput | BatchGetProfileCommandInput | CreateCalculatedAttributeDefinitionCommandInput | CreateDomainCommandInput | CreateDomainLayoutCommandInput | CreateEventStreamCommandInput | CreateEventTriggerCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | CreateSegmentDefinitionCommandInput | CreateSegmentEstimateCommandInput | CreateSegmentSnapshotCommandInput | CreateUploadJobCommandInput | DeleteCalculatedAttributeDefinitionCommandInput | DeleteDomainCommandInput | DeleteDomainLayoutCommandInput | DeleteEventStreamCommandInput | DeleteEventTriggerCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteSegmentDefinitionCommandInput | DeleteWorkflowCommandInput | DetectProfileObjectTypeCommandInput | GetAutoMergingPreviewCommandInput | GetCalculatedAttributeDefinitionCommandInput | GetCalculatedAttributeForProfileCommandInput | GetDomainCommandInput | GetDomainLayoutCommandInput | GetEventStreamCommandInput | GetEventTriggerCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetSegmentDefinitionCommandInput | GetSegmentEstimateCommandInput | GetSegmentMembershipCommandInput | GetSegmentSnapshotCommandInput | GetSimilarProfilesCommandInput | GetUploadJobCommandInput | GetUploadJobPathCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListCalculatedAttributeDefinitionsCommandInput | ListCalculatedAttributesForProfileCommandInput | ListDomainLayoutsCommandInput | ListDomainsCommandInput | ListEventStreamsCommandInput | ListEventTriggersCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListObjectTypeAttributesCommandInput | ListProfileAttributeValuesCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListRuleBasedMatchesCommandInput | ListSegmentDefinitionsCommandInput | ListTagsForResourceCommandInput | ListUploadJobsCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | StartUploadJobCommandInput | StopUploadJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCalculatedAttributeDefinitionCommandInput | UpdateDomainCommandInput | UpdateDomainLayoutCommandInput | UpdateEventTriggerCommandInput | UpdateProfileCommandInput;
|
|
92
98
|
/**
|
|
93
99
|
* @public
|
|
94
100
|
*/
|
|
95
|
-
export type ServiceOutputTypes = AddProfileKeyCommandOutput | BatchGetCalculatedAttributeForProfileCommandOutput | BatchGetProfileCommandOutput | CreateCalculatedAttributeDefinitionCommandOutput | CreateDomainCommandOutput | CreateDomainLayoutCommandOutput | CreateEventStreamCommandOutput | CreateEventTriggerCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | CreateSegmentDefinitionCommandOutput | CreateSegmentEstimateCommandOutput | CreateSegmentSnapshotCommandOutput | DeleteCalculatedAttributeDefinitionCommandOutput | DeleteDomainCommandOutput | DeleteDomainLayoutCommandOutput | DeleteEventStreamCommandOutput | DeleteEventTriggerCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteSegmentDefinitionCommandOutput | DeleteWorkflowCommandOutput | DetectProfileObjectTypeCommandOutput | GetAutoMergingPreviewCommandOutput | GetCalculatedAttributeDefinitionCommandOutput | GetCalculatedAttributeForProfileCommandOutput | GetDomainCommandOutput | GetDomainLayoutCommandOutput | GetEventStreamCommandOutput | GetEventTriggerCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetSegmentDefinitionCommandOutput | GetSegmentEstimateCommandOutput | GetSegmentMembershipCommandOutput | GetSegmentSnapshotCommandOutput | GetSimilarProfilesCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListCalculatedAttributeDefinitionsCommandOutput | ListCalculatedAttributesForProfileCommandOutput | ListDomainLayoutsCommandOutput | ListDomainsCommandOutput | ListEventStreamsCommandOutput | ListEventTriggersCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListObjectTypeAttributesCommandOutput | ListProfileAttributeValuesCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListRuleBasedMatchesCommandOutput | ListSegmentDefinitionsCommandOutput | ListTagsForResourceCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCalculatedAttributeDefinitionCommandOutput | UpdateDomainCommandOutput | UpdateDomainLayoutCommandOutput | UpdateEventTriggerCommandOutput | UpdateProfileCommandOutput;
|
|
101
|
+
export type ServiceOutputTypes = AddProfileKeyCommandOutput | BatchGetCalculatedAttributeForProfileCommandOutput | BatchGetProfileCommandOutput | CreateCalculatedAttributeDefinitionCommandOutput | CreateDomainCommandOutput | CreateDomainLayoutCommandOutput | CreateEventStreamCommandOutput | CreateEventTriggerCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | CreateSegmentDefinitionCommandOutput | CreateSegmentEstimateCommandOutput | CreateSegmentSnapshotCommandOutput | CreateUploadJobCommandOutput | DeleteCalculatedAttributeDefinitionCommandOutput | DeleteDomainCommandOutput | DeleteDomainLayoutCommandOutput | DeleteEventStreamCommandOutput | DeleteEventTriggerCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteSegmentDefinitionCommandOutput | DeleteWorkflowCommandOutput | DetectProfileObjectTypeCommandOutput | GetAutoMergingPreviewCommandOutput | GetCalculatedAttributeDefinitionCommandOutput | GetCalculatedAttributeForProfileCommandOutput | GetDomainCommandOutput | GetDomainLayoutCommandOutput | GetEventStreamCommandOutput | GetEventTriggerCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetSegmentDefinitionCommandOutput | GetSegmentEstimateCommandOutput | GetSegmentMembershipCommandOutput | GetSegmentSnapshotCommandOutput | GetSimilarProfilesCommandOutput | GetUploadJobCommandOutput | GetUploadJobPathCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListCalculatedAttributeDefinitionsCommandOutput | ListCalculatedAttributesForProfileCommandOutput | ListDomainLayoutsCommandOutput | ListDomainsCommandOutput | ListEventStreamsCommandOutput | ListEventTriggersCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListObjectTypeAttributesCommandOutput | ListProfileAttributeValuesCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListRuleBasedMatchesCommandOutput | ListSegmentDefinitionsCommandOutput | ListTagsForResourceCommandOutput | ListUploadJobsCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | StartUploadJobCommandOutput | StopUploadJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCalculatedAttributeDefinitionCommandOutput | UpdateDomainCommandOutput | UpdateDomainLayoutCommandOutput | UpdateEventTriggerCommandOutput | UpdateProfileCommandOutput;
|
|
96
102
|
/**
|
|
97
103
|
* @public
|
|
98
104
|
*/
|
|
@@ -0,0 +1,98 @@
|
|
|
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 { CreateUploadJobRequest, CreateUploadJobResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateUploadJobCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateUploadJobCommandInput extends CreateUploadJobRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateUploadJobCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateUploadJobCommandOutput extends CreateUploadJobResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateUploadJobCommand_base: {
|
|
25
|
+
new (input: CreateUploadJobCommandInput): import("@smithy/smithy-client").CommandImpl<CreateUploadJobCommandInput, CreateUploadJobCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateUploadJobCommandInput): import("@smithy/smithy-client").CommandImpl<CreateUploadJobCommandInput, CreateUploadJobCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates an Upload job to ingest data for segment imports. The metadata is created for
|
|
31
|
+
* the job with the provided field mapping and unique key. </p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { CustomerProfilesClient, CreateUploadJobCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
36
|
+
* // const { CustomerProfilesClient, CreateUploadJobCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
37
|
+
* const client = new CustomerProfilesClient(config);
|
|
38
|
+
* const input = { // CreateUploadJobRequest
|
|
39
|
+
* DomainName: "STRING_VALUE", // required
|
|
40
|
+
* DisplayName: "STRING_VALUE", // required
|
|
41
|
+
* Fields: { // FieldMap // required
|
|
42
|
+
* "<keys>": { // ObjectTypeField
|
|
43
|
+
* Source: "STRING_VALUE",
|
|
44
|
+
* Target: "STRING_VALUE",
|
|
45
|
+
* ContentType: "STRING" || "NUMBER" || "PHONE_NUMBER" || "EMAIL_ADDRESS" || "NAME",
|
|
46
|
+
* },
|
|
47
|
+
* },
|
|
48
|
+
* UniqueKey: "STRING_VALUE", // required
|
|
49
|
+
* DataExpiry: Number("int"),
|
|
50
|
+
* };
|
|
51
|
+
* const command = new CreateUploadJobCommand(input);
|
|
52
|
+
* const response = await client.send(command);
|
|
53
|
+
* // { // CreateUploadJobResponse
|
|
54
|
+
* // JobId: "STRING_VALUE", // required
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
59
|
+
* @param CreateUploadJobCommandInput - {@link CreateUploadJobCommandInput}
|
|
60
|
+
* @returns {@link CreateUploadJobCommandOutput}
|
|
61
|
+
* @see {@link CreateUploadJobCommandInput} for command's `input` shape.
|
|
62
|
+
* @see {@link CreateUploadJobCommandOutput} for command's `response` shape.
|
|
63
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
66
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link BadRequestException} (client fault)
|
|
69
|
+
* <p>The input you provided is invalid.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link InternalServerException} (server fault)
|
|
72
|
+
* <p>An internal service error occurred.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
75
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
78
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
82
|
+
*
|
|
83
|
+
*
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export declare class CreateUploadJobCommand extends CreateUploadJobCommand_base {
|
|
87
|
+
/** @internal type navigation helper, not in runtime. */
|
|
88
|
+
protected static __types: {
|
|
89
|
+
api: {
|
|
90
|
+
input: CreateUploadJobRequest;
|
|
91
|
+
output: CreateUploadJobResponse;
|
|
92
|
+
};
|
|
93
|
+
sdk: {
|
|
94
|
+
input: CreateUploadJobCommandInput;
|
|
95
|
+
output: CreateUploadJobCommandOutput;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
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 { GetUploadJobRequest, GetUploadJobResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetUploadJobCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetUploadJobCommandInput extends GetUploadJobRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetUploadJobCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetUploadJobCommandOutput extends GetUploadJobResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetUploadJobCommand_base: {
|
|
25
|
+
new (input: GetUploadJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetUploadJobCommandInput, GetUploadJobCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetUploadJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetUploadJobCommandInput, GetUploadJobCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>This API retrieves the details of a specific upload job. </p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { CustomerProfilesClient, GetUploadJobCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
35
|
+
* // const { CustomerProfilesClient, GetUploadJobCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
36
|
+
* const client = new CustomerProfilesClient(config);
|
|
37
|
+
* const input = { // GetUploadJobRequest
|
|
38
|
+
* DomainName: "STRING_VALUE", // required
|
|
39
|
+
* JobId: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new GetUploadJobCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // GetUploadJobResponse
|
|
44
|
+
* // JobId: "STRING_VALUE",
|
|
45
|
+
* // DisplayName: "STRING_VALUE",
|
|
46
|
+
* // Status: "CREATED" || "IN_PROGRESS" || "PARTIALLY_SUCCEEDED" || "SUCCEEDED" || "FAILED" || "STOPPED",
|
|
47
|
+
* // StatusReason: "VALIDATION_FAILURE" || "INTERNAL_FAILURE",
|
|
48
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
49
|
+
* // CompletedAt: new Date("TIMESTAMP"),
|
|
50
|
+
* // Fields: { // FieldMap
|
|
51
|
+
* // "<keys>": { // ObjectTypeField
|
|
52
|
+
* // Source: "STRING_VALUE",
|
|
53
|
+
* // Target: "STRING_VALUE",
|
|
54
|
+
* // ContentType: "STRING" || "NUMBER" || "PHONE_NUMBER" || "EMAIL_ADDRESS" || "NAME",
|
|
55
|
+
* // },
|
|
56
|
+
* // },
|
|
57
|
+
* // UniqueKey: "STRING_VALUE",
|
|
58
|
+
* // ResultsSummary: { // ResultsSummary
|
|
59
|
+
* // UpdatedRecords: Number("long"),
|
|
60
|
+
* // CreatedRecords: Number("long"),
|
|
61
|
+
* // FailedRecords: Number("long"),
|
|
62
|
+
* // },
|
|
63
|
+
* // DataExpiry: Number("int"),
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
66
|
+
* ```
|
|
67
|
+
*
|
|
68
|
+
* @param GetUploadJobCommandInput - {@link GetUploadJobCommandInput}
|
|
69
|
+
* @returns {@link GetUploadJobCommandOutput}
|
|
70
|
+
* @see {@link GetUploadJobCommandInput} for command's `input` shape.
|
|
71
|
+
* @see {@link GetUploadJobCommandOutput} for command's `response` shape.
|
|
72
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
75
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link BadRequestException} (client fault)
|
|
78
|
+
* <p>The input you provided is invalid.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link InternalServerException} (server fault)
|
|
81
|
+
* <p>An internal service error occurred.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
84
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
87
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
91
|
+
*
|
|
92
|
+
*
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export declare class GetUploadJobCommand extends GetUploadJobCommand_base {
|
|
96
|
+
/** @internal type navigation helper, not in runtime. */
|
|
97
|
+
protected static __types: {
|
|
98
|
+
api: {
|
|
99
|
+
input: GetUploadJobRequest;
|
|
100
|
+
output: GetUploadJobResponse;
|
|
101
|
+
};
|
|
102
|
+
sdk: {
|
|
103
|
+
input: GetUploadJobCommandInput;
|
|
104
|
+
output: GetUploadJobCommandOutput;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
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 { GetUploadJobPathRequest, GetUploadJobPathResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetUploadJobPathCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetUploadJobPathCommandInput extends GetUploadJobPathRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetUploadJobPathCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetUploadJobPathCommandOutput extends GetUploadJobPathResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetUploadJobPathCommand_base: {
|
|
25
|
+
new (input: GetUploadJobPathCommandInput): import("@smithy/smithy-client").CommandImpl<GetUploadJobPathCommandInput, GetUploadJobPathCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetUploadJobPathCommandInput): import("@smithy/smithy-client").CommandImpl<GetUploadJobPathCommandInput, GetUploadJobPathCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>This API retrieves the pre-signed URL and client token for uploading the file associated
|
|
31
|
+
* with the upload job. </p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { CustomerProfilesClient, GetUploadJobPathCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
36
|
+
* // const { CustomerProfilesClient, GetUploadJobPathCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
37
|
+
* const client = new CustomerProfilesClient(config);
|
|
38
|
+
* const input = { // GetUploadJobPathRequest
|
|
39
|
+
* DomainName: "STRING_VALUE", // required
|
|
40
|
+
* JobId: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new GetUploadJobPathCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // GetUploadJobPathResponse
|
|
45
|
+
* // Url: "STRING_VALUE", // required
|
|
46
|
+
* // ClientToken: "STRING_VALUE",
|
|
47
|
+
* // ValidUntil: new Date("TIMESTAMP"),
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
50
|
+
* ```
|
|
51
|
+
*
|
|
52
|
+
* @param GetUploadJobPathCommandInput - {@link GetUploadJobPathCommandInput}
|
|
53
|
+
* @returns {@link GetUploadJobPathCommandOutput}
|
|
54
|
+
* @see {@link GetUploadJobPathCommandInput} for command's `input` shape.
|
|
55
|
+
* @see {@link GetUploadJobPathCommandOutput} for command's `response` shape.
|
|
56
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
59
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link BadRequestException} (client fault)
|
|
62
|
+
* <p>The input you provided is invalid.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InternalServerException} (server fault)
|
|
65
|
+
* <p>An internal service error occurred.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
68
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
71
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
75
|
+
*
|
|
76
|
+
*
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class GetUploadJobPathCommand extends GetUploadJobPathCommand_base {
|
|
80
|
+
/** @internal type navigation helper, not in runtime. */
|
|
81
|
+
protected static __types: {
|
|
82
|
+
api: {
|
|
83
|
+
input: GetUploadJobPathRequest;
|
|
84
|
+
output: GetUploadJobPathResponse;
|
|
85
|
+
};
|
|
86
|
+
sdk: {
|
|
87
|
+
input: GetUploadJobPathCommandInput;
|
|
88
|
+
output: GetUploadJobPathCommandOutput;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
}
|
|
@@ -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 { ListUploadJobsRequest, ListUploadJobsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListUploadJobsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListUploadJobsCommandInput extends ListUploadJobsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListUploadJobsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListUploadJobsCommandOutput extends ListUploadJobsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListUploadJobsCommand_base: {
|
|
25
|
+
new (input: ListUploadJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListUploadJobsCommandInput, ListUploadJobsCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListUploadJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListUploadJobsCommandInput, ListUploadJobsCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>This API retrieves a list of upload jobs for the specified 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, ListUploadJobsCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
35
|
+
* // const { CustomerProfilesClient, ListUploadJobsCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
36
|
+
* const client = new CustomerProfilesClient(config);
|
|
37
|
+
* const input = { // ListUploadJobsRequest
|
|
38
|
+
* DomainName: "STRING_VALUE", // required
|
|
39
|
+
* MaxResults: Number("int"),
|
|
40
|
+
* NextToken: "STRING_VALUE",
|
|
41
|
+
* };
|
|
42
|
+
* const command = new ListUploadJobsCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // ListUploadJobsResponse
|
|
45
|
+
* // NextToken: "STRING_VALUE",
|
|
46
|
+
* // Items: [ // UploadJobsList
|
|
47
|
+
* // { // UploadJobItem
|
|
48
|
+
* // JobId: "STRING_VALUE",
|
|
49
|
+
* // DisplayName: "STRING_VALUE",
|
|
50
|
+
* // Status: "CREATED" || "IN_PROGRESS" || "PARTIALLY_SUCCEEDED" || "SUCCEEDED" || "FAILED" || "STOPPED",
|
|
51
|
+
* // StatusReason: "VALIDATION_FAILURE" || "INTERNAL_FAILURE",
|
|
52
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
53
|
+
* // CompletedAt: new Date("TIMESTAMP"),
|
|
54
|
+
* // DataExpiry: Number("int"),
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @param ListUploadJobsCommandInput - {@link ListUploadJobsCommandInput}
|
|
62
|
+
* @returns {@link ListUploadJobsCommandOutput}
|
|
63
|
+
* @see {@link ListUploadJobsCommandInput} for command's `input` shape.
|
|
64
|
+
* @see {@link ListUploadJobsCommandOutput} for command's `response` shape.
|
|
65
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
68
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link BadRequestException} (client fault)
|
|
71
|
+
* <p>The input you provided is invalid.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link InternalServerException} (server fault)
|
|
74
|
+
* <p>An internal service error occurred.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
77
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
80
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
84
|
+
*
|
|
85
|
+
*
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export declare class ListUploadJobsCommand extends ListUploadJobsCommand_base {
|
|
89
|
+
/** @internal type navigation helper, not in runtime. */
|
|
90
|
+
protected static __types: {
|
|
91
|
+
api: {
|
|
92
|
+
input: ListUploadJobsRequest;
|
|
93
|
+
output: ListUploadJobsResponse;
|
|
94
|
+
};
|
|
95
|
+
sdk: {
|
|
96
|
+
input: ListUploadJobsCommandInput;
|
|
97
|
+
output: ListUploadJobsCommandOutput;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
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 { StartUploadJobRequest } from "../models/models_0";
|
|
5
|
+
import { StartUploadJobResponse } from "../models/models_1";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export type { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*
|
|
14
|
+
* The input for {@link StartUploadJobCommand}.
|
|
15
|
+
*/
|
|
16
|
+
export interface StartUploadJobCommandInput extends StartUploadJobRequest {
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*
|
|
21
|
+
* The output of {@link StartUploadJobCommand}.
|
|
22
|
+
*/
|
|
23
|
+
export interface StartUploadJobCommandOutput extends StartUploadJobResponse, __MetadataBearer {
|
|
24
|
+
}
|
|
25
|
+
declare const StartUploadJobCommand_base: {
|
|
26
|
+
new (input: StartUploadJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartUploadJobCommandInput, StartUploadJobCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
new (input: StartUploadJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartUploadJobCommandInput, StartUploadJobCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* <p>This API starts the processing of an upload job to ingest profile data. </p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { CustomerProfilesClient, StartUploadJobCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
36
|
+
* // const { CustomerProfilesClient, StartUploadJobCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
37
|
+
* const client = new CustomerProfilesClient(config);
|
|
38
|
+
* const input = { // StartUploadJobRequest
|
|
39
|
+
* DomainName: "STRING_VALUE", // required
|
|
40
|
+
* JobId: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new StartUploadJobCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param StartUploadJobCommandInput - {@link StartUploadJobCommandInput}
|
|
49
|
+
* @returns {@link StartUploadJobCommandOutput}
|
|
50
|
+
* @see {@link StartUploadJobCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link StartUploadJobCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
55
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link BadRequestException} (client fault)
|
|
58
|
+
* <p>The input you provided is invalid.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InternalServerException} (server fault)
|
|
61
|
+
* <p>An internal service error occurred.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
64
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
67
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
71
|
+
*
|
|
72
|
+
*
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export declare class StartUploadJobCommand extends StartUploadJobCommand_base {
|
|
76
|
+
/** @internal type navigation helper, not in runtime. */
|
|
77
|
+
protected static __types: {
|
|
78
|
+
api: {
|
|
79
|
+
input: StartUploadJobRequest;
|
|
80
|
+
output: {};
|
|
81
|
+
};
|
|
82
|
+
sdk: {
|
|
83
|
+
input: StartUploadJobCommandInput;
|
|
84
|
+
output: StartUploadJobCommandOutput;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
}
|