@aws-sdk/client-customer-profiles 3.826.0 → 3.828.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 +40 -0
- package/dist-cjs/index.js +439 -33
- package/dist-es/CustomerProfiles.js +10 -0
- package/dist-es/commands/CreateDomainLayoutCommand.js +23 -0
- package/dist-es/commands/DeleteDomainLayoutCommand.js +22 -0
- package/dist-es/commands/GetDomainLayoutCommand.js +23 -0
- package/dist-es/commands/ListDomainLayoutsCommand.js +23 -0
- package/dist-es/commands/UpdateDomainLayoutCommand.js +23 -0
- package/dist-es/commands/UpdateProfileCommand.js +1 -1
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +51 -26
- package/dist-es/models/models_1.js +27 -0
- package/dist-es/pagination/ListDomainLayoutsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +240 -2
- package/dist-types/CustomerProfiles.d.ts +35 -0
- package/dist-types/CustomerProfilesClient.d.ts +7 -2
- package/dist-types/commands/BatchGetCalculatedAttributeForProfileCommand.d.ts +1 -0
- package/dist-types/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +23 -4
- package/dist-types/commands/CreateDomainLayoutCommand.d.ts +108 -0
- package/dist-types/commands/DeleteDomainLayoutCommand.d.ts +89 -0
- package/dist-types/commands/DetectProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetCalculatedAttributeDefinitionCommand.d.ts +14 -2
- package/dist-types/commands/GetCalculatedAttributeForProfileCommand.d.ts +1 -0
- package/dist-types/commands/GetDomainLayoutCommand.d.ts +100 -0
- package/dist-types/commands/GetProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetProfileObjectTypeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/ListCalculatedAttributeDefinitionsCommand.d.ts +2 -0
- package/dist-types/commands/ListCalculatedAttributesForProfileCommand.d.ts +1 -0
- package/dist-types/commands/ListDomainLayoutsCommand.d.ts +104 -0
- package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +22 -4
- package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +105 -0
- package/dist-types/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +631 -173
- package/dist-types/models/models_1.d.ts +152 -0
- package/dist-types/pagination/ListDomainLayoutsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +85 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateDomainLayoutCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDomainLayoutCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDomainLayoutCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDomainLayoutsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +153 -35
- package/dist-types/ts3.4/models/models_1.d.ts +34 -0
- package/dist-types/ts3.4/pagination/ListDomainLayoutsPaginator.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 +60 -0
- package/package.json +5 -5
|
@@ -4,6 +4,7 @@ import { BatchGetCalculatedAttributeForProfileCommand, } from "./commands/BatchG
|
|
|
4
4
|
import { BatchGetProfileCommand, } from "./commands/BatchGetProfileCommand";
|
|
5
5
|
import { CreateCalculatedAttributeDefinitionCommand, } from "./commands/CreateCalculatedAttributeDefinitionCommand";
|
|
6
6
|
import { CreateDomainCommand, } from "./commands/CreateDomainCommand";
|
|
7
|
+
import { CreateDomainLayoutCommand, } from "./commands/CreateDomainLayoutCommand";
|
|
7
8
|
import { CreateEventStreamCommand, } from "./commands/CreateEventStreamCommand";
|
|
8
9
|
import { CreateEventTriggerCommand, } from "./commands/CreateEventTriggerCommand";
|
|
9
10
|
import { CreateIntegrationWorkflowCommand, } from "./commands/CreateIntegrationWorkflowCommand";
|
|
@@ -13,6 +14,7 @@ import { CreateSegmentEstimateCommand, } from "./commands/CreateSegmentEstimateC
|
|
|
13
14
|
import { CreateSegmentSnapshotCommand, } from "./commands/CreateSegmentSnapshotCommand";
|
|
14
15
|
import { DeleteCalculatedAttributeDefinitionCommand, } from "./commands/DeleteCalculatedAttributeDefinitionCommand";
|
|
15
16
|
import { DeleteDomainCommand, } from "./commands/DeleteDomainCommand";
|
|
17
|
+
import { DeleteDomainLayoutCommand, } from "./commands/DeleteDomainLayoutCommand";
|
|
16
18
|
import { DeleteEventStreamCommand, } from "./commands/DeleteEventStreamCommand";
|
|
17
19
|
import { DeleteEventTriggerCommand, } from "./commands/DeleteEventTriggerCommand";
|
|
18
20
|
import { DeleteIntegrationCommand, } from "./commands/DeleteIntegrationCommand";
|
|
@@ -27,6 +29,7 @@ import { GetAutoMergingPreviewCommand, } from "./commands/GetAutoMergingPreviewC
|
|
|
27
29
|
import { GetCalculatedAttributeDefinitionCommand, } from "./commands/GetCalculatedAttributeDefinitionCommand";
|
|
28
30
|
import { GetCalculatedAttributeForProfileCommand, } from "./commands/GetCalculatedAttributeForProfileCommand";
|
|
29
31
|
import { GetDomainCommand } from "./commands/GetDomainCommand";
|
|
32
|
+
import { GetDomainLayoutCommand, } from "./commands/GetDomainLayoutCommand";
|
|
30
33
|
import { GetEventStreamCommand, } from "./commands/GetEventStreamCommand";
|
|
31
34
|
import { GetEventTriggerCommand, } from "./commands/GetEventTriggerCommand";
|
|
32
35
|
import { GetIdentityResolutionJobCommand, } from "./commands/GetIdentityResolutionJobCommand";
|
|
@@ -44,6 +47,7 @@ import { GetWorkflowStepsCommand, } from "./commands/GetWorkflowStepsCommand";
|
|
|
44
47
|
import { ListAccountIntegrationsCommand, } from "./commands/ListAccountIntegrationsCommand";
|
|
45
48
|
import { ListCalculatedAttributeDefinitionsCommand, } from "./commands/ListCalculatedAttributeDefinitionsCommand";
|
|
46
49
|
import { ListCalculatedAttributesForProfileCommand, } from "./commands/ListCalculatedAttributesForProfileCommand";
|
|
50
|
+
import { ListDomainLayoutsCommand, } from "./commands/ListDomainLayoutsCommand";
|
|
47
51
|
import { ListDomainsCommand } from "./commands/ListDomainsCommand";
|
|
48
52
|
import { ListEventStreamsCommand, } from "./commands/ListEventStreamsCommand";
|
|
49
53
|
import { ListEventTriggersCommand, } from "./commands/ListEventTriggersCommand";
|
|
@@ -67,6 +71,7 @@ import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
|
67
71
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
68
72
|
import { UpdateCalculatedAttributeDefinitionCommand, } from "./commands/UpdateCalculatedAttributeDefinitionCommand";
|
|
69
73
|
import { UpdateDomainCommand, } from "./commands/UpdateDomainCommand";
|
|
74
|
+
import { UpdateDomainLayoutCommand, } from "./commands/UpdateDomainLayoutCommand";
|
|
70
75
|
import { UpdateEventTriggerCommand, } from "./commands/UpdateEventTriggerCommand";
|
|
71
76
|
import { UpdateProfileCommand, } from "./commands/UpdateProfileCommand";
|
|
72
77
|
import { CustomerProfilesClient } from "./CustomerProfilesClient";
|
|
@@ -76,6 +81,7 @@ const commands = {
|
|
|
76
81
|
BatchGetProfileCommand,
|
|
77
82
|
CreateCalculatedAttributeDefinitionCommand,
|
|
78
83
|
CreateDomainCommand,
|
|
84
|
+
CreateDomainLayoutCommand,
|
|
79
85
|
CreateEventStreamCommand,
|
|
80
86
|
CreateEventTriggerCommand,
|
|
81
87
|
CreateIntegrationWorkflowCommand,
|
|
@@ -85,6 +91,7 @@ const commands = {
|
|
|
85
91
|
CreateSegmentSnapshotCommand,
|
|
86
92
|
DeleteCalculatedAttributeDefinitionCommand,
|
|
87
93
|
DeleteDomainCommand,
|
|
94
|
+
DeleteDomainLayoutCommand,
|
|
88
95
|
DeleteEventStreamCommand,
|
|
89
96
|
DeleteEventTriggerCommand,
|
|
90
97
|
DeleteIntegrationCommand,
|
|
@@ -99,6 +106,7 @@ const commands = {
|
|
|
99
106
|
GetCalculatedAttributeDefinitionCommand,
|
|
100
107
|
GetCalculatedAttributeForProfileCommand,
|
|
101
108
|
GetDomainCommand,
|
|
109
|
+
GetDomainLayoutCommand,
|
|
102
110
|
GetEventStreamCommand,
|
|
103
111
|
GetEventTriggerCommand,
|
|
104
112
|
GetIdentityResolutionJobCommand,
|
|
@@ -116,6 +124,7 @@ const commands = {
|
|
|
116
124
|
ListAccountIntegrationsCommand,
|
|
117
125
|
ListCalculatedAttributeDefinitionsCommand,
|
|
118
126
|
ListCalculatedAttributesForProfileCommand,
|
|
127
|
+
ListDomainLayoutsCommand,
|
|
119
128
|
ListDomainsCommand,
|
|
120
129
|
ListEventStreamsCommand,
|
|
121
130
|
ListEventTriggersCommand,
|
|
@@ -139,6 +148,7 @@ const commands = {
|
|
|
139
148
|
UntagResourceCommand,
|
|
140
149
|
UpdateCalculatedAttributeDefinitionCommand,
|
|
141
150
|
UpdateDomainCommand,
|
|
151
|
+
UpdateDomainLayoutCommand,
|
|
142
152
|
UpdateEventTriggerCommand,
|
|
143
153
|
UpdateProfileCommand,
|
|
144
154
|
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { CreateDomainLayoutRequestFilterSensitiveLog, CreateDomainLayoutResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_CreateDomainLayoutCommand, se_CreateDomainLayoutCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class CreateDomainLayoutCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("CustomerProfiles_20200815", "CreateDomainLayout", {})
|
|
18
|
+
.n("CustomerProfilesClient", "CreateDomainLayoutCommand")
|
|
19
|
+
.f(CreateDomainLayoutRequestFilterSensitiveLog, CreateDomainLayoutResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_CreateDomainLayoutCommand)
|
|
21
|
+
.de(de_CreateDomainLayoutCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DeleteDomainLayoutCommand, se_DeleteDomainLayoutCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteDomainLayoutCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("CustomerProfiles_20200815", "DeleteDomainLayout", {})
|
|
17
|
+
.n("CustomerProfilesClient", "DeleteDomainLayoutCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DeleteDomainLayoutCommand)
|
|
20
|
+
.de(de_DeleteDomainLayoutCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { GetDomainLayoutResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_GetDomainLayoutCommand, se_GetDomainLayoutCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class GetDomainLayoutCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("CustomerProfiles_20200815", "GetDomainLayout", {})
|
|
18
|
+
.n("CustomerProfilesClient", "GetDomainLayoutCommand")
|
|
19
|
+
.f(void 0, GetDomainLayoutResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_GetDomainLayoutCommand)
|
|
21
|
+
.de(de_GetDomainLayoutCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListDomainLayoutsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_ListDomainLayoutsCommand, se_ListDomainLayoutsCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class ListDomainLayoutsCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("CustomerProfiles_20200815", "ListDomainLayouts", {})
|
|
18
|
+
.n("CustomerProfilesClient", "ListDomainLayoutsCommand")
|
|
19
|
+
.f(void 0, ListDomainLayoutsResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_ListDomainLayoutsCommand)
|
|
21
|
+
.de(de_ListDomainLayoutsCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { UpdateDomainLayoutRequestFilterSensitiveLog, UpdateDomainLayoutResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_UpdateDomainLayoutCommand, se_UpdateDomainLayoutCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class UpdateDomainLayoutCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("CustomerProfiles_20200815", "UpdateDomainLayout", {})
|
|
18
|
+
.n("CustomerProfilesClient", "UpdateDomainLayoutCommand")
|
|
19
|
+
.f(UpdateDomainLayoutRequestFilterSensitiveLog, UpdateDomainLayoutResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_UpdateDomainLayoutCommand)
|
|
21
|
+
.de(de_UpdateDomainLayoutCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { UpdateProfileRequestFilterSensitiveLog, } from "../models/
|
|
5
|
+
import { UpdateProfileRequestFilterSensitiveLog, } from "../models/models_1";
|
|
6
6
|
import { de_UpdateProfileCommand, se_UpdateProfileCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdateProfileCommand extends $Command
|
|
@@ -3,6 +3,7 @@ export * from "./BatchGetCalculatedAttributeForProfileCommand";
|
|
|
3
3
|
export * from "./BatchGetProfileCommand";
|
|
4
4
|
export * from "./CreateCalculatedAttributeDefinitionCommand";
|
|
5
5
|
export * from "./CreateDomainCommand";
|
|
6
|
+
export * from "./CreateDomainLayoutCommand";
|
|
6
7
|
export * from "./CreateEventStreamCommand";
|
|
7
8
|
export * from "./CreateEventTriggerCommand";
|
|
8
9
|
export * from "./CreateIntegrationWorkflowCommand";
|
|
@@ -12,6 +13,7 @@ export * from "./CreateSegmentEstimateCommand";
|
|
|
12
13
|
export * from "./CreateSegmentSnapshotCommand";
|
|
13
14
|
export * from "./DeleteCalculatedAttributeDefinitionCommand";
|
|
14
15
|
export * from "./DeleteDomainCommand";
|
|
16
|
+
export * from "./DeleteDomainLayoutCommand";
|
|
15
17
|
export * from "./DeleteEventStreamCommand";
|
|
16
18
|
export * from "./DeleteEventTriggerCommand";
|
|
17
19
|
export * from "./DeleteIntegrationCommand";
|
|
@@ -26,6 +28,7 @@ export * from "./GetAutoMergingPreviewCommand";
|
|
|
26
28
|
export * from "./GetCalculatedAttributeDefinitionCommand";
|
|
27
29
|
export * from "./GetCalculatedAttributeForProfileCommand";
|
|
28
30
|
export * from "./GetDomainCommand";
|
|
31
|
+
export * from "./GetDomainLayoutCommand";
|
|
29
32
|
export * from "./GetEventStreamCommand";
|
|
30
33
|
export * from "./GetEventTriggerCommand";
|
|
31
34
|
export * from "./GetIdentityResolutionJobCommand";
|
|
@@ -43,6 +46,7 @@ export * from "./GetWorkflowStepsCommand";
|
|
|
43
46
|
export * from "./ListAccountIntegrationsCommand";
|
|
44
47
|
export * from "./ListCalculatedAttributeDefinitionsCommand";
|
|
45
48
|
export * from "./ListCalculatedAttributesForProfileCommand";
|
|
49
|
+
export * from "./ListDomainLayoutsCommand";
|
|
46
50
|
export * from "./ListDomainsCommand";
|
|
47
51
|
export * from "./ListEventStreamsCommand";
|
|
48
52
|
export * from "./ListEventTriggersCommand";
|
|
@@ -66,5 +70,6 @@ export * from "./TagResourceCommand";
|
|
|
66
70
|
export * from "./UntagResourceCommand";
|
|
67
71
|
export * from "./UpdateCalculatedAttributeDefinitionCommand";
|
|
68
72
|
export * from "./UpdateDomainCommand";
|
|
73
|
+
export * from "./UpdateDomainLayoutCommand";
|
|
69
74
|
export * from "./UpdateEventTriggerCommand";
|
|
70
75
|
export * from "./UpdateProfileCommand";
|
package/dist-es/models/index.js
CHANGED
|
@@ -284,6 +284,12 @@ export const PartyType = {
|
|
|
284
284
|
INDIVIDUAL: "INDIVIDUAL",
|
|
285
285
|
OTHER: "OTHER",
|
|
286
286
|
};
|
|
287
|
+
export const ReadinessStatus = {
|
|
288
|
+
COMPLETED: "COMPLETED",
|
|
289
|
+
FAILED: "FAILED",
|
|
290
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
291
|
+
PREPARING: "PREPARING",
|
|
292
|
+
};
|
|
287
293
|
export const ComparisonOperator = {
|
|
288
294
|
AFTER: "AFTER",
|
|
289
295
|
BEFORE: "BEFORE",
|
|
@@ -344,6 +350,9 @@ export const RuleBasedMatchingStatus = {
|
|
|
344
350
|
IN_PROGRESS: "IN_PROGRESS",
|
|
345
351
|
PENDING: "PENDING",
|
|
346
352
|
};
|
|
353
|
+
export const LayoutType = {
|
|
354
|
+
PROFILE_EXPLORER: "PROFILE_EXPLORER",
|
|
355
|
+
};
|
|
347
356
|
export const EventTriggerLogicalOperator = {
|
|
348
357
|
ALL: "ALL",
|
|
349
358
|
ANY: "ANY",
|
|
@@ -393,10 +402,19 @@ export const FieldContentType = {
|
|
|
393
402
|
STRING: "STRING",
|
|
394
403
|
};
|
|
395
404
|
export const StandardIdentifier = {
|
|
405
|
+
AIR_BOOKING: "AIR_BOOKING",
|
|
406
|
+
AIR_PREFERENCE: "AIR_PREFERENCE",
|
|
407
|
+
AIR_SEGMENT: "AIR_SEGMENT",
|
|
396
408
|
ASSET: "ASSET",
|
|
397
409
|
CASE: "CASE",
|
|
398
410
|
COMMUNICATION_RECORD: "COMMUNICATION_RECORD",
|
|
411
|
+
HOTEL_PREFERENCE: "HOTEL_PREFERENCE",
|
|
412
|
+
HOTEL_RESERVATION: "HOTEL_RESERVATION",
|
|
413
|
+
HOTEL_STAY_REVENUE: "HOTEL_STAY_REVENUE",
|
|
399
414
|
LOOKUP_ONLY: "LOOKUP_ONLY",
|
|
415
|
+
LOYALTY: "LOYALTY",
|
|
416
|
+
LOYALTY_PROMOTION: "LOYALTY_PROMOTION",
|
|
417
|
+
LOYALTY_TRANSACTION: "LOYALTY_TRANSACTION",
|
|
400
418
|
NEW_ONLY: "NEW_ONLY",
|
|
401
419
|
ORDER: "ORDER",
|
|
402
420
|
PROFILE: "PROFILE",
|
|
@@ -521,6 +539,16 @@ export const CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog = (ob
|
|
|
521
539
|
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
|
|
522
540
|
...(obj.Statistic && { Statistic: SENSITIVE_STRING }),
|
|
523
541
|
});
|
|
542
|
+
export const CreateDomainLayoutRequestFilterSensitiveLog = (obj) => ({
|
|
543
|
+
...obj,
|
|
544
|
+
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
545
|
+
...(obj.Layout && { Layout: SENSITIVE_STRING }),
|
|
546
|
+
});
|
|
547
|
+
export const CreateDomainLayoutResponseFilterSensitiveLog = (obj) => ({
|
|
548
|
+
...obj,
|
|
549
|
+
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
550
|
+
...(obj.Layout && { Layout: SENSITIVE_STRING }),
|
|
551
|
+
});
|
|
524
552
|
export const CreateEventTriggerRequestFilterSensitiveLog = (obj) => ({
|
|
525
553
|
...obj,
|
|
526
554
|
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
@@ -625,6 +653,11 @@ export const GetCalculatedAttributeDefinitionResponseFilterSensitiveLog = (obj)
|
|
|
625
653
|
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
|
|
626
654
|
...(obj.AttributeDetails && { AttributeDetails: SENSITIVE_STRING }),
|
|
627
655
|
});
|
|
656
|
+
export const GetDomainLayoutResponseFilterSensitiveLog = (obj) => ({
|
|
657
|
+
...obj,
|
|
658
|
+
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
659
|
+
...(obj.Layout && { Layout: SENSITIVE_STRING }),
|
|
660
|
+
});
|
|
628
661
|
export const GetEventTriggerResponseFilterSensitiveLog = (obj) => ({
|
|
629
662
|
...obj,
|
|
630
663
|
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
@@ -658,6 +691,14 @@ export const ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog = (obj
|
|
|
658
691
|
...obj,
|
|
659
692
|
...(obj.Items && { Items: SENSITIVE_STRING }),
|
|
660
693
|
});
|
|
694
|
+
export const LayoutItemFilterSensitiveLog = (obj) => ({
|
|
695
|
+
...obj,
|
|
696
|
+
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
697
|
+
});
|
|
698
|
+
export const ListDomainLayoutsResponseFilterSensitiveLog = (obj) => ({
|
|
699
|
+
...obj,
|
|
700
|
+
...(obj.Items && { Items: obj.Items.map((item) => LayoutItemFilterSensitiveLog(item)) }),
|
|
701
|
+
});
|
|
661
702
|
export const ListEventTriggersResponseFilterSensitiveLog = (obj) => ({
|
|
662
703
|
...obj,
|
|
663
704
|
...(obj.Items && { Items: SENSITIVE_STRING }),
|
|
@@ -718,6 +759,16 @@ export const UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog = (ob
|
|
|
718
759
|
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
|
|
719
760
|
...(obj.AttributeDetails && { AttributeDetails: SENSITIVE_STRING }),
|
|
720
761
|
});
|
|
762
|
+
export const UpdateDomainLayoutRequestFilterSensitiveLog = (obj) => ({
|
|
763
|
+
...obj,
|
|
764
|
+
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
765
|
+
...(obj.Layout && { Layout: SENSITIVE_STRING }),
|
|
766
|
+
});
|
|
767
|
+
export const UpdateDomainLayoutResponseFilterSensitiveLog = (obj) => ({
|
|
768
|
+
...obj,
|
|
769
|
+
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
770
|
+
...(obj.Layout && { Layout: SENSITIVE_STRING }),
|
|
771
|
+
});
|
|
721
772
|
export const UpdateEventTriggerRequestFilterSensitiveLog = (obj) => ({
|
|
722
773
|
...obj,
|
|
723
774
|
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
@@ -731,29 +782,3 @@ export const UpdateEventTriggerResponseFilterSensitiveLog = (obj) => ({
|
|
|
731
782
|
export const UpdateAddressFilterSensitiveLog = (obj) => ({
|
|
732
783
|
...obj,
|
|
733
784
|
});
|
|
734
|
-
export const UpdateProfileRequestFilterSensitiveLog = (obj) => ({
|
|
735
|
-
...obj,
|
|
736
|
-
...(obj.AdditionalInformation && { AdditionalInformation: SENSITIVE_STRING }),
|
|
737
|
-
...(obj.AccountNumber && { AccountNumber: SENSITIVE_STRING }),
|
|
738
|
-
...(obj.PartyType && { PartyType: SENSITIVE_STRING }),
|
|
739
|
-
...(obj.BusinessName && { BusinessName: SENSITIVE_STRING }),
|
|
740
|
-
...(obj.FirstName && { FirstName: SENSITIVE_STRING }),
|
|
741
|
-
...(obj.MiddleName && { MiddleName: SENSITIVE_STRING }),
|
|
742
|
-
...(obj.LastName && { LastName: SENSITIVE_STRING }),
|
|
743
|
-
...(obj.BirthDate && { BirthDate: SENSITIVE_STRING }),
|
|
744
|
-
...(obj.Gender && { Gender: SENSITIVE_STRING }),
|
|
745
|
-
...(obj.PhoneNumber && { PhoneNumber: SENSITIVE_STRING }),
|
|
746
|
-
...(obj.MobilePhoneNumber && { MobilePhoneNumber: SENSITIVE_STRING }),
|
|
747
|
-
...(obj.HomePhoneNumber && { HomePhoneNumber: SENSITIVE_STRING }),
|
|
748
|
-
...(obj.BusinessPhoneNumber && { BusinessPhoneNumber: SENSITIVE_STRING }),
|
|
749
|
-
...(obj.EmailAddress && { EmailAddress: SENSITIVE_STRING }),
|
|
750
|
-
...(obj.PersonalEmailAddress && { PersonalEmailAddress: SENSITIVE_STRING }),
|
|
751
|
-
...(obj.BusinessEmailAddress && { BusinessEmailAddress: SENSITIVE_STRING }),
|
|
752
|
-
...(obj.Address && { Address: SENSITIVE_STRING }),
|
|
753
|
-
...(obj.ShippingAddress && { ShippingAddress: SENSITIVE_STRING }),
|
|
754
|
-
...(obj.MailingAddress && { MailingAddress: SENSITIVE_STRING }),
|
|
755
|
-
...(obj.BillingAddress && { BillingAddress: SENSITIVE_STRING }),
|
|
756
|
-
...(obj.Attributes && { Attributes: SENSITIVE_STRING }),
|
|
757
|
-
...(obj.PartyTypeString && { PartyTypeString: SENSITIVE_STRING }),
|
|
758
|
-
...(obj.GenderString && { GenderString: SENSITIVE_STRING }),
|
|
759
|
-
});
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
|
+
export const UpdateProfileRequestFilterSensitiveLog = (obj) => ({
|
|
3
|
+
...obj,
|
|
4
|
+
...(obj.AdditionalInformation && { AdditionalInformation: SENSITIVE_STRING }),
|
|
5
|
+
...(obj.AccountNumber && { AccountNumber: SENSITIVE_STRING }),
|
|
6
|
+
...(obj.PartyType && { PartyType: SENSITIVE_STRING }),
|
|
7
|
+
...(obj.BusinessName && { BusinessName: SENSITIVE_STRING }),
|
|
8
|
+
...(obj.FirstName && { FirstName: SENSITIVE_STRING }),
|
|
9
|
+
...(obj.MiddleName && { MiddleName: SENSITIVE_STRING }),
|
|
10
|
+
...(obj.LastName && { LastName: SENSITIVE_STRING }),
|
|
11
|
+
...(obj.BirthDate && { BirthDate: SENSITIVE_STRING }),
|
|
12
|
+
...(obj.Gender && { Gender: SENSITIVE_STRING }),
|
|
13
|
+
...(obj.PhoneNumber && { PhoneNumber: SENSITIVE_STRING }),
|
|
14
|
+
...(obj.MobilePhoneNumber && { MobilePhoneNumber: SENSITIVE_STRING }),
|
|
15
|
+
...(obj.HomePhoneNumber && { HomePhoneNumber: SENSITIVE_STRING }),
|
|
16
|
+
...(obj.BusinessPhoneNumber && { BusinessPhoneNumber: SENSITIVE_STRING }),
|
|
17
|
+
...(obj.EmailAddress && { EmailAddress: SENSITIVE_STRING }),
|
|
18
|
+
...(obj.PersonalEmailAddress && { PersonalEmailAddress: SENSITIVE_STRING }),
|
|
19
|
+
...(obj.BusinessEmailAddress && { BusinessEmailAddress: SENSITIVE_STRING }),
|
|
20
|
+
...(obj.Address && { Address: SENSITIVE_STRING }),
|
|
21
|
+
...(obj.ShippingAddress && { ShippingAddress: SENSITIVE_STRING }),
|
|
22
|
+
...(obj.MailingAddress && { MailingAddress: SENSITIVE_STRING }),
|
|
23
|
+
...(obj.BillingAddress && { BillingAddress: SENSITIVE_STRING }),
|
|
24
|
+
...(obj.Attributes && { Attributes: SENSITIVE_STRING }),
|
|
25
|
+
...(obj.PartyTypeString && { PartyTypeString: SENSITIVE_STRING }),
|
|
26
|
+
...(obj.GenderString && { GenderString: SENSITIVE_STRING }),
|
|
27
|
+
});
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListDomainLayoutsCommand, } from "../commands/ListDomainLayoutsCommand";
|
|
3
|
+
import { CustomerProfilesClient } from "../CustomerProfilesClient";
|
|
4
|
+
export const paginateListDomainLayouts = createPaginator(CustomerProfilesClient, ListDomainLayoutsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./GetSimilarProfilesPaginator";
|
|
2
2
|
export * from "./Interfaces";
|
|
3
|
+
export * from "./ListDomainLayoutsPaginator";
|
|
3
4
|
export * from "./ListEventStreamsPaginator";
|
|
4
5
|
export * from "./ListEventTriggersPaginator";
|
|
5
6
|
export * from "./ListObjectTypeAttributesPaginator";
|