@aws-sdk/client-customer-profiles 3.840.0 → 3.844.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 +14 -14
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
StopUploadJobRequest,
|
|
10
|
+
StopUploadJobResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StopUploadJobCommandInput extends StopUploadJobRequest {}
|
|
15
|
+
export interface StopUploadJobCommandOutput
|
|
16
|
+
extends StopUploadJobResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const StopUploadJobCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: StopUploadJobCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
StopUploadJobCommandInput,
|
|
23
|
+
StopUploadJobCommandOutput,
|
|
24
|
+
CustomerProfilesClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: StopUploadJobCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StopUploadJobCommandInput,
|
|
32
|
+
StopUploadJobCommandOutput,
|
|
33
|
+
CustomerProfilesClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class StopUploadJobCommand extends StopUploadJobCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: StopUploadJobRequest;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: StopUploadJobCommandInput;
|
|
47
|
+
output: StopUploadJobCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CustomerProfilesClient";
|
|
8
|
-
import { TagResourceRequest, TagResourceResponse } from "../models/
|
|
8
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UntagResourceRequest,
|
|
10
10
|
UntagResourceResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateCalculatedAttributeDefinitionRequest,
|
|
10
10
|
UpdateCalculatedAttributeDefinitionResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UpdateCalculatedAttributeDefinitionCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CustomerProfilesClient";
|
|
8
|
-
import { UpdateDomainRequest, UpdateDomainResponse } from "../models/
|
|
8
|
+
import { UpdateDomainRequest, UpdateDomainResponse } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface UpdateDomainCommandInput extends UpdateDomainRequest {}
|
|
@@ -11,6 +11,7 @@ export * from "./CreateProfileCommand";
|
|
|
11
11
|
export * from "./CreateSegmentDefinitionCommand";
|
|
12
12
|
export * from "./CreateSegmentEstimateCommand";
|
|
13
13
|
export * from "./CreateSegmentSnapshotCommand";
|
|
14
|
+
export * from "./CreateUploadJobCommand";
|
|
14
15
|
export * from "./DeleteCalculatedAttributeDefinitionCommand";
|
|
15
16
|
export * from "./DeleteDomainCommand";
|
|
16
17
|
export * from "./DeleteDomainLayoutCommand";
|
|
@@ -41,6 +42,8 @@ export * from "./GetSegmentEstimateCommand";
|
|
|
41
42
|
export * from "./GetSegmentMembershipCommand";
|
|
42
43
|
export * from "./GetSegmentSnapshotCommand";
|
|
43
44
|
export * from "./GetSimilarProfilesCommand";
|
|
45
|
+
export * from "./GetUploadJobCommand";
|
|
46
|
+
export * from "./GetUploadJobPathCommand";
|
|
44
47
|
export * from "./GetWorkflowCommand";
|
|
45
48
|
export * from "./GetWorkflowStepsCommand";
|
|
46
49
|
export * from "./ListAccountIntegrationsCommand";
|
|
@@ -60,12 +63,15 @@ export * from "./ListProfileObjectsCommand";
|
|
|
60
63
|
export * from "./ListRuleBasedMatchesCommand";
|
|
61
64
|
export * from "./ListSegmentDefinitionsCommand";
|
|
62
65
|
export * from "./ListTagsForResourceCommand";
|
|
66
|
+
export * from "./ListUploadJobsCommand";
|
|
63
67
|
export * from "./ListWorkflowsCommand";
|
|
64
68
|
export * from "./MergeProfilesCommand";
|
|
65
69
|
export * from "./PutIntegrationCommand";
|
|
66
70
|
export * from "./PutProfileObjectCommand";
|
|
67
71
|
export * from "./PutProfileObjectTypeCommand";
|
|
68
72
|
export * from "./SearchProfilesCommand";
|
|
73
|
+
export * from "./StartUploadJobCommand";
|
|
74
|
+
export * from "./StopUploadJobCommand";
|
|
69
75
|
export * from "./TagResourceCommand";
|
|
70
76
|
export * from "./UntagResourceCommand";
|
|
71
77
|
export * from "./UpdateCalculatedAttributeDefinitionCommand";
|
|
@@ -1041,6 +1041,30 @@ export interface CreateSegmentSnapshotRequest {
|
|
|
1041
1041
|
export interface CreateSegmentSnapshotResponse {
|
|
1042
1042
|
SnapshotId: string | undefined;
|
|
1043
1043
|
}
|
|
1044
|
+
export declare const FieldContentType: {
|
|
1045
|
+
readonly EMAIL_ADDRESS: "EMAIL_ADDRESS";
|
|
1046
|
+
readonly NAME: "NAME";
|
|
1047
|
+
readonly NUMBER: "NUMBER";
|
|
1048
|
+
readonly PHONE_NUMBER: "PHONE_NUMBER";
|
|
1049
|
+
readonly STRING: "STRING";
|
|
1050
|
+
};
|
|
1051
|
+
export type FieldContentType =
|
|
1052
|
+
(typeof FieldContentType)[keyof typeof FieldContentType];
|
|
1053
|
+
export interface ObjectTypeField {
|
|
1054
|
+
Source?: string | undefined;
|
|
1055
|
+
Target?: string | undefined;
|
|
1056
|
+
ContentType?: FieldContentType | undefined;
|
|
1057
|
+
}
|
|
1058
|
+
export interface CreateUploadJobRequest {
|
|
1059
|
+
DomainName: string | undefined;
|
|
1060
|
+
DisplayName: string | undefined;
|
|
1061
|
+
Fields: Record<string, ObjectTypeField> | undefined;
|
|
1062
|
+
UniqueKey: string | undefined;
|
|
1063
|
+
DataExpiry?: number | undefined;
|
|
1064
|
+
}
|
|
1065
|
+
export interface CreateUploadJobResponse {
|
|
1066
|
+
JobId: string | undefined;
|
|
1067
|
+
}
|
|
1044
1068
|
export interface DeleteCalculatedAttributeDefinitionRequest {
|
|
1045
1069
|
DomainName: string | undefined;
|
|
1046
1070
|
CalculatedAttributeName: string | undefined;
|
|
@@ -1126,20 +1150,6 @@ export interface DetectProfileObjectTypeRequest {
|
|
|
1126
1150
|
Objects: string[] | undefined;
|
|
1127
1151
|
DomainName: string | undefined;
|
|
1128
1152
|
}
|
|
1129
|
-
export declare const FieldContentType: {
|
|
1130
|
-
readonly EMAIL_ADDRESS: "EMAIL_ADDRESS";
|
|
1131
|
-
readonly NAME: "NAME";
|
|
1132
|
-
readonly NUMBER: "NUMBER";
|
|
1133
|
-
readonly PHONE_NUMBER: "PHONE_NUMBER";
|
|
1134
|
-
readonly STRING: "STRING";
|
|
1135
|
-
};
|
|
1136
|
-
export type FieldContentType =
|
|
1137
|
-
(typeof FieldContentType)[keyof typeof FieldContentType];
|
|
1138
|
-
export interface ObjectTypeField {
|
|
1139
|
-
Source?: string | undefined;
|
|
1140
|
-
Target?: string | undefined;
|
|
1141
|
-
ContentType?: FieldContentType | undefined;
|
|
1142
|
-
}
|
|
1143
1153
|
export declare const StandardIdentifier: {
|
|
1144
1154
|
readonly AIR_BOOKING: "AIR_BOOKING";
|
|
1145
1155
|
readonly AIR_PREFERENCE: "AIR_PREFERENCE";
|
|
@@ -1504,6 +1514,51 @@ export interface GetSimilarProfilesResponse {
|
|
|
1504
1514
|
ConfidenceScore?: number | undefined;
|
|
1505
1515
|
NextToken?: string | undefined;
|
|
1506
1516
|
}
|
|
1517
|
+
export interface GetUploadJobRequest {
|
|
1518
|
+
DomainName: string | undefined;
|
|
1519
|
+
JobId: string | undefined;
|
|
1520
|
+
}
|
|
1521
|
+
export interface ResultsSummary {
|
|
1522
|
+
UpdatedRecords?: number | undefined;
|
|
1523
|
+
CreatedRecords?: number | undefined;
|
|
1524
|
+
FailedRecords?: number | undefined;
|
|
1525
|
+
}
|
|
1526
|
+
export declare const UploadJobStatus: {
|
|
1527
|
+
readonly CREATED: "CREATED";
|
|
1528
|
+
readonly FAILED: "FAILED";
|
|
1529
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1530
|
+
readonly PARTIALLY_SUCCEEDED: "PARTIALLY_SUCCEEDED";
|
|
1531
|
+
readonly STOPPED: "STOPPED";
|
|
1532
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
1533
|
+
};
|
|
1534
|
+
export type UploadJobStatus =
|
|
1535
|
+
(typeof UploadJobStatus)[keyof typeof UploadJobStatus];
|
|
1536
|
+
export declare const StatusReason: {
|
|
1537
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
1538
|
+
readonly VALIDATION_FAILURE: "VALIDATION_FAILURE";
|
|
1539
|
+
};
|
|
1540
|
+
export type StatusReason = (typeof StatusReason)[keyof typeof StatusReason];
|
|
1541
|
+
export interface GetUploadJobResponse {
|
|
1542
|
+
JobId?: string | undefined;
|
|
1543
|
+
DisplayName?: string | undefined;
|
|
1544
|
+
Status?: UploadJobStatus | undefined;
|
|
1545
|
+
StatusReason?: StatusReason | undefined;
|
|
1546
|
+
CreatedAt?: Date | undefined;
|
|
1547
|
+
CompletedAt?: Date | undefined;
|
|
1548
|
+
Fields?: Record<string, ObjectTypeField> | undefined;
|
|
1549
|
+
UniqueKey?: string | undefined;
|
|
1550
|
+
ResultsSummary?: ResultsSummary | undefined;
|
|
1551
|
+
DataExpiry?: number | undefined;
|
|
1552
|
+
}
|
|
1553
|
+
export interface GetUploadJobPathRequest {
|
|
1554
|
+
DomainName: string | undefined;
|
|
1555
|
+
JobId: string | undefined;
|
|
1556
|
+
}
|
|
1557
|
+
export interface GetUploadJobPathResponse {
|
|
1558
|
+
Url: string | undefined;
|
|
1559
|
+
ClientToken?: string | undefined;
|
|
1560
|
+
ValidUntil?: Date | undefined;
|
|
1561
|
+
}
|
|
1507
1562
|
export interface GetWorkflowRequest {
|
|
1508
1563
|
DomainName: string | undefined;
|
|
1509
1564
|
WorkflowId: string | undefined;
|
|
@@ -1791,6 +1846,24 @@ export interface ListTagsForResourceRequest {
|
|
|
1791
1846
|
export interface ListTagsForResourceResponse {
|
|
1792
1847
|
tags?: Record<string, string> | undefined;
|
|
1793
1848
|
}
|
|
1849
|
+
export interface ListUploadJobsRequest {
|
|
1850
|
+
DomainName: string | undefined;
|
|
1851
|
+
MaxResults?: number | undefined;
|
|
1852
|
+
NextToken?: string | undefined;
|
|
1853
|
+
}
|
|
1854
|
+
export interface UploadJobItem {
|
|
1855
|
+
JobId?: string | undefined;
|
|
1856
|
+
DisplayName?: string | undefined;
|
|
1857
|
+
Status?: UploadJobStatus | undefined;
|
|
1858
|
+
StatusReason?: StatusReason | undefined;
|
|
1859
|
+
CreatedAt?: Date | undefined;
|
|
1860
|
+
CompletedAt?: Date | undefined;
|
|
1861
|
+
DataExpiry?: number | undefined;
|
|
1862
|
+
}
|
|
1863
|
+
export interface ListUploadJobsResponse {
|
|
1864
|
+
NextToken?: string | undefined;
|
|
1865
|
+
Items?: UploadJobItem[] | undefined;
|
|
1866
|
+
}
|
|
1794
1867
|
export interface ListWorkflowsRequest {
|
|
1795
1868
|
DomainName: string | undefined;
|
|
1796
1869
|
WorkflowType?: WorkflowType | undefined;
|
|
@@ -1924,109 +1997,9 @@ export interface SearchProfilesResponse {
|
|
|
1924
1997
|
Items?: Profile[] | undefined;
|
|
1925
1998
|
NextToken?: string | undefined;
|
|
1926
1999
|
}
|
|
1927
|
-
export interface
|
|
1928
|
-
resourceArn: string | undefined;
|
|
1929
|
-
tags: Record<string, string> | undefined;
|
|
1930
|
-
}
|
|
1931
|
-
export interface TagResourceResponse {}
|
|
1932
|
-
export interface UntagResourceRequest {
|
|
1933
|
-
resourceArn: string | undefined;
|
|
1934
|
-
tagKeys: string[] | undefined;
|
|
1935
|
-
}
|
|
1936
|
-
export interface UntagResourceResponse {}
|
|
1937
|
-
export interface UpdateCalculatedAttributeDefinitionRequest {
|
|
2000
|
+
export interface StartUploadJobRequest {
|
|
1938
2001
|
DomainName: string | undefined;
|
|
1939
|
-
|
|
1940
|
-
DisplayName?: string | undefined;
|
|
1941
|
-
Description?: string | undefined;
|
|
1942
|
-
Conditions?: Conditions | undefined;
|
|
1943
|
-
}
|
|
1944
|
-
export interface UpdateCalculatedAttributeDefinitionResponse {
|
|
1945
|
-
CalculatedAttributeName?: string | undefined;
|
|
1946
|
-
DisplayName?: string | undefined;
|
|
1947
|
-
Description?: string | undefined;
|
|
1948
|
-
CreatedAt?: Date | undefined;
|
|
1949
|
-
LastUpdatedAt?: Date | undefined;
|
|
1950
|
-
Statistic?: Statistic | undefined;
|
|
1951
|
-
Conditions?: Conditions | undefined;
|
|
1952
|
-
AttributeDetails?: AttributeDetails | undefined;
|
|
1953
|
-
UseHistoricalData?: boolean | undefined;
|
|
1954
|
-
Status?: ReadinessStatus | undefined;
|
|
1955
|
-
Readiness?: Readiness | undefined;
|
|
1956
|
-
Tags?: Record<string, string> | undefined;
|
|
1957
|
-
}
|
|
1958
|
-
export interface UpdateDomainRequest {
|
|
1959
|
-
DomainName: string | undefined;
|
|
1960
|
-
DefaultExpirationDays?: number | undefined;
|
|
1961
|
-
DefaultEncryptionKey?: string | undefined;
|
|
1962
|
-
DeadLetterQueueUrl?: string | undefined;
|
|
1963
|
-
Matching?: MatchingRequest | undefined;
|
|
1964
|
-
RuleBasedMatching?: RuleBasedMatchingRequest | undefined;
|
|
1965
|
-
Tags?: Record<string, string> | undefined;
|
|
1966
|
-
}
|
|
1967
|
-
export interface UpdateDomainResponse {
|
|
1968
|
-
DomainName: string | undefined;
|
|
1969
|
-
DefaultExpirationDays?: number | undefined;
|
|
1970
|
-
DefaultEncryptionKey?: string | undefined;
|
|
1971
|
-
DeadLetterQueueUrl?: string | undefined;
|
|
1972
|
-
Matching?: MatchingResponse | undefined;
|
|
1973
|
-
RuleBasedMatching?: RuleBasedMatchingResponse | undefined;
|
|
1974
|
-
CreatedAt: Date | undefined;
|
|
1975
|
-
LastUpdatedAt: Date | undefined;
|
|
1976
|
-
Tags?: Record<string, string> | undefined;
|
|
1977
|
-
}
|
|
1978
|
-
export interface UpdateDomainLayoutRequest {
|
|
1979
|
-
DomainName: string | undefined;
|
|
1980
|
-
LayoutDefinitionName: string | undefined;
|
|
1981
|
-
Description?: string | undefined;
|
|
1982
|
-
DisplayName?: string | undefined;
|
|
1983
|
-
IsDefault?: boolean | undefined;
|
|
1984
|
-
LayoutType?: LayoutType | undefined;
|
|
1985
|
-
Layout?: string | undefined;
|
|
1986
|
-
}
|
|
1987
|
-
export interface UpdateDomainLayoutResponse {
|
|
1988
|
-
LayoutDefinitionName?: string | undefined;
|
|
1989
|
-
Description?: string | undefined;
|
|
1990
|
-
DisplayName?: string | undefined;
|
|
1991
|
-
IsDefault?: boolean | undefined;
|
|
1992
|
-
LayoutType?: LayoutType | undefined;
|
|
1993
|
-
Layout?: string | undefined;
|
|
1994
|
-
Version?: string | undefined;
|
|
1995
|
-
CreatedAt?: Date | undefined;
|
|
1996
|
-
LastUpdatedAt?: Date | undefined;
|
|
1997
|
-
Tags?: Record<string, string> | undefined;
|
|
1998
|
-
}
|
|
1999
|
-
export interface UpdateEventTriggerRequest {
|
|
2000
|
-
DomainName: string | undefined;
|
|
2001
|
-
EventTriggerName: string | undefined;
|
|
2002
|
-
ObjectTypeName?: string | undefined;
|
|
2003
|
-
Description?: string | undefined;
|
|
2004
|
-
EventTriggerConditions?: EventTriggerCondition[] | undefined;
|
|
2005
|
-
SegmentFilter?: string | undefined;
|
|
2006
|
-
EventTriggerLimits?: EventTriggerLimits | undefined;
|
|
2007
|
-
}
|
|
2008
|
-
export interface UpdateEventTriggerResponse {
|
|
2009
|
-
EventTriggerName?: string | undefined;
|
|
2010
|
-
ObjectTypeName?: string | undefined;
|
|
2011
|
-
Description?: string | undefined;
|
|
2012
|
-
EventTriggerConditions?: EventTriggerCondition[] | undefined;
|
|
2013
|
-
SegmentFilter?: string | undefined;
|
|
2014
|
-
EventTriggerLimits?: EventTriggerLimits | undefined;
|
|
2015
|
-
CreatedAt?: Date | undefined;
|
|
2016
|
-
LastUpdatedAt?: Date | undefined;
|
|
2017
|
-
Tags?: Record<string, string> | undefined;
|
|
2018
|
-
}
|
|
2019
|
-
export interface UpdateAddress {
|
|
2020
|
-
Address1?: string | undefined;
|
|
2021
|
-
Address2?: string | undefined;
|
|
2022
|
-
Address3?: string | undefined;
|
|
2023
|
-
Address4?: string | undefined;
|
|
2024
|
-
City?: string | undefined;
|
|
2025
|
-
County?: string | undefined;
|
|
2026
|
-
State?: string | undefined;
|
|
2027
|
-
Province?: string | undefined;
|
|
2028
|
-
Country?: string | undefined;
|
|
2029
|
-
PostalCode?: string | undefined;
|
|
2002
|
+
JobId: string | undefined;
|
|
2030
2003
|
}
|
|
2031
2004
|
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
2032
2005
|
export declare const FlowDefinitionFilterSensitiveLog: (
|
|
@@ -2103,6 +2076,9 @@ export declare const SegmentGroupStructureFilterSensitiveLog: (
|
|
|
2103
2076
|
export declare const CreateSegmentEstimateRequestFilterSensitiveLog: (
|
|
2104
2077
|
obj: CreateSegmentEstimateRequest
|
|
2105
2078
|
) => any;
|
|
2079
|
+
export declare const CreateUploadJobRequestFilterSensitiveLog: (
|
|
2080
|
+
obj: CreateUploadJobRequest
|
|
2081
|
+
) => any;
|
|
2106
2082
|
export declare const DetectProfileObjectTypeRequestFilterSensitiveLog: (
|
|
2107
2083
|
obj: DetectProfileObjectTypeRequest
|
|
2108
2084
|
) => any;
|
|
@@ -2136,6 +2112,9 @@ export declare const ProfileQueryResultFilterSensitiveLog: (
|
|
|
2136
2112
|
export declare const GetSegmentMembershipResponseFilterSensitiveLog: (
|
|
2137
2113
|
obj: GetSegmentMembershipResponse
|
|
2138
2114
|
) => any;
|
|
2115
|
+
export declare const GetUploadJobResponseFilterSensitiveLog: (
|
|
2116
|
+
obj: GetUploadJobResponse
|
|
2117
|
+
) => any;
|
|
2139
2118
|
export declare const ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog: (
|
|
2140
2119
|
obj: ListCalculatedAttributeDefinitionsResponse
|
|
2141
2120
|
) => any;
|
|
@@ -2176,24 +2155,3 @@ export declare const PutProfileObjectTypeResponseFilterSensitiveLog: (
|
|
|
2176
2155
|
export declare const SearchProfilesResponseFilterSensitiveLog: (
|
|
2177
2156
|
obj: SearchProfilesResponse
|
|
2178
2157
|
) => any;
|
|
2179
|
-
export declare const UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog: (
|
|
2180
|
-
obj: UpdateCalculatedAttributeDefinitionRequest
|
|
2181
|
-
) => any;
|
|
2182
|
-
export declare const UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog: (
|
|
2183
|
-
obj: UpdateCalculatedAttributeDefinitionResponse
|
|
2184
|
-
) => any;
|
|
2185
|
-
export declare const UpdateDomainLayoutRequestFilterSensitiveLog: (
|
|
2186
|
-
obj: UpdateDomainLayoutRequest
|
|
2187
|
-
) => any;
|
|
2188
|
-
export declare const UpdateDomainLayoutResponseFilterSensitiveLog: (
|
|
2189
|
-
obj: UpdateDomainLayoutResponse
|
|
2190
|
-
) => any;
|
|
2191
|
-
export declare const UpdateEventTriggerRequestFilterSensitiveLog: (
|
|
2192
|
-
obj: UpdateEventTriggerRequest
|
|
2193
|
-
) => any;
|
|
2194
|
-
export declare const UpdateEventTriggerResponseFilterSensitiveLog: (
|
|
2195
|
-
obj: UpdateEventTriggerResponse
|
|
2196
|
-
) => any;
|
|
2197
|
-
export declare const UpdateAddressFilterSensitiveLog: (
|
|
2198
|
-
obj: UpdateAddress
|
|
2199
|
-
) => any;
|
|
@@ -1,4 +1,129 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
AttributeDetails,
|
|
3
|
+
Conditions,
|
|
4
|
+
EventTriggerCondition,
|
|
5
|
+
EventTriggerLimits,
|
|
6
|
+
Gender,
|
|
7
|
+
LayoutType,
|
|
8
|
+
MatchingRequest,
|
|
9
|
+
MatchingResponse,
|
|
10
|
+
PartyType,
|
|
11
|
+
Readiness,
|
|
12
|
+
ReadinessStatus,
|
|
13
|
+
RuleBasedMatchingRequest,
|
|
14
|
+
RuleBasedMatchingResponse,
|
|
15
|
+
Statistic,
|
|
16
|
+
} from "./models_0";
|
|
17
|
+
export interface StartUploadJobResponse {}
|
|
18
|
+
export interface StopUploadJobRequest {
|
|
19
|
+
DomainName: string | undefined;
|
|
20
|
+
JobId: string | undefined;
|
|
21
|
+
}
|
|
22
|
+
export interface StopUploadJobResponse {}
|
|
23
|
+
export interface TagResourceRequest {
|
|
24
|
+
resourceArn: string | undefined;
|
|
25
|
+
tags: Record<string, string> | undefined;
|
|
26
|
+
}
|
|
27
|
+
export interface TagResourceResponse {}
|
|
28
|
+
export interface UntagResourceRequest {
|
|
29
|
+
resourceArn: string | undefined;
|
|
30
|
+
tagKeys: string[] | undefined;
|
|
31
|
+
}
|
|
32
|
+
export interface UntagResourceResponse {}
|
|
33
|
+
export interface UpdateCalculatedAttributeDefinitionRequest {
|
|
34
|
+
DomainName: string | undefined;
|
|
35
|
+
CalculatedAttributeName: string | undefined;
|
|
36
|
+
DisplayName?: string | undefined;
|
|
37
|
+
Description?: string | undefined;
|
|
38
|
+
Conditions?: Conditions | undefined;
|
|
39
|
+
}
|
|
40
|
+
export interface UpdateCalculatedAttributeDefinitionResponse {
|
|
41
|
+
CalculatedAttributeName?: string | undefined;
|
|
42
|
+
DisplayName?: string | undefined;
|
|
43
|
+
Description?: string | undefined;
|
|
44
|
+
CreatedAt?: Date | undefined;
|
|
45
|
+
LastUpdatedAt?: Date | undefined;
|
|
46
|
+
Statistic?: Statistic | undefined;
|
|
47
|
+
Conditions?: Conditions | undefined;
|
|
48
|
+
AttributeDetails?: AttributeDetails | undefined;
|
|
49
|
+
UseHistoricalData?: boolean | undefined;
|
|
50
|
+
Status?: ReadinessStatus | undefined;
|
|
51
|
+
Readiness?: Readiness | undefined;
|
|
52
|
+
Tags?: Record<string, string> | undefined;
|
|
53
|
+
}
|
|
54
|
+
export interface UpdateDomainRequest {
|
|
55
|
+
DomainName: string | undefined;
|
|
56
|
+
DefaultExpirationDays?: number | undefined;
|
|
57
|
+
DefaultEncryptionKey?: string | undefined;
|
|
58
|
+
DeadLetterQueueUrl?: string | undefined;
|
|
59
|
+
Matching?: MatchingRequest | undefined;
|
|
60
|
+
RuleBasedMatching?: RuleBasedMatchingRequest | undefined;
|
|
61
|
+
Tags?: Record<string, string> | undefined;
|
|
62
|
+
}
|
|
63
|
+
export interface UpdateDomainResponse {
|
|
64
|
+
DomainName: string | undefined;
|
|
65
|
+
DefaultExpirationDays?: number | undefined;
|
|
66
|
+
DefaultEncryptionKey?: string | undefined;
|
|
67
|
+
DeadLetterQueueUrl?: string | undefined;
|
|
68
|
+
Matching?: MatchingResponse | undefined;
|
|
69
|
+
RuleBasedMatching?: RuleBasedMatchingResponse | undefined;
|
|
70
|
+
CreatedAt: Date | undefined;
|
|
71
|
+
LastUpdatedAt: Date | undefined;
|
|
72
|
+
Tags?: Record<string, string> | undefined;
|
|
73
|
+
}
|
|
74
|
+
export interface UpdateDomainLayoutRequest {
|
|
75
|
+
DomainName: string | undefined;
|
|
76
|
+
LayoutDefinitionName: string | undefined;
|
|
77
|
+
Description?: string | undefined;
|
|
78
|
+
DisplayName?: string | undefined;
|
|
79
|
+
IsDefault?: boolean | undefined;
|
|
80
|
+
LayoutType?: LayoutType | undefined;
|
|
81
|
+
Layout?: string | undefined;
|
|
82
|
+
}
|
|
83
|
+
export interface UpdateDomainLayoutResponse {
|
|
84
|
+
LayoutDefinitionName?: string | undefined;
|
|
85
|
+
Description?: string | undefined;
|
|
86
|
+
DisplayName?: string | undefined;
|
|
87
|
+
IsDefault?: boolean | undefined;
|
|
88
|
+
LayoutType?: LayoutType | undefined;
|
|
89
|
+
Layout?: string | undefined;
|
|
90
|
+
Version?: string | undefined;
|
|
91
|
+
CreatedAt?: Date | undefined;
|
|
92
|
+
LastUpdatedAt?: Date | undefined;
|
|
93
|
+
Tags?: Record<string, string> | undefined;
|
|
94
|
+
}
|
|
95
|
+
export interface UpdateEventTriggerRequest {
|
|
96
|
+
DomainName: string | undefined;
|
|
97
|
+
EventTriggerName: string | undefined;
|
|
98
|
+
ObjectTypeName?: string | undefined;
|
|
99
|
+
Description?: string | undefined;
|
|
100
|
+
EventTriggerConditions?: EventTriggerCondition[] | undefined;
|
|
101
|
+
SegmentFilter?: string | undefined;
|
|
102
|
+
EventTriggerLimits?: EventTriggerLimits | undefined;
|
|
103
|
+
}
|
|
104
|
+
export interface UpdateEventTriggerResponse {
|
|
105
|
+
EventTriggerName?: string | undefined;
|
|
106
|
+
ObjectTypeName?: string | undefined;
|
|
107
|
+
Description?: string | undefined;
|
|
108
|
+
EventTriggerConditions?: EventTriggerCondition[] | undefined;
|
|
109
|
+
SegmentFilter?: string | undefined;
|
|
110
|
+
EventTriggerLimits?: EventTriggerLimits | undefined;
|
|
111
|
+
CreatedAt?: Date | undefined;
|
|
112
|
+
LastUpdatedAt?: Date | undefined;
|
|
113
|
+
Tags?: Record<string, string> | undefined;
|
|
114
|
+
}
|
|
115
|
+
export interface UpdateAddress {
|
|
116
|
+
Address1?: string | undefined;
|
|
117
|
+
Address2?: string | undefined;
|
|
118
|
+
Address3?: string | undefined;
|
|
119
|
+
Address4?: string | undefined;
|
|
120
|
+
City?: string | undefined;
|
|
121
|
+
County?: string | undefined;
|
|
122
|
+
State?: string | undefined;
|
|
123
|
+
Province?: string | undefined;
|
|
124
|
+
Country?: string | undefined;
|
|
125
|
+
PostalCode?: string | undefined;
|
|
126
|
+
}
|
|
2
127
|
export interface UpdateProfileRequest {
|
|
3
128
|
DomainName: string | undefined;
|
|
4
129
|
ProfileId: string | undefined;
|
|
@@ -29,6 +154,27 @@ export interface UpdateProfileRequest {
|
|
|
29
154
|
export interface UpdateProfileResponse {
|
|
30
155
|
ProfileId: string | undefined;
|
|
31
156
|
}
|
|
157
|
+
export declare const UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog: (
|
|
158
|
+
obj: UpdateCalculatedAttributeDefinitionRequest
|
|
159
|
+
) => any;
|
|
160
|
+
export declare const UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog: (
|
|
161
|
+
obj: UpdateCalculatedAttributeDefinitionResponse
|
|
162
|
+
) => any;
|
|
163
|
+
export declare const UpdateDomainLayoutRequestFilterSensitiveLog: (
|
|
164
|
+
obj: UpdateDomainLayoutRequest
|
|
165
|
+
) => any;
|
|
166
|
+
export declare const UpdateDomainLayoutResponseFilterSensitiveLog: (
|
|
167
|
+
obj: UpdateDomainLayoutResponse
|
|
168
|
+
) => any;
|
|
169
|
+
export declare const UpdateEventTriggerRequestFilterSensitiveLog: (
|
|
170
|
+
obj: UpdateEventTriggerRequest
|
|
171
|
+
) => any;
|
|
172
|
+
export declare const UpdateEventTriggerResponseFilterSensitiveLog: (
|
|
173
|
+
obj: UpdateEventTriggerResponse
|
|
174
|
+
) => any;
|
|
175
|
+
export declare const UpdateAddressFilterSensitiveLog: (
|
|
176
|
+
obj: UpdateAddress
|
|
177
|
+
) => any;
|
|
32
178
|
export declare const UpdateProfileRequestFilterSensitiveLog: (
|
|
33
179
|
obj: UpdateProfileRequest
|
|
34
180
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListUploadJobsCommandInput,
|
|
4
|
+
ListUploadJobsCommandOutput,
|
|
5
|
+
} from "../commands/ListUploadJobsCommand";
|
|
6
|
+
import { CustomerProfilesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListUploadJobs: (
|
|
8
|
+
config: CustomerProfilesPaginationConfiguration,
|
|
9
|
+
input: ListUploadJobsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListUploadJobsCommandOutput>;
|