@aws-sdk/client-customer-profiles 3.825.0 → 3.827.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 +11 -11
package/dist-cjs/index.js
CHANGED
|
@@ -43,6 +43,9 @@ __export(index_exports, {
|
|
|
43
43
|
CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog: () => CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog,
|
|
44
44
|
CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog: () => CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
45
45
|
CreateDomainCommand: () => CreateDomainCommand,
|
|
46
|
+
CreateDomainLayoutCommand: () => CreateDomainLayoutCommand,
|
|
47
|
+
CreateDomainLayoutRequestFilterSensitiveLog: () => CreateDomainLayoutRequestFilterSensitiveLog,
|
|
48
|
+
CreateDomainLayoutResponseFilterSensitiveLog: () => CreateDomainLayoutResponseFilterSensitiveLog,
|
|
46
49
|
CreateEventStreamCommand: () => CreateEventStreamCommand,
|
|
47
50
|
CreateEventTriggerCommand: () => CreateEventTriggerCommand,
|
|
48
51
|
CreateEventTriggerRequestFilterSensitiveLog: () => CreateEventTriggerRequestFilterSensitiveLog,
|
|
@@ -65,6 +68,7 @@ __export(index_exports, {
|
|
|
65
68
|
DateDimensionType: () => DateDimensionType,
|
|
66
69
|
DeleteCalculatedAttributeDefinitionCommand: () => DeleteCalculatedAttributeDefinitionCommand,
|
|
67
70
|
DeleteDomainCommand: () => DeleteDomainCommand,
|
|
71
|
+
DeleteDomainLayoutCommand: () => DeleteDomainLayoutCommand,
|
|
68
72
|
DeleteEventStreamCommand: () => DeleteEventStreamCommand,
|
|
69
73
|
DeleteEventTriggerCommand: () => DeleteEventTriggerCommand,
|
|
70
74
|
DeleteIntegrationCommand: () => DeleteIntegrationCommand,
|
|
@@ -93,6 +97,8 @@ __export(index_exports, {
|
|
|
93
97
|
GetCalculatedAttributeDefinitionResponseFilterSensitiveLog: () => GetCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
94
98
|
GetCalculatedAttributeForProfileCommand: () => GetCalculatedAttributeForProfileCommand,
|
|
95
99
|
GetDomainCommand: () => GetDomainCommand,
|
|
100
|
+
GetDomainLayoutCommand: () => GetDomainLayoutCommand,
|
|
101
|
+
GetDomainLayoutResponseFilterSensitiveLog: () => GetDomainLayoutResponseFilterSensitiveLog,
|
|
96
102
|
GetEventStreamCommand: () => GetEventStreamCommand,
|
|
97
103
|
GetEventTriggerCommand: () => GetEventTriggerCommand,
|
|
98
104
|
GetEventTriggerResponseFilterSensitiveLog: () => GetEventTriggerResponseFilterSensitiveLog,
|
|
@@ -119,11 +125,15 @@ __export(index_exports, {
|
|
|
119
125
|
IntegrationConfigFilterSensitiveLog: () => IntegrationConfigFilterSensitiveLog,
|
|
120
126
|
InternalServerException: () => InternalServerException,
|
|
121
127
|
JobScheduleDayOfTheWeek: () => JobScheduleDayOfTheWeek,
|
|
128
|
+
LayoutItemFilterSensitiveLog: () => LayoutItemFilterSensitiveLog,
|
|
129
|
+
LayoutType: () => LayoutType,
|
|
122
130
|
ListAccountIntegrationsCommand: () => ListAccountIntegrationsCommand,
|
|
123
131
|
ListCalculatedAttributeDefinitionItemFilterSensitiveLog: () => ListCalculatedAttributeDefinitionItemFilterSensitiveLog,
|
|
124
132
|
ListCalculatedAttributeDefinitionsCommand: () => ListCalculatedAttributeDefinitionsCommand,
|
|
125
133
|
ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog: () => ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog,
|
|
126
134
|
ListCalculatedAttributesForProfileCommand: () => ListCalculatedAttributesForProfileCommand,
|
|
135
|
+
ListDomainLayoutsCommand: () => ListDomainLayoutsCommand,
|
|
136
|
+
ListDomainLayoutsResponseFilterSensitiveLog: () => ListDomainLayoutsResponseFilterSensitiveLog,
|
|
127
137
|
ListDomainsCommand: () => ListDomainsCommand,
|
|
128
138
|
ListEventStreamsCommand: () => ListEventStreamsCommand,
|
|
129
139
|
ListEventTriggersCommand: () => ListEventTriggersCommand,
|
|
@@ -163,6 +173,7 @@ __export(index_exports, {
|
|
|
163
173
|
PutProfileObjectTypeResponseFilterSensitiveLog: () => PutProfileObjectTypeResponseFilterSensitiveLog,
|
|
164
174
|
QueryResult: () => QueryResult,
|
|
165
175
|
RangeUnit: () => RangeUnit,
|
|
176
|
+
ReadinessStatus: () => ReadinessStatus,
|
|
166
177
|
ResourceNotFoundException: () => ResourceNotFoundException,
|
|
167
178
|
RuleBasedMatchingStatus: () => RuleBasedMatchingStatus,
|
|
168
179
|
S3ConnectorOperator: () => S3ConnectorOperator,
|
|
@@ -191,6 +202,9 @@ __export(index_exports, {
|
|
|
191
202
|
UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog: () => UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog,
|
|
192
203
|
UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog: () => UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
193
204
|
UpdateDomainCommand: () => UpdateDomainCommand,
|
|
205
|
+
UpdateDomainLayoutCommand: () => UpdateDomainLayoutCommand,
|
|
206
|
+
UpdateDomainLayoutRequestFilterSensitiveLog: () => UpdateDomainLayoutRequestFilterSensitiveLog,
|
|
207
|
+
UpdateDomainLayoutResponseFilterSensitiveLog: () => UpdateDomainLayoutResponseFilterSensitiveLog,
|
|
194
208
|
UpdateEventTriggerCommand: () => UpdateEventTriggerCommand,
|
|
195
209
|
UpdateEventTriggerRequestFilterSensitiveLog: () => UpdateEventTriggerRequestFilterSensitiveLog,
|
|
196
210
|
UpdateEventTriggerResponseFilterSensitiveLog: () => UpdateEventTriggerResponseFilterSensitiveLog,
|
|
@@ -200,6 +214,7 @@ __export(index_exports, {
|
|
|
200
214
|
ZendeskConnectorOperator: () => ZendeskConnectorOperator,
|
|
201
215
|
__Client: () => import_smithy_client.Client,
|
|
202
216
|
paginateGetSimilarProfiles: () => paginateGetSimilarProfiles,
|
|
217
|
+
paginateListDomainLayouts: () => paginateListDomainLayouts,
|
|
203
218
|
paginateListEventStreams: () => paginateListEventStreams,
|
|
204
219
|
paginateListEventTriggers: () => paginateListEventTriggers,
|
|
205
220
|
paginateListObjectTypeAttributes: () => paginateListObjectTypeAttributes,
|
|
@@ -693,6 +708,12 @@ var PartyType = {
|
|
|
693
708
|
INDIVIDUAL: "INDIVIDUAL",
|
|
694
709
|
OTHER: "OTHER"
|
|
695
710
|
};
|
|
711
|
+
var ReadinessStatus = {
|
|
712
|
+
COMPLETED: "COMPLETED",
|
|
713
|
+
FAILED: "FAILED",
|
|
714
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
715
|
+
PREPARING: "PREPARING"
|
|
716
|
+
};
|
|
696
717
|
var ComparisonOperator = {
|
|
697
718
|
AFTER: "AFTER",
|
|
698
719
|
BEFORE: "BEFORE",
|
|
@@ -753,6 +774,9 @@ var RuleBasedMatchingStatus = {
|
|
|
753
774
|
IN_PROGRESS: "IN_PROGRESS",
|
|
754
775
|
PENDING: "PENDING"
|
|
755
776
|
};
|
|
777
|
+
var LayoutType = {
|
|
778
|
+
PROFILE_EXPLORER: "PROFILE_EXPLORER"
|
|
779
|
+
};
|
|
756
780
|
var EventTriggerLogicalOperator = {
|
|
757
781
|
ALL: "ALL",
|
|
758
782
|
ANY: "ANY",
|
|
@@ -800,10 +824,19 @@ var FieldContentType = {
|
|
|
800
824
|
STRING: "STRING"
|
|
801
825
|
};
|
|
802
826
|
var StandardIdentifier = {
|
|
827
|
+
AIR_BOOKING: "AIR_BOOKING",
|
|
828
|
+
AIR_PREFERENCE: "AIR_PREFERENCE",
|
|
829
|
+
AIR_SEGMENT: "AIR_SEGMENT",
|
|
803
830
|
ASSET: "ASSET",
|
|
804
831
|
CASE: "CASE",
|
|
805
832
|
COMMUNICATION_RECORD: "COMMUNICATION_RECORD",
|
|
833
|
+
HOTEL_PREFERENCE: "HOTEL_PREFERENCE",
|
|
834
|
+
HOTEL_RESERVATION: "HOTEL_RESERVATION",
|
|
835
|
+
HOTEL_STAY_REVENUE: "HOTEL_STAY_REVENUE",
|
|
806
836
|
LOOKUP_ONLY: "LOOKUP_ONLY",
|
|
837
|
+
LOYALTY: "LOYALTY",
|
|
838
|
+
LOYALTY_PROMOTION: "LOYALTY_PROMOTION",
|
|
839
|
+
LOYALTY_TRANSACTION: "LOYALTY_TRANSACTION",
|
|
807
840
|
NEW_ONLY: "NEW_ONLY",
|
|
808
841
|
ORDER: "ORDER",
|
|
809
842
|
PROFILE: "PROFILE",
|
|
@@ -928,6 +961,16 @@ var CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog = /* @__PURE__
|
|
|
928
961
|
...obj.Conditions && { Conditions: import_smithy_client.SENSITIVE_STRING },
|
|
929
962
|
...obj.Statistic && { Statistic: import_smithy_client.SENSITIVE_STRING }
|
|
930
963
|
}), "CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog");
|
|
964
|
+
var CreateDomainLayoutRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
965
|
+
...obj,
|
|
966
|
+
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING },
|
|
967
|
+
...obj.Layout && { Layout: import_smithy_client.SENSITIVE_STRING }
|
|
968
|
+
}), "CreateDomainLayoutRequestFilterSensitiveLog");
|
|
969
|
+
var CreateDomainLayoutResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
970
|
+
...obj,
|
|
971
|
+
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING },
|
|
972
|
+
...obj.Layout && { Layout: import_smithy_client.SENSITIVE_STRING }
|
|
973
|
+
}), "CreateDomainLayoutResponseFilterSensitiveLog");
|
|
931
974
|
var CreateEventTriggerRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
932
975
|
...obj,
|
|
933
976
|
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -1035,6 +1078,11 @@ var GetCalculatedAttributeDefinitionResponseFilterSensitiveLog = /* @__PURE__ */
|
|
|
1035
1078
|
...obj.Conditions && { Conditions: import_smithy_client.SENSITIVE_STRING },
|
|
1036
1079
|
...obj.AttributeDetails && { AttributeDetails: import_smithy_client.SENSITIVE_STRING }
|
|
1037
1080
|
}), "GetCalculatedAttributeDefinitionResponseFilterSensitiveLog");
|
|
1081
|
+
var GetDomainLayoutResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1082
|
+
...obj,
|
|
1083
|
+
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING },
|
|
1084
|
+
...obj.Layout && { Layout: import_smithy_client.SENSITIVE_STRING }
|
|
1085
|
+
}), "GetDomainLayoutResponseFilterSensitiveLog");
|
|
1038
1086
|
var GetEventTriggerResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1039
1087
|
...obj,
|
|
1040
1088
|
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -1068,6 +1116,14 @@ var ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog = /* @__PURE__
|
|
|
1068
1116
|
...obj,
|
|
1069
1117
|
...obj.Items && { Items: import_smithy_client.SENSITIVE_STRING }
|
|
1070
1118
|
}), "ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog");
|
|
1119
|
+
var LayoutItemFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1120
|
+
...obj,
|
|
1121
|
+
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING }
|
|
1122
|
+
}), "LayoutItemFilterSensitiveLog");
|
|
1123
|
+
var ListDomainLayoutsResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1124
|
+
...obj,
|
|
1125
|
+
...obj.Items && { Items: obj.Items.map((item) => LayoutItemFilterSensitiveLog(item)) }
|
|
1126
|
+
}), "ListDomainLayoutsResponseFilterSensitiveLog");
|
|
1071
1127
|
var ListEventTriggersResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1072
1128
|
...obj,
|
|
1073
1129
|
...obj.Items && { Items: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -1128,6 +1184,16 @@ var UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog = /* @__PURE__
|
|
|
1128
1184
|
...obj.Conditions && { Conditions: import_smithy_client.SENSITIVE_STRING },
|
|
1129
1185
|
...obj.AttributeDetails && { AttributeDetails: import_smithy_client.SENSITIVE_STRING }
|
|
1130
1186
|
}), "UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog");
|
|
1187
|
+
var UpdateDomainLayoutRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1188
|
+
...obj,
|
|
1189
|
+
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING },
|
|
1190
|
+
...obj.Layout && { Layout: import_smithy_client.SENSITIVE_STRING }
|
|
1191
|
+
}), "UpdateDomainLayoutRequestFilterSensitiveLog");
|
|
1192
|
+
var UpdateDomainLayoutResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1193
|
+
...obj,
|
|
1194
|
+
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING },
|
|
1195
|
+
...obj.Layout && { Layout: import_smithy_client.SENSITIVE_STRING }
|
|
1196
|
+
}), "UpdateDomainLayoutResponseFilterSensitiveLog");
|
|
1131
1197
|
var UpdateEventTriggerRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1132
1198
|
...obj,
|
|
1133
1199
|
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -1141,32 +1207,6 @@ var UpdateEventTriggerResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj)
|
|
|
1141
1207
|
var UpdateAddressFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1142
1208
|
...obj
|
|
1143
1209
|
}), "UpdateAddressFilterSensitiveLog");
|
|
1144
|
-
var UpdateProfileRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1145
|
-
...obj,
|
|
1146
|
-
...obj.AdditionalInformation && { AdditionalInformation: import_smithy_client.SENSITIVE_STRING },
|
|
1147
|
-
...obj.AccountNumber && { AccountNumber: import_smithy_client.SENSITIVE_STRING },
|
|
1148
|
-
...obj.PartyType && { PartyType: import_smithy_client.SENSITIVE_STRING },
|
|
1149
|
-
...obj.BusinessName && { BusinessName: import_smithy_client.SENSITIVE_STRING },
|
|
1150
|
-
...obj.FirstName && { FirstName: import_smithy_client.SENSITIVE_STRING },
|
|
1151
|
-
...obj.MiddleName && { MiddleName: import_smithy_client.SENSITIVE_STRING },
|
|
1152
|
-
...obj.LastName && { LastName: import_smithy_client.SENSITIVE_STRING },
|
|
1153
|
-
...obj.BirthDate && { BirthDate: import_smithy_client.SENSITIVE_STRING },
|
|
1154
|
-
...obj.Gender && { Gender: import_smithy_client.SENSITIVE_STRING },
|
|
1155
|
-
...obj.PhoneNumber && { PhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
1156
|
-
...obj.MobilePhoneNumber && { MobilePhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
1157
|
-
...obj.HomePhoneNumber && { HomePhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
1158
|
-
...obj.BusinessPhoneNumber && { BusinessPhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
1159
|
-
...obj.EmailAddress && { EmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
1160
|
-
...obj.PersonalEmailAddress && { PersonalEmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
1161
|
-
...obj.BusinessEmailAddress && { BusinessEmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
1162
|
-
...obj.Address && { Address: import_smithy_client.SENSITIVE_STRING },
|
|
1163
|
-
...obj.ShippingAddress && { ShippingAddress: import_smithy_client.SENSITIVE_STRING },
|
|
1164
|
-
...obj.MailingAddress && { MailingAddress: import_smithy_client.SENSITIVE_STRING },
|
|
1165
|
-
...obj.BillingAddress && { BillingAddress: import_smithy_client.SENSITIVE_STRING },
|
|
1166
|
-
...obj.Attributes && { Attributes: import_smithy_client.SENSITIVE_STRING },
|
|
1167
|
-
...obj.PartyTypeString && { PartyTypeString: import_smithy_client.SENSITIVE_STRING },
|
|
1168
|
-
...obj.GenderString && { GenderString: import_smithy_client.SENSITIVE_STRING }
|
|
1169
|
-
}), "UpdateProfileRequestFilterSensitiveLog");
|
|
1170
1210
|
|
|
1171
1211
|
// src/protocols/Aws_restJson1.ts
|
|
1172
1212
|
var se_AddProfileKeyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1238,7 +1278,8 @@ var se_CreateCalculatedAttributeDefinitionCommand = /* @__PURE__ */ __name(async
|
|
|
1238
1278
|
DisplayName: [],
|
|
1239
1279
|
Filter: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Filter"),
|
|
1240
1280
|
Statistic: [],
|
|
1241
|
-
Tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Tags")
|
|
1281
|
+
Tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Tags"),
|
|
1282
|
+
UseHistoricalData: []
|
|
1242
1283
|
})
|
|
1243
1284
|
);
|
|
1244
1285
|
b.m("POST").h(headers).b(body);
|
|
@@ -1265,6 +1306,28 @@ var se_CreateDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1265
1306
|
b.m("POST").h(headers).b(body);
|
|
1266
1307
|
return b.build();
|
|
1267
1308
|
}, "se_CreateDomainCommand");
|
|
1309
|
+
var se_CreateDomainLayoutCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1310
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1311
|
+
const headers = {
|
|
1312
|
+
"content-type": "application/json"
|
|
1313
|
+
};
|
|
1314
|
+
b.bp("/domains/{DomainName}/layouts/{LayoutDefinitionName}");
|
|
1315
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1316
|
+
b.p("LayoutDefinitionName", () => input.LayoutDefinitionName, "{LayoutDefinitionName}", false);
|
|
1317
|
+
let body;
|
|
1318
|
+
body = JSON.stringify(
|
|
1319
|
+
(0, import_smithy_client.take)(input, {
|
|
1320
|
+
Description: [],
|
|
1321
|
+
DisplayName: [],
|
|
1322
|
+
IsDefault: [],
|
|
1323
|
+
Layout: [],
|
|
1324
|
+
LayoutType: [],
|
|
1325
|
+
Tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Tags")
|
|
1326
|
+
})
|
|
1327
|
+
);
|
|
1328
|
+
b.m("POST").h(headers).b(body);
|
|
1329
|
+
return b.build();
|
|
1330
|
+
}, "se_CreateDomainLayoutCommand");
|
|
1268
1331
|
var se_CreateEventStreamCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1269
1332
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1270
1333
|
const headers = {
|
|
@@ -1438,6 +1501,16 @@ var se_DeleteDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1438
1501
|
b.m("DELETE").h(headers).b(body);
|
|
1439
1502
|
return b.build();
|
|
1440
1503
|
}, "se_DeleteDomainCommand");
|
|
1504
|
+
var se_DeleteDomainLayoutCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1505
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1506
|
+
const headers = {};
|
|
1507
|
+
b.bp("/domains/{DomainName}/layouts/{LayoutDefinitionName}");
|
|
1508
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1509
|
+
b.p("LayoutDefinitionName", () => input.LayoutDefinitionName, "{LayoutDefinitionName}", false);
|
|
1510
|
+
let body;
|
|
1511
|
+
b.m("DELETE").h(headers).b(body);
|
|
1512
|
+
return b.build();
|
|
1513
|
+
}, "se_DeleteDomainLayoutCommand");
|
|
1441
1514
|
var se_DeleteEventStreamCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1442
1515
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1443
1516
|
const headers = {};
|
|
@@ -1620,6 +1693,16 @@ var se_GetDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1620
1693
|
b.m("GET").h(headers).b(body);
|
|
1621
1694
|
return b.build();
|
|
1622
1695
|
}, "se_GetDomainCommand");
|
|
1696
|
+
var se_GetDomainLayoutCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1697
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1698
|
+
const headers = {};
|
|
1699
|
+
b.bp("/domains/{DomainName}/layouts/{LayoutDefinitionName}");
|
|
1700
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1701
|
+
b.p("LayoutDefinitionName", () => input.LayoutDefinitionName, "{LayoutDefinitionName}", false);
|
|
1702
|
+
let body;
|
|
1703
|
+
b.m("GET").h(headers).b(body);
|
|
1704
|
+
return b.build();
|
|
1705
|
+
}, "se_GetDomainLayoutCommand");
|
|
1623
1706
|
var se_GetEventStreamCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1624
1707
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1625
1708
|
const headers = {};
|
|
@@ -1839,6 +1922,19 @@ var se_ListCalculatedAttributesForProfileCommand = /* @__PURE__ */ __name(async
|
|
|
1839
1922
|
b.m("GET").h(headers).q(query).b(body);
|
|
1840
1923
|
return b.build();
|
|
1841
1924
|
}, "se_ListCalculatedAttributesForProfileCommand");
|
|
1925
|
+
var se_ListDomainLayoutsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1926
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1927
|
+
const headers = {};
|
|
1928
|
+
b.bp("/domains/{DomainName}/layouts");
|
|
1929
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1930
|
+
const query = (0, import_smithy_client.map)({
|
|
1931
|
+
[_nt]: [, input[_NT]],
|
|
1932
|
+
[_mr]: [() => input.MaxResults !== void 0, () => input[_MR].toString()]
|
|
1933
|
+
});
|
|
1934
|
+
let body;
|
|
1935
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
1936
|
+
return b.build();
|
|
1937
|
+
}, "se_ListDomainLayoutsCommand");
|
|
1842
1938
|
var se_ListDomainsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1843
1939
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1844
1940
|
const headers = {};
|
|
@@ -2207,6 +2303,27 @@ var se_UpdateDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2207
2303
|
b.m("PUT").h(headers).b(body);
|
|
2208
2304
|
return b.build();
|
|
2209
2305
|
}, "se_UpdateDomainCommand");
|
|
2306
|
+
var se_UpdateDomainLayoutCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2307
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2308
|
+
const headers = {
|
|
2309
|
+
"content-type": "application/json"
|
|
2310
|
+
};
|
|
2311
|
+
b.bp("/domains/{DomainName}/layouts/{LayoutDefinitionName}");
|
|
2312
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
2313
|
+
b.p("LayoutDefinitionName", () => input.LayoutDefinitionName, "{LayoutDefinitionName}", false);
|
|
2314
|
+
let body;
|
|
2315
|
+
body = JSON.stringify(
|
|
2316
|
+
(0, import_smithy_client.take)(input, {
|
|
2317
|
+
Description: [],
|
|
2318
|
+
DisplayName: [],
|
|
2319
|
+
IsDefault: [],
|
|
2320
|
+
Layout: [],
|
|
2321
|
+
LayoutType: []
|
|
2322
|
+
})
|
|
2323
|
+
);
|
|
2324
|
+
b.m("PUT").h(headers).b(body);
|
|
2325
|
+
return b.build();
|
|
2326
|
+
}, "se_UpdateDomainLayoutCommand");
|
|
2210
2327
|
var se_UpdateEventTriggerCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2211
2328
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2212
2329
|
const headers = {
|
|
@@ -2291,7 +2408,7 @@ var de_BatchGetCalculatedAttributeForProfileCommand = /* @__PURE__ */ __name(asy
|
|
|
2291
2408
|
});
|
|
2292
2409
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2293
2410
|
const doc = (0, import_smithy_client.take)(data, {
|
|
2294
|
-
CalculatedAttributeValues:
|
|
2411
|
+
CalculatedAttributeValues: /* @__PURE__ */ __name((_) => de_CalculatedAttributeValueList(_, context), "CalculatedAttributeValues"),
|
|
2295
2412
|
ConditionOverrides: import_smithy_client._json,
|
|
2296
2413
|
Errors: import_smithy_client._json
|
|
2297
2414
|
});
|
|
@@ -2330,8 +2447,11 @@ var de_CreateCalculatedAttributeDefinitionCommand = /* @__PURE__ */ __name(async
|
|
|
2330
2447
|
DisplayName: import_smithy_client.expectString,
|
|
2331
2448
|
Filter: import_smithy_client._json,
|
|
2332
2449
|
LastUpdatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdatedAt"),
|
|
2450
|
+
Readiness: import_smithy_client._json,
|
|
2333
2451
|
Statistic: import_smithy_client.expectString,
|
|
2334
|
-
|
|
2452
|
+
Status: import_smithy_client.expectString,
|
|
2453
|
+
Tags: import_smithy_client._json,
|
|
2454
|
+
UseHistoricalData: import_smithy_client.expectBoolean
|
|
2335
2455
|
});
|
|
2336
2456
|
Object.assign(contents, doc);
|
|
2337
2457
|
return contents;
|
|
@@ -2358,6 +2478,29 @@ var de_CreateDomainCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
2358
2478
|
Object.assign(contents, doc);
|
|
2359
2479
|
return contents;
|
|
2360
2480
|
}, "de_CreateDomainCommand");
|
|
2481
|
+
var de_CreateDomainLayoutCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2482
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2483
|
+
return de_CommandError(output, context);
|
|
2484
|
+
}
|
|
2485
|
+
const contents = (0, import_smithy_client.map)({
|
|
2486
|
+
$metadata: deserializeMetadata(output)
|
|
2487
|
+
});
|
|
2488
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2489
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2490
|
+
CreatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedAt"),
|
|
2491
|
+
Description: import_smithy_client.expectString,
|
|
2492
|
+
DisplayName: import_smithy_client.expectString,
|
|
2493
|
+
IsDefault: import_smithy_client.expectBoolean,
|
|
2494
|
+
LastUpdatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdatedAt"),
|
|
2495
|
+
Layout: import_smithy_client.expectString,
|
|
2496
|
+
LayoutDefinitionName: import_smithy_client.expectString,
|
|
2497
|
+
LayoutType: import_smithy_client.expectString,
|
|
2498
|
+
Tags: import_smithy_client._json,
|
|
2499
|
+
Version: import_smithy_client.expectString
|
|
2500
|
+
});
|
|
2501
|
+
Object.assign(contents, doc);
|
|
2502
|
+
return contents;
|
|
2503
|
+
}, "de_CreateDomainLayoutCommand");
|
|
2361
2504
|
var de_CreateEventStreamCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2362
2505
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2363
2506
|
return de_CommandError(output, context);
|
|
@@ -2499,6 +2642,20 @@ var de_DeleteDomainCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
2499
2642
|
Object.assign(contents, doc);
|
|
2500
2643
|
return contents;
|
|
2501
2644
|
}, "de_DeleteDomainCommand");
|
|
2645
|
+
var de_DeleteDomainLayoutCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2646
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2647
|
+
return de_CommandError(output, context);
|
|
2648
|
+
}
|
|
2649
|
+
const contents = (0, import_smithy_client.map)({
|
|
2650
|
+
$metadata: deserializeMetadata(output)
|
|
2651
|
+
});
|
|
2652
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2653
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2654
|
+
Message: import_smithy_client.expectString
|
|
2655
|
+
});
|
|
2656
|
+
Object.assign(contents, doc);
|
|
2657
|
+
return contents;
|
|
2658
|
+
}, "de_DeleteDomainLayoutCommand");
|
|
2502
2659
|
var de_DeleteEventStreamCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2503
2660
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2504
2661
|
return de_CommandError(output, context);
|
|
@@ -2665,8 +2822,11 @@ var de_GetCalculatedAttributeDefinitionCommand = /* @__PURE__ */ __name(async (o
|
|
|
2665
2822
|
DisplayName: import_smithy_client.expectString,
|
|
2666
2823
|
Filter: import_smithy_client._json,
|
|
2667
2824
|
LastUpdatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdatedAt"),
|
|
2825
|
+
Readiness: import_smithy_client._json,
|
|
2668
2826
|
Statistic: import_smithy_client.expectString,
|
|
2669
|
-
|
|
2827
|
+
Status: import_smithy_client.expectString,
|
|
2828
|
+
Tags: import_smithy_client._json,
|
|
2829
|
+
UseHistoricalData: import_smithy_client.expectBoolean
|
|
2670
2830
|
});
|
|
2671
2831
|
Object.assign(contents, doc);
|
|
2672
2832
|
return contents;
|
|
@@ -2683,6 +2843,7 @@ var de_GetCalculatedAttributeForProfileCommand = /* @__PURE__ */ __name(async (o
|
|
|
2683
2843
|
CalculatedAttributeName: import_smithy_client.expectString,
|
|
2684
2844
|
DisplayName: import_smithy_client.expectString,
|
|
2685
2845
|
IsDataPartial: import_smithy_client.expectString,
|
|
2846
|
+
LastObjectTimestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastObjectTimestamp"),
|
|
2686
2847
|
Value: import_smithy_client.expectString
|
|
2687
2848
|
});
|
|
2688
2849
|
Object.assign(contents, doc);
|
|
@@ -2711,6 +2872,29 @@ var de_GetDomainCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
2711
2872
|
Object.assign(contents, doc);
|
|
2712
2873
|
return contents;
|
|
2713
2874
|
}, "de_GetDomainCommand");
|
|
2875
|
+
var de_GetDomainLayoutCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2876
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2877
|
+
return de_CommandError(output, context);
|
|
2878
|
+
}
|
|
2879
|
+
const contents = (0, import_smithy_client.map)({
|
|
2880
|
+
$metadata: deserializeMetadata(output)
|
|
2881
|
+
});
|
|
2882
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2883
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2884
|
+
CreatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedAt"),
|
|
2885
|
+
Description: import_smithy_client.expectString,
|
|
2886
|
+
DisplayName: import_smithy_client.expectString,
|
|
2887
|
+
IsDefault: import_smithy_client.expectBoolean,
|
|
2888
|
+
LastUpdatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdatedAt"),
|
|
2889
|
+
Layout: import_smithy_client.expectString,
|
|
2890
|
+
LayoutDefinitionName: import_smithy_client.expectString,
|
|
2891
|
+
LayoutType: import_smithy_client.expectString,
|
|
2892
|
+
Tags: import_smithy_client._json,
|
|
2893
|
+
Version: import_smithy_client.expectString
|
|
2894
|
+
});
|
|
2895
|
+
Object.assign(contents, doc);
|
|
2896
|
+
return contents;
|
|
2897
|
+
}, "de_GetDomainLayoutCommand");
|
|
2714
2898
|
var de_GetEventStreamCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2715
2899
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2716
2900
|
return de_CommandError(output, context);
|
|
@@ -3038,12 +3222,27 @@ var de_ListCalculatedAttributesForProfileCommand = /* @__PURE__ */ __name(async
|
|
|
3038
3222
|
});
|
|
3039
3223
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
3040
3224
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3041
|
-
Items:
|
|
3225
|
+
Items: /* @__PURE__ */ __name((_) => de_CalculatedAttributesForProfileList(_, context), "Items"),
|
|
3042
3226
|
NextToken: import_smithy_client.expectString
|
|
3043
3227
|
});
|
|
3044
3228
|
Object.assign(contents, doc);
|
|
3045
3229
|
return contents;
|
|
3046
3230
|
}, "de_ListCalculatedAttributesForProfileCommand");
|
|
3231
|
+
var de_ListDomainLayoutsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3232
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3233
|
+
return de_CommandError(output, context);
|
|
3234
|
+
}
|
|
3235
|
+
const contents = (0, import_smithy_client.map)({
|
|
3236
|
+
$metadata: deserializeMetadata(output)
|
|
3237
|
+
});
|
|
3238
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
3239
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
3240
|
+
Items: /* @__PURE__ */ __name((_) => de_LayoutList(_, context), "Items"),
|
|
3241
|
+
NextToken: import_smithy_client.expectString
|
|
3242
|
+
});
|
|
3243
|
+
Object.assign(contents, doc);
|
|
3244
|
+
return contents;
|
|
3245
|
+
}, "de_ListDomainLayoutsCommand");
|
|
3047
3246
|
var de_ListDomainsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3048
3247
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3049
3248
|
return de_CommandError(output, context);
|
|
@@ -3387,8 +3586,11 @@ var de_UpdateCalculatedAttributeDefinitionCommand = /* @__PURE__ */ __name(async
|
|
|
3387
3586
|
Description: import_smithy_client.expectString,
|
|
3388
3587
|
DisplayName: import_smithy_client.expectString,
|
|
3389
3588
|
LastUpdatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdatedAt"),
|
|
3589
|
+
Readiness: import_smithy_client._json,
|
|
3390
3590
|
Statistic: import_smithy_client.expectString,
|
|
3391
|
-
|
|
3591
|
+
Status: import_smithy_client.expectString,
|
|
3592
|
+
Tags: import_smithy_client._json,
|
|
3593
|
+
UseHistoricalData: import_smithy_client.expectBoolean
|
|
3392
3594
|
});
|
|
3393
3595
|
Object.assign(contents, doc);
|
|
3394
3596
|
return contents;
|
|
@@ -3415,6 +3617,29 @@ var de_UpdateDomainCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
3415
3617
|
Object.assign(contents, doc);
|
|
3416
3618
|
return contents;
|
|
3417
3619
|
}, "de_UpdateDomainCommand");
|
|
3620
|
+
var de_UpdateDomainLayoutCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3621
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3622
|
+
return de_CommandError(output, context);
|
|
3623
|
+
}
|
|
3624
|
+
const contents = (0, import_smithy_client.map)({
|
|
3625
|
+
$metadata: deserializeMetadata(output)
|
|
3626
|
+
});
|
|
3627
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
3628
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
3629
|
+
CreatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedAt"),
|
|
3630
|
+
Description: import_smithy_client.expectString,
|
|
3631
|
+
DisplayName: import_smithy_client.expectString,
|
|
3632
|
+
IsDefault: import_smithy_client.expectBoolean,
|
|
3633
|
+
LastUpdatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdatedAt"),
|
|
3634
|
+
Layout: import_smithy_client.expectString,
|
|
3635
|
+
LayoutDefinitionName: import_smithy_client.expectString,
|
|
3636
|
+
LayoutType: import_smithy_client.expectString,
|
|
3637
|
+
Tags: import_smithy_client._json,
|
|
3638
|
+
Version: import_smithy_client.expectString
|
|
3639
|
+
});
|
|
3640
|
+
Object.assign(contents, doc);
|
|
3641
|
+
return contents;
|
|
3642
|
+
}, "de_UpdateDomainLayoutCommand");
|
|
3418
3643
|
var de_UpdateEventTriggerCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3419
3644
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3420
3645
|
return de_CommandError(output, context);
|
|
@@ -3798,6 +4023,28 @@ var de_CalculatedAttributeDimension = /* @__PURE__ */ __name((output, context) =
|
|
|
3798
4023
|
Values: [, import_smithy_client._json, `Values`]
|
|
3799
4024
|
});
|
|
3800
4025
|
}, "de_CalculatedAttributeDimension");
|
|
4026
|
+
var de_CalculatedAttributesForProfileList = /* @__PURE__ */ __name((output, context) => {
|
|
4027
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
4028
|
+
return de_ListCalculatedAttributeForProfileItem(entry, context);
|
|
4029
|
+
});
|
|
4030
|
+
return retVal;
|
|
4031
|
+
}, "de_CalculatedAttributesForProfileList");
|
|
4032
|
+
var de_CalculatedAttributeValue = /* @__PURE__ */ __name((output, context) => {
|
|
4033
|
+
return (0, import_smithy_client.take)(output, {
|
|
4034
|
+
CalculatedAttributeName: import_smithy_client.expectString,
|
|
4035
|
+
DisplayName: import_smithy_client.expectString,
|
|
4036
|
+
IsDataPartial: import_smithy_client.expectString,
|
|
4037
|
+
LastObjectTimestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastObjectTimestamp"),
|
|
4038
|
+
ProfileId: import_smithy_client.expectString,
|
|
4039
|
+
Value: import_smithy_client.expectString
|
|
4040
|
+
});
|
|
4041
|
+
}, "de_CalculatedAttributeValue");
|
|
4042
|
+
var de_CalculatedAttributeValueList = /* @__PURE__ */ __name((output, context) => {
|
|
4043
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
4044
|
+
return de_CalculatedAttributeValue(entry, context);
|
|
4045
|
+
});
|
|
4046
|
+
return retVal;
|
|
4047
|
+
}, "de_CalculatedAttributeValueList");
|
|
3801
4048
|
var de_CalculatedCustomAttributes = /* @__PURE__ */ __name((output, context) => {
|
|
3802
4049
|
return Object.entries(output).reduce(
|
|
3803
4050
|
(acc, [key, value]) => {
|
|
@@ -3942,6 +4189,24 @@ var de_IntegrationList = /* @__PURE__ */ __name((output, context) => {
|
|
|
3942
4189
|
});
|
|
3943
4190
|
return retVal;
|
|
3944
4191
|
}, "de_IntegrationList");
|
|
4192
|
+
var de_LayoutItem = /* @__PURE__ */ __name((output, context) => {
|
|
4193
|
+
return (0, import_smithy_client.take)(output, {
|
|
4194
|
+
CreatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedAt"),
|
|
4195
|
+
Description: import_smithy_client.expectString,
|
|
4196
|
+
DisplayName: import_smithy_client.expectString,
|
|
4197
|
+
IsDefault: import_smithy_client.expectBoolean,
|
|
4198
|
+
LastUpdatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdatedAt"),
|
|
4199
|
+
LayoutDefinitionName: import_smithy_client.expectString,
|
|
4200
|
+
LayoutType: import_smithy_client.expectString,
|
|
4201
|
+
Tags: import_smithy_client._json
|
|
4202
|
+
});
|
|
4203
|
+
}, "de_LayoutItem");
|
|
4204
|
+
var de_LayoutList = /* @__PURE__ */ __name((output, context) => {
|
|
4205
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
4206
|
+
return de_LayoutItem(entry, context);
|
|
4207
|
+
});
|
|
4208
|
+
return retVal;
|
|
4209
|
+
}, "de_LayoutList");
|
|
3945
4210
|
var de_ListCalculatedAttributeDefinitionItem = /* @__PURE__ */ __name((output, context) => {
|
|
3946
4211
|
return (0, import_smithy_client.take)(output, {
|
|
3947
4212
|
CalculatedAttributeName: import_smithy_client.expectString,
|
|
@@ -3949,9 +4214,20 @@ var de_ListCalculatedAttributeDefinitionItem = /* @__PURE__ */ __name((output, c
|
|
|
3949
4214
|
Description: import_smithy_client.expectString,
|
|
3950
4215
|
DisplayName: import_smithy_client.expectString,
|
|
3951
4216
|
LastUpdatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdatedAt"),
|
|
3952
|
-
|
|
4217
|
+
Status: import_smithy_client.expectString,
|
|
4218
|
+
Tags: import_smithy_client._json,
|
|
4219
|
+
UseHistoricalData: import_smithy_client.expectBoolean
|
|
3953
4220
|
});
|
|
3954
4221
|
}, "de_ListCalculatedAttributeDefinitionItem");
|
|
4222
|
+
var de_ListCalculatedAttributeForProfileItem = /* @__PURE__ */ __name((output, context) => {
|
|
4223
|
+
return (0, import_smithy_client.take)(output, {
|
|
4224
|
+
CalculatedAttributeName: import_smithy_client.expectString,
|
|
4225
|
+
DisplayName: import_smithy_client.expectString,
|
|
4226
|
+
IsDataPartial: import_smithy_client.expectString,
|
|
4227
|
+
LastObjectTimestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastObjectTimestamp"),
|
|
4228
|
+
Value: import_smithy_client.expectString
|
|
4229
|
+
});
|
|
4230
|
+
}, "de_ListCalculatedAttributeForProfileItem");
|
|
3955
4231
|
var de_ListDomainItem = /* @__PURE__ */ __name((output, context) => {
|
|
3956
4232
|
return (0, import_smithy_client.take)(output, {
|
|
3957
4233
|
CreatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedAt"),
|
|
@@ -4234,6 +4510,21 @@ var CreateDomainCommand = class extends import_smithy_client.Command.classBuilde
|
|
|
4234
4510
|
}
|
|
4235
4511
|
};
|
|
4236
4512
|
|
|
4513
|
+
// src/commands/CreateDomainLayoutCommand.ts
|
|
4514
|
+
|
|
4515
|
+
|
|
4516
|
+
|
|
4517
|
+
var CreateDomainLayoutCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4518
|
+
return [
|
|
4519
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4520
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4521
|
+
];
|
|
4522
|
+
}).s("CustomerProfiles_20200815", "CreateDomainLayout", {}).n("CustomerProfilesClient", "CreateDomainLayoutCommand").f(CreateDomainLayoutRequestFilterSensitiveLog, CreateDomainLayoutResponseFilterSensitiveLog).ser(se_CreateDomainLayoutCommand).de(de_CreateDomainLayoutCommand).build() {
|
|
4523
|
+
static {
|
|
4524
|
+
__name(this, "CreateDomainLayoutCommand");
|
|
4525
|
+
}
|
|
4526
|
+
};
|
|
4527
|
+
|
|
4237
4528
|
// src/commands/CreateEventStreamCommand.ts
|
|
4238
4529
|
|
|
4239
4530
|
|
|
@@ -4369,6 +4660,21 @@ var DeleteDomainCommand = class extends import_smithy_client.Command.classBuilde
|
|
|
4369
4660
|
}
|
|
4370
4661
|
};
|
|
4371
4662
|
|
|
4663
|
+
// src/commands/DeleteDomainLayoutCommand.ts
|
|
4664
|
+
|
|
4665
|
+
|
|
4666
|
+
|
|
4667
|
+
var DeleteDomainLayoutCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4668
|
+
return [
|
|
4669
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4670
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4671
|
+
];
|
|
4672
|
+
}).s("CustomerProfiles_20200815", "DeleteDomainLayout", {}).n("CustomerProfilesClient", "DeleteDomainLayoutCommand").f(void 0, void 0).ser(se_DeleteDomainLayoutCommand).de(de_DeleteDomainLayoutCommand).build() {
|
|
4673
|
+
static {
|
|
4674
|
+
__name(this, "DeleteDomainLayoutCommand");
|
|
4675
|
+
}
|
|
4676
|
+
};
|
|
4677
|
+
|
|
4372
4678
|
// src/commands/DeleteEventStreamCommand.ts
|
|
4373
4679
|
|
|
4374
4680
|
|
|
@@ -4579,6 +4885,21 @@ var GetDomainCommand = class extends import_smithy_client.Command.classBuilder()
|
|
|
4579
4885
|
}
|
|
4580
4886
|
};
|
|
4581
4887
|
|
|
4888
|
+
// src/commands/GetDomainLayoutCommand.ts
|
|
4889
|
+
|
|
4890
|
+
|
|
4891
|
+
|
|
4892
|
+
var GetDomainLayoutCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4893
|
+
return [
|
|
4894
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4895
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4896
|
+
];
|
|
4897
|
+
}).s("CustomerProfiles_20200815", "GetDomainLayout", {}).n("CustomerProfilesClient", "GetDomainLayoutCommand").f(void 0, GetDomainLayoutResponseFilterSensitiveLog).ser(se_GetDomainLayoutCommand).de(de_GetDomainLayoutCommand).build() {
|
|
4898
|
+
static {
|
|
4899
|
+
__name(this, "GetDomainLayoutCommand");
|
|
4900
|
+
}
|
|
4901
|
+
};
|
|
4902
|
+
|
|
4582
4903
|
// src/commands/GetEventStreamCommand.ts
|
|
4583
4904
|
|
|
4584
4905
|
|
|
@@ -4834,6 +5155,21 @@ var ListCalculatedAttributesForProfileCommand = class extends import_smithy_clie
|
|
|
4834
5155
|
}
|
|
4835
5156
|
};
|
|
4836
5157
|
|
|
5158
|
+
// src/commands/ListDomainLayoutsCommand.ts
|
|
5159
|
+
|
|
5160
|
+
|
|
5161
|
+
|
|
5162
|
+
var ListDomainLayoutsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5163
|
+
return [
|
|
5164
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5165
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5166
|
+
];
|
|
5167
|
+
}).s("CustomerProfiles_20200815", "ListDomainLayouts", {}).n("CustomerProfilesClient", "ListDomainLayoutsCommand").f(void 0, ListDomainLayoutsResponseFilterSensitiveLog).ser(se_ListDomainLayoutsCommand).de(de_ListDomainLayoutsCommand).build() {
|
|
5168
|
+
static {
|
|
5169
|
+
__name(this, "ListDomainLayoutsCommand");
|
|
5170
|
+
}
|
|
5171
|
+
};
|
|
5172
|
+
|
|
4837
5173
|
// src/commands/ListDomainsCommand.ts
|
|
4838
5174
|
|
|
4839
5175
|
|
|
@@ -5182,6 +5518,21 @@ var UpdateDomainCommand = class extends import_smithy_client.Command.classBuilde
|
|
|
5182
5518
|
}
|
|
5183
5519
|
};
|
|
5184
5520
|
|
|
5521
|
+
// src/commands/UpdateDomainLayoutCommand.ts
|
|
5522
|
+
|
|
5523
|
+
|
|
5524
|
+
|
|
5525
|
+
var UpdateDomainLayoutCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5526
|
+
return [
|
|
5527
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5528
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5529
|
+
];
|
|
5530
|
+
}).s("CustomerProfiles_20200815", "UpdateDomainLayout", {}).n("CustomerProfilesClient", "UpdateDomainLayoutCommand").f(UpdateDomainLayoutRequestFilterSensitiveLog, UpdateDomainLayoutResponseFilterSensitiveLog).ser(se_UpdateDomainLayoutCommand).de(de_UpdateDomainLayoutCommand).build() {
|
|
5531
|
+
static {
|
|
5532
|
+
__name(this, "UpdateDomainLayoutCommand");
|
|
5533
|
+
}
|
|
5534
|
+
};
|
|
5535
|
+
|
|
5185
5536
|
// src/commands/UpdateEventTriggerCommand.ts
|
|
5186
5537
|
|
|
5187
5538
|
|
|
@@ -5201,6 +5552,37 @@ var UpdateEventTriggerCommand = class extends import_smithy_client.Command.class
|
|
|
5201
5552
|
|
|
5202
5553
|
|
|
5203
5554
|
|
|
5555
|
+
|
|
5556
|
+
// src/models/models_1.ts
|
|
5557
|
+
|
|
5558
|
+
var UpdateProfileRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
5559
|
+
...obj,
|
|
5560
|
+
...obj.AdditionalInformation && { AdditionalInformation: import_smithy_client.SENSITIVE_STRING },
|
|
5561
|
+
...obj.AccountNumber && { AccountNumber: import_smithy_client.SENSITIVE_STRING },
|
|
5562
|
+
...obj.PartyType && { PartyType: import_smithy_client.SENSITIVE_STRING },
|
|
5563
|
+
...obj.BusinessName && { BusinessName: import_smithy_client.SENSITIVE_STRING },
|
|
5564
|
+
...obj.FirstName && { FirstName: import_smithy_client.SENSITIVE_STRING },
|
|
5565
|
+
...obj.MiddleName && { MiddleName: import_smithy_client.SENSITIVE_STRING },
|
|
5566
|
+
...obj.LastName && { LastName: import_smithy_client.SENSITIVE_STRING },
|
|
5567
|
+
...obj.BirthDate && { BirthDate: import_smithy_client.SENSITIVE_STRING },
|
|
5568
|
+
...obj.Gender && { Gender: import_smithy_client.SENSITIVE_STRING },
|
|
5569
|
+
...obj.PhoneNumber && { PhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
5570
|
+
...obj.MobilePhoneNumber && { MobilePhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
5571
|
+
...obj.HomePhoneNumber && { HomePhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
5572
|
+
...obj.BusinessPhoneNumber && { BusinessPhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
5573
|
+
...obj.EmailAddress && { EmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
5574
|
+
...obj.PersonalEmailAddress && { PersonalEmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
5575
|
+
...obj.BusinessEmailAddress && { BusinessEmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
5576
|
+
...obj.Address && { Address: import_smithy_client.SENSITIVE_STRING },
|
|
5577
|
+
...obj.ShippingAddress && { ShippingAddress: import_smithy_client.SENSITIVE_STRING },
|
|
5578
|
+
...obj.MailingAddress && { MailingAddress: import_smithy_client.SENSITIVE_STRING },
|
|
5579
|
+
...obj.BillingAddress && { BillingAddress: import_smithy_client.SENSITIVE_STRING },
|
|
5580
|
+
...obj.Attributes && { Attributes: import_smithy_client.SENSITIVE_STRING },
|
|
5581
|
+
...obj.PartyTypeString && { PartyTypeString: import_smithy_client.SENSITIVE_STRING },
|
|
5582
|
+
...obj.GenderString && { GenderString: import_smithy_client.SENSITIVE_STRING }
|
|
5583
|
+
}), "UpdateProfileRequestFilterSensitiveLog");
|
|
5584
|
+
|
|
5585
|
+
// src/commands/UpdateProfileCommand.ts
|
|
5204
5586
|
var UpdateProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5205
5587
|
return [
|
|
5206
5588
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
@@ -5219,6 +5601,7 @@ var commands = {
|
|
|
5219
5601
|
BatchGetProfileCommand,
|
|
5220
5602
|
CreateCalculatedAttributeDefinitionCommand,
|
|
5221
5603
|
CreateDomainCommand,
|
|
5604
|
+
CreateDomainLayoutCommand,
|
|
5222
5605
|
CreateEventStreamCommand,
|
|
5223
5606
|
CreateEventTriggerCommand,
|
|
5224
5607
|
CreateIntegrationWorkflowCommand,
|
|
@@ -5228,6 +5611,7 @@ var commands = {
|
|
|
5228
5611
|
CreateSegmentSnapshotCommand,
|
|
5229
5612
|
DeleteCalculatedAttributeDefinitionCommand,
|
|
5230
5613
|
DeleteDomainCommand,
|
|
5614
|
+
DeleteDomainLayoutCommand,
|
|
5231
5615
|
DeleteEventStreamCommand,
|
|
5232
5616
|
DeleteEventTriggerCommand,
|
|
5233
5617
|
DeleteIntegrationCommand,
|
|
@@ -5242,6 +5626,7 @@ var commands = {
|
|
|
5242
5626
|
GetCalculatedAttributeDefinitionCommand,
|
|
5243
5627
|
GetCalculatedAttributeForProfileCommand,
|
|
5244
5628
|
GetDomainCommand,
|
|
5629
|
+
GetDomainLayoutCommand,
|
|
5245
5630
|
GetEventStreamCommand,
|
|
5246
5631
|
GetEventTriggerCommand,
|
|
5247
5632
|
GetIdentityResolutionJobCommand,
|
|
@@ -5259,6 +5644,7 @@ var commands = {
|
|
|
5259
5644
|
ListAccountIntegrationsCommand,
|
|
5260
5645
|
ListCalculatedAttributeDefinitionsCommand,
|
|
5261
5646
|
ListCalculatedAttributesForProfileCommand,
|
|
5647
|
+
ListDomainLayoutsCommand,
|
|
5262
5648
|
ListDomainsCommand,
|
|
5263
5649
|
ListEventStreamsCommand,
|
|
5264
5650
|
ListEventTriggersCommand,
|
|
@@ -5282,6 +5668,7 @@ var commands = {
|
|
|
5282
5668
|
UntagResourceCommand,
|
|
5283
5669
|
UpdateCalculatedAttributeDefinitionCommand,
|
|
5284
5670
|
UpdateDomainCommand,
|
|
5671
|
+
UpdateDomainLayoutCommand,
|
|
5285
5672
|
UpdateEventTriggerCommand,
|
|
5286
5673
|
UpdateProfileCommand
|
|
5287
5674
|
};
|
|
@@ -5296,6 +5683,10 @@ var CustomerProfiles = class extends CustomerProfilesClient {
|
|
|
5296
5683
|
|
|
5297
5684
|
var paginateGetSimilarProfiles = (0, import_core.createPaginator)(CustomerProfilesClient, GetSimilarProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
5298
5685
|
|
|
5686
|
+
// src/pagination/ListDomainLayoutsPaginator.ts
|
|
5687
|
+
|
|
5688
|
+
var paginateListDomainLayouts = (0, import_core.createPaginator)(CustomerProfilesClient, ListDomainLayoutsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5689
|
+
|
|
5299
5690
|
// src/pagination/ListEventStreamsPaginator.ts
|
|
5300
5691
|
|
|
5301
5692
|
var paginateListEventStreams = (0, import_core.createPaginator)(CustomerProfilesClient, ListEventStreamsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -5328,6 +5719,7 @@ var paginateListSegmentDefinitions = (0, import_core.createPaginator)(CustomerPr
|
|
|
5328
5719
|
BatchGetProfileCommand,
|
|
5329
5720
|
CreateCalculatedAttributeDefinitionCommand,
|
|
5330
5721
|
CreateDomainCommand,
|
|
5722
|
+
CreateDomainLayoutCommand,
|
|
5331
5723
|
CreateEventStreamCommand,
|
|
5332
5724
|
CreateEventTriggerCommand,
|
|
5333
5725
|
CreateIntegrationWorkflowCommand,
|
|
@@ -5337,6 +5729,7 @@ var paginateListSegmentDefinitions = (0, import_core.createPaginator)(CustomerPr
|
|
|
5337
5729
|
CreateSegmentSnapshotCommand,
|
|
5338
5730
|
DeleteCalculatedAttributeDefinitionCommand,
|
|
5339
5731
|
DeleteDomainCommand,
|
|
5732
|
+
DeleteDomainLayoutCommand,
|
|
5340
5733
|
DeleteEventStreamCommand,
|
|
5341
5734
|
DeleteEventTriggerCommand,
|
|
5342
5735
|
DeleteIntegrationCommand,
|
|
@@ -5351,6 +5744,7 @@ var paginateListSegmentDefinitions = (0, import_core.createPaginator)(CustomerPr
|
|
|
5351
5744
|
GetCalculatedAttributeDefinitionCommand,
|
|
5352
5745
|
GetCalculatedAttributeForProfileCommand,
|
|
5353
5746
|
GetDomainCommand,
|
|
5747
|
+
GetDomainLayoutCommand,
|
|
5354
5748
|
GetEventStreamCommand,
|
|
5355
5749
|
GetEventTriggerCommand,
|
|
5356
5750
|
GetIdentityResolutionJobCommand,
|
|
@@ -5368,6 +5762,7 @@ var paginateListSegmentDefinitions = (0, import_core.createPaginator)(CustomerPr
|
|
|
5368
5762
|
ListAccountIntegrationsCommand,
|
|
5369
5763
|
ListCalculatedAttributeDefinitionsCommand,
|
|
5370
5764
|
ListCalculatedAttributesForProfileCommand,
|
|
5765
|
+
ListDomainLayoutsCommand,
|
|
5371
5766
|
ListDomainsCommand,
|
|
5372
5767
|
ListEventStreamsCommand,
|
|
5373
5768
|
ListEventTriggersCommand,
|
|
@@ -5391,9 +5786,11 @@ var paginateListSegmentDefinitions = (0, import_core.createPaginator)(CustomerPr
|
|
|
5391
5786
|
UntagResourceCommand,
|
|
5392
5787
|
UpdateCalculatedAttributeDefinitionCommand,
|
|
5393
5788
|
UpdateDomainCommand,
|
|
5789
|
+
UpdateDomainLayoutCommand,
|
|
5394
5790
|
UpdateEventTriggerCommand,
|
|
5395
5791
|
UpdateProfileCommand,
|
|
5396
5792
|
paginateGetSimilarProfiles,
|
|
5793
|
+
paginateListDomainLayouts,
|
|
5397
5794
|
paginateListEventStreams,
|
|
5398
5795
|
paginateListEventTriggers,
|
|
5399
5796
|
paginateListObjectTypeAttributes,
|
|
@@ -5423,6 +5820,7 @@ var paginateListSegmentDefinitions = (0, import_core.createPaginator)(CustomerPr
|
|
|
5423
5820
|
RangeUnit,
|
|
5424
5821
|
Gender,
|
|
5425
5822
|
PartyType,
|
|
5823
|
+
ReadinessStatus,
|
|
5426
5824
|
ComparisonOperator,
|
|
5427
5825
|
Unit,
|
|
5428
5826
|
Operator,
|
|
@@ -5431,6 +5829,7 @@ var paginateListSegmentDefinitions = (0, import_core.createPaginator)(CustomerPr
|
|
|
5431
5829
|
Statistic,
|
|
5432
5830
|
JobScheduleDayOfTheWeek,
|
|
5433
5831
|
RuleBasedMatchingStatus,
|
|
5832
|
+
LayoutType,
|
|
5434
5833
|
EventTriggerLogicalOperator,
|
|
5435
5834
|
PeriodUnit,
|
|
5436
5835
|
WorkflowType,
|
|
@@ -5462,6 +5861,8 @@ var paginateListSegmentDefinitions = (0, import_core.createPaginator)(CustomerPr
|
|
|
5462
5861
|
ConditionsFilterSensitiveLog,
|
|
5463
5862
|
CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog,
|
|
5464
5863
|
CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
5864
|
+
CreateDomainLayoutRequestFilterSensitiveLog,
|
|
5865
|
+
CreateDomainLayoutResponseFilterSensitiveLog,
|
|
5465
5866
|
CreateEventTriggerRequestFilterSensitiveLog,
|
|
5466
5867
|
CreateEventTriggerResponseFilterSensitiveLog,
|
|
5467
5868
|
IntegrationConfigFilterSensitiveLog,
|
|
@@ -5479,6 +5880,7 @@ var paginateListSegmentDefinitions = (0, import_core.createPaginator)(CustomerPr
|
|
|
5479
5880
|
DetectedProfileObjectTypeFilterSensitiveLog,
|
|
5480
5881
|
DetectProfileObjectTypeResponseFilterSensitiveLog,
|
|
5481
5882
|
GetCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
5883
|
+
GetDomainLayoutResponseFilterSensitiveLog,
|
|
5482
5884
|
GetEventTriggerResponseFilterSensitiveLog,
|
|
5483
5885
|
GetProfileObjectTypeResponseFilterSensitiveLog,
|
|
5484
5886
|
GetProfileObjectTypeTemplateResponseFilterSensitiveLog,
|
|
@@ -5486,6 +5888,8 @@ var paginateListSegmentDefinitions = (0, import_core.createPaginator)(CustomerPr
|
|
|
5486
5888
|
ProfileQueryResultFilterSensitiveLog,
|
|
5487
5889
|
GetSegmentMembershipResponseFilterSensitiveLog,
|
|
5488
5890
|
ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog,
|
|
5891
|
+
LayoutItemFilterSensitiveLog,
|
|
5892
|
+
ListDomainLayoutsResponseFilterSensitiveLog,
|
|
5489
5893
|
ListEventTriggersResponseFilterSensitiveLog,
|
|
5490
5894
|
ListProfileObjectsItemFilterSensitiveLog,
|
|
5491
5895
|
ListProfileObjectsResponseFilterSensitiveLog,
|
|
@@ -5499,6 +5903,8 @@ var paginateListSegmentDefinitions = (0, import_core.createPaginator)(CustomerPr
|
|
|
5499
5903
|
SearchProfilesResponseFilterSensitiveLog,
|
|
5500
5904
|
UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog,
|
|
5501
5905
|
UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
5906
|
+
UpdateDomainLayoutRequestFilterSensitiveLog,
|
|
5907
|
+
UpdateDomainLayoutResponseFilterSensitiveLog,
|
|
5502
5908
|
UpdateEventTriggerRequestFilterSensitiveLog,
|
|
5503
5909
|
UpdateEventTriggerResponseFilterSensitiveLog,
|
|
5504
5910
|
UpdateAddressFilterSensitiveLog,
|