@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
|
@@ -66,6 +66,7 @@ export const se_CreateCalculatedAttributeDefinitionCommand = async (input, conte
|
|
|
66
66
|
Filter: (_) => _json(_),
|
|
67
67
|
Statistic: [],
|
|
68
68
|
Tags: (_) => _json(_),
|
|
69
|
+
UseHistoricalData: [],
|
|
69
70
|
}));
|
|
70
71
|
b.m("POST").h(headers).b(body);
|
|
71
72
|
return b.build();
|
|
@@ -89,6 +90,26 @@ export const se_CreateDomainCommand = async (input, context) => {
|
|
|
89
90
|
b.m("POST").h(headers).b(body);
|
|
90
91
|
return b.build();
|
|
91
92
|
};
|
|
93
|
+
export const se_CreateDomainLayoutCommand = async (input, context) => {
|
|
94
|
+
const b = rb(input, context);
|
|
95
|
+
const headers = {
|
|
96
|
+
"content-type": "application/json",
|
|
97
|
+
};
|
|
98
|
+
b.bp("/domains/{DomainName}/layouts/{LayoutDefinitionName}");
|
|
99
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
100
|
+
b.p("LayoutDefinitionName", () => input.LayoutDefinitionName, "{LayoutDefinitionName}", false);
|
|
101
|
+
let body;
|
|
102
|
+
body = JSON.stringify(take(input, {
|
|
103
|
+
Description: [],
|
|
104
|
+
DisplayName: [],
|
|
105
|
+
IsDefault: [],
|
|
106
|
+
Layout: [],
|
|
107
|
+
LayoutType: [],
|
|
108
|
+
Tags: (_) => _json(_),
|
|
109
|
+
}));
|
|
110
|
+
b.m("POST").h(headers).b(body);
|
|
111
|
+
return b.build();
|
|
112
|
+
};
|
|
92
113
|
export const se_CreateEventStreamCommand = async (input, context) => {
|
|
93
114
|
const b = rb(input, context);
|
|
94
115
|
const headers = {
|
|
@@ -248,6 +269,16 @@ export const se_DeleteDomainCommand = async (input, context) => {
|
|
|
248
269
|
b.m("DELETE").h(headers).b(body);
|
|
249
270
|
return b.build();
|
|
250
271
|
};
|
|
272
|
+
export const se_DeleteDomainLayoutCommand = async (input, context) => {
|
|
273
|
+
const b = rb(input, context);
|
|
274
|
+
const headers = {};
|
|
275
|
+
b.bp("/domains/{DomainName}/layouts/{LayoutDefinitionName}");
|
|
276
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
277
|
+
b.p("LayoutDefinitionName", () => input.LayoutDefinitionName, "{LayoutDefinitionName}", false);
|
|
278
|
+
let body;
|
|
279
|
+
b.m("DELETE").h(headers).b(body);
|
|
280
|
+
return b.build();
|
|
281
|
+
};
|
|
251
282
|
export const se_DeleteEventStreamCommand = async (input, context) => {
|
|
252
283
|
const b = rb(input, context);
|
|
253
284
|
const headers = {};
|
|
@@ -418,6 +449,16 @@ export const se_GetDomainCommand = async (input, context) => {
|
|
|
418
449
|
b.m("GET").h(headers).b(body);
|
|
419
450
|
return b.build();
|
|
420
451
|
};
|
|
452
|
+
export const se_GetDomainLayoutCommand = async (input, context) => {
|
|
453
|
+
const b = rb(input, context);
|
|
454
|
+
const headers = {};
|
|
455
|
+
b.bp("/domains/{DomainName}/layouts/{LayoutDefinitionName}");
|
|
456
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
457
|
+
b.p("LayoutDefinitionName", () => input.LayoutDefinitionName, "{LayoutDefinitionName}", false);
|
|
458
|
+
let body;
|
|
459
|
+
b.m("GET").h(headers).b(body);
|
|
460
|
+
return b.build();
|
|
461
|
+
};
|
|
421
462
|
export const se_GetEventStreamCommand = async (input, context) => {
|
|
422
463
|
const b = rb(input, context);
|
|
423
464
|
const headers = {};
|
|
@@ -629,6 +670,19 @@ export const se_ListCalculatedAttributesForProfileCommand = async (input, contex
|
|
|
629
670
|
b.m("GET").h(headers).q(query).b(body);
|
|
630
671
|
return b.build();
|
|
631
672
|
};
|
|
673
|
+
export const se_ListDomainLayoutsCommand = async (input, context) => {
|
|
674
|
+
const b = rb(input, context);
|
|
675
|
+
const headers = {};
|
|
676
|
+
b.bp("/domains/{DomainName}/layouts");
|
|
677
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
678
|
+
const query = map({
|
|
679
|
+
[_nt]: [, input[_NT]],
|
|
680
|
+
[_mr]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
681
|
+
});
|
|
682
|
+
let body;
|
|
683
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
684
|
+
return b.build();
|
|
685
|
+
};
|
|
632
686
|
export const se_ListDomainsCommand = async (input, context) => {
|
|
633
687
|
const b = rb(input, context);
|
|
634
688
|
const headers = {};
|
|
@@ -977,6 +1031,25 @@ export const se_UpdateDomainCommand = async (input, context) => {
|
|
|
977
1031
|
b.m("PUT").h(headers).b(body);
|
|
978
1032
|
return b.build();
|
|
979
1033
|
};
|
|
1034
|
+
export const se_UpdateDomainLayoutCommand = async (input, context) => {
|
|
1035
|
+
const b = rb(input, context);
|
|
1036
|
+
const headers = {
|
|
1037
|
+
"content-type": "application/json",
|
|
1038
|
+
};
|
|
1039
|
+
b.bp("/domains/{DomainName}/layouts/{LayoutDefinitionName}");
|
|
1040
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1041
|
+
b.p("LayoutDefinitionName", () => input.LayoutDefinitionName, "{LayoutDefinitionName}", false);
|
|
1042
|
+
let body;
|
|
1043
|
+
body = JSON.stringify(take(input, {
|
|
1044
|
+
Description: [],
|
|
1045
|
+
DisplayName: [],
|
|
1046
|
+
IsDefault: [],
|
|
1047
|
+
Layout: [],
|
|
1048
|
+
LayoutType: [],
|
|
1049
|
+
}));
|
|
1050
|
+
b.m("PUT").h(headers).b(body);
|
|
1051
|
+
return b.build();
|
|
1052
|
+
};
|
|
980
1053
|
export const se_UpdateEventTriggerCommand = async (input, context) => {
|
|
981
1054
|
const b = rb(input, context);
|
|
982
1055
|
const headers = {
|
|
@@ -1057,7 +1130,7 @@ export const de_BatchGetCalculatedAttributeForProfileCommand = async (output, co
|
|
|
1057
1130
|
});
|
|
1058
1131
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1059
1132
|
const doc = take(data, {
|
|
1060
|
-
CalculatedAttributeValues:
|
|
1133
|
+
CalculatedAttributeValues: (_) => de_CalculatedAttributeValueList(_, context),
|
|
1061
1134
|
ConditionOverrides: _json,
|
|
1062
1135
|
Errors: _json,
|
|
1063
1136
|
});
|
|
@@ -1096,8 +1169,11 @@ export const de_CreateCalculatedAttributeDefinitionCommand = async (output, cont
|
|
|
1096
1169
|
DisplayName: __expectString,
|
|
1097
1170
|
Filter: _json,
|
|
1098
1171
|
LastUpdatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1172
|
+
Readiness: _json,
|
|
1099
1173
|
Statistic: __expectString,
|
|
1174
|
+
Status: __expectString,
|
|
1100
1175
|
Tags: _json,
|
|
1176
|
+
UseHistoricalData: __expectBoolean,
|
|
1101
1177
|
});
|
|
1102
1178
|
Object.assign(contents, doc);
|
|
1103
1179
|
return contents;
|
|
@@ -1124,6 +1200,29 @@ export const de_CreateDomainCommand = async (output, context) => {
|
|
|
1124
1200
|
Object.assign(contents, doc);
|
|
1125
1201
|
return contents;
|
|
1126
1202
|
};
|
|
1203
|
+
export const de_CreateDomainLayoutCommand = async (output, context) => {
|
|
1204
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1205
|
+
return de_CommandError(output, context);
|
|
1206
|
+
}
|
|
1207
|
+
const contents = map({
|
|
1208
|
+
$metadata: deserializeMetadata(output),
|
|
1209
|
+
});
|
|
1210
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1211
|
+
const doc = take(data, {
|
|
1212
|
+
CreatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1213
|
+
Description: __expectString,
|
|
1214
|
+
DisplayName: __expectString,
|
|
1215
|
+
IsDefault: __expectBoolean,
|
|
1216
|
+
LastUpdatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1217
|
+
Layout: __expectString,
|
|
1218
|
+
LayoutDefinitionName: __expectString,
|
|
1219
|
+
LayoutType: __expectString,
|
|
1220
|
+
Tags: _json,
|
|
1221
|
+
Version: __expectString,
|
|
1222
|
+
});
|
|
1223
|
+
Object.assign(contents, doc);
|
|
1224
|
+
return contents;
|
|
1225
|
+
};
|
|
1127
1226
|
export const de_CreateEventStreamCommand = async (output, context) => {
|
|
1128
1227
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1129
1228
|
return de_CommandError(output, context);
|
|
@@ -1265,6 +1364,20 @@ export const de_DeleteDomainCommand = async (output, context) => {
|
|
|
1265
1364
|
Object.assign(contents, doc);
|
|
1266
1365
|
return contents;
|
|
1267
1366
|
};
|
|
1367
|
+
export const de_DeleteDomainLayoutCommand = async (output, context) => {
|
|
1368
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1369
|
+
return de_CommandError(output, context);
|
|
1370
|
+
}
|
|
1371
|
+
const contents = map({
|
|
1372
|
+
$metadata: deserializeMetadata(output),
|
|
1373
|
+
});
|
|
1374
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1375
|
+
const doc = take(data, {
|
|
1376
|
+
Message: __expectString,
|
|
1377
|
+
});
|
|
1378
|
+
Object.assign(contents, doc);
|
|
1379
|
+
return contents;
|
|
1380
|
+
};
|
|
1268
1381
|
export const de_DeleteEventStreamCommand = async (output, context) => {
|
|
1269
1382
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1270
1383
|
return de_CommandError(output, context);
|
|
@@ -1431,8 +1544,11 @@ export const de_GetCalculatedAttributeDefinitionCommand = async (output, context
|
|
|
1431
1544
|
DisplayName: __expectString,
|
|
1432
1545
|
Filter: _json,
|
|
1433
1546
|
LastUpdatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1547
|
+
Readiness: _json,
|
|
1434
1548
|
Statistic: __expectString,
|
|
1549
|
+
Status: __expectString,
|
|
1435
1550
|
Tags: _json,
|
|
1551
|
+
UseHistoricalData: __expectBoolean,
|
|
1436
1552
|
});
|
|
1437
1553
|
Object.assign(contents, doc);
|
|
1438
1554
|
return contents;
|
|
@@ -1449,6 +1565,7 @@ export const de_GetCalculatedAttributeForProfileCommand = async (output, context
|
|
|
1449
1565
|
CalculatedAttributeName: __expectString,
|
|
1450
1566
|
DisplayName: __expectString,
|
|
1451
1567
|
IsDataPartial: __expectString,
|
|
1568
|
+
LastObjectTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1452
1569
|
Value: __expectString,
|
|
1453
1570
|
});
|
|
1454
1571
|
Object.assign(contents, doc);
|
|
@@ -1477,6 +1594,29 @@ export const de_GetDomainCommand = async (output, context) => {
|
|
|
1477
1594
|
Object.assign(contents, doc);
|
|
1478
1595
|
return contents;
|
|
1479
1596
|
};
|
|
1597
|
+
export const de_GetDomainLayoutCommand = async (output, context) => {
|
|
1598
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1599
|
+
return de_CommandError(output, context);
|
|
1600
|
+
}
|
|
1601
|
+
const contents = map({
|
|
1602
|
+
$metadata: deserializeMetadata(output),
|
|
1603
|
+
});
|
|
1604
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1605
|
+
const doc = take(data, {
|
|
1606
|
+
CreatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1607
|
+
Description: __expectString,
|
|
1608
|
+
DisplayName: __expectString,
|
|
1609
|
+
IsDefault: __expectBoolean,
|
|
1610
|
+
LastUpdatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1611
|
+
Layout: __expectString,
|
|
1612
|
+
LayoutDefinitionName: __expectString,
|
|
1613
|
+
LayoutType: __expectString,
|
|
1614
|
+
Tags: _json,
|
|
1615
|
+
Version: __expectString,
|
|
1616
|
+
});
|
|
1617
|
+
Object.assign(contents, doc);
|
|
1618
|
+
return contents;
|
|
1619
|
+
};
|
|
1480
1620
|
export const de_GetEventStreamCommand = async (output, context) => {
|
|
1481
1621
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1482
1622
|
return de_CommandError(output, context);
|
|
@@ -1804,7 +1944,22 @@ export const de_ListCalculatedAttributesForProfileCommand = async (output, conte
|
|
|
1804
1944
|
});
|
|
1805
1945
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1806
1946
|
const doc = take(data, {
|
|
1807
|
-
Items:
|
|
1947
|
+
Items: (_) => de_CalculatedAttributesForProfileList(_, context),
|
|
1948
|
+
NextToken: __expectString,
|
|
1949
|
+
});
|
|
1950
|
+
Object.assign(contents, doc);
|
|
1951
|
+
return contents;
|
|
1952
|
+
};
|
|
1953
|
+
export const de_ListDomainLayoutsCommand = async (output, context) => {
|
|
1954
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1955
|
+
return de_CommandError(output, context);
|
|
1956
|
+
}
|
|
1957
|
+
const contents = map({
|
|
1958
|
+
$metadata: deserializeMetadata(output),
|
|
1959
|
+
});
|
|
1960
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1961
|
+
const doc = take(data, {
|
|
1962
|
+
Items: (_) => de_LayoutList(_, context),
|
|
1808
1963
|
NextToken: __expectString,
|
|
1809
1964
|
});
|
|
1810
1965
|
Object.assign(contents, doc);
|
|
@@ -2153,8 +2308,11 @@ export const de_UpdateCalculatedAttributeDefinitionCommand = async (output, cont
|
|
|
2153
2308
|
Description: __expectString,
|
|
2154
2309
|
DisplayName: __expectString,
|
|
2155
2310
|
LastUpdatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2311
|
+
Readiness: _json,
|
|
2156
2312
|
Statistic: __expectString,
|
|
2313
|
+
Status: __expectString,
|
|
2157
2314
|
Tags: _json,
|
|
2315
|
+
UseHistoricalData: __expectBoolean,
|
|
2158
2316
|
});
|
|
2159
2317
|
Object.assign(contents, doc);
|
|
2160
2318
|
return contents;
|
|
@@ -2181,6 +2339,29 @@ export const de_UpdateDomainCommand = async (output, context) => {
|
|
|
2181
2339
|
Object.assign(contents, doc);
|
|
2182
2340
|
return contents;
|
|
2183
2341
|
};
|
|
2342
|
+
export const de_UpdateDomainLayoutCommand = async (output, context) => {
|
|
2343
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2344
|
+
return de_CommandError(output, context);
|
|
2345
|
+
}
|
|
2346
|
+
const contents = map({
|
|
2347
|
+
$metadata: deserializeMetadata(output),
|
|
2348
|
+
});
|
|
2349
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2350
|
+
const doc = take(data, {
|
|
2351
|
+
CreatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2352
|
+
Description: __expectString,
|
|
2353
|
+
DisplayName: __expectString,
|
|
2354
|
+
IsDefault: __expectBoolean,
|
|
2355
|
+
LastUpdatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2356
|
+
Layout: __expectString,
|
|
2357
|
+
LayoutDefinitionName: __expectString,
|
|
2358
|
+
LayoutType: __expectString,
|
|
2359
|
+
Tags: _json,
|
|
2360
|
+
Version: __expectString,
|
|
2361
|
+
});
|
|
2362
|
+
Object.assign(contents, doc);
|
|
2363
|
+
return contents;
|
|
2364
|
+
};
|
|
2184
2365
|
export const de_UpdateEventTriggerCommand = async (output, context) => {
|
|
2185
2366
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2186
2367
|
return de_CommandError(output, context);
|
|
@@ -2574,6 +2755,32 @@ const de_CalculatedAttributeDimension = (output, context) => {
|
|
|
2574
2755
|
Values: [, _json, `Values`],
|
|
2575
2756
|
});
|
|
2576
2757
|
};
|
|
2758
|
+
const de_CalculatedAttributesForProfileList = (output, context) => {
|
|
2759
|
+
const retVal = (output || [])
|
|
2760
|
+
.filter((e) => e != null)
|
|
2761
|
+
.map((entry) => {
|
|
2762
|
+
return de_ListCalculatedAttributeForProfileItem(entry, context);
|
|
2763
|
+
});
|
|
2764
|
+
return retVal;
|
|
2765
|
+
};
|
|
2766
|
+
const de_CalculatedAttributeValue = (output, context) => {
|
|
2767
|
+
return take(output, {
|
|
2768
|
+
CalculatedAttributeName: __expectString,
|
|
2769
|
+
DisplayName: __expectString,
|
|
2770
|
+
IsDataPartial: __expectString,
|
|
2771
|
+
LastObjectTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2772
|
+
ProfileId: __expectString,
|
|
2773
|
+
Value: __expectString,
|
|
2774
|
+
});
|
|
2775
|
+
};
|
|
2776
|
+
const de_CalculatedAttributeValueList = (output, context) => {
|
|
2777
|
+
const retVal = (output || [])
|
|
2778
|
+
.filter((e) => e != null)
|
|
2779
|
+
.map((entry) => {
|
|
2780
|
+
return de_CalculatedAttributeValue(entry, context);
|
|
2781
|
+
});
|
|
2782
|
+
return retVal;
|
|
2783
|
+
};
|
|
2577
2784
|
const de_CalculatedCustomAttributes = (output, context) => {
|
|
2578
2785
|
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
2579
2786
|
if (value === null) {
|
|
@@ -2729,6 +2936,26 @@ const de_IntegrationList = (output, context) => {
|
|
|
2729
2936
|
});
|
|
2730
2937
|
return retVal;
|
|
2731
2938
|
};
|
|
2939
|
+
const de_LayoutItem = (output, context) => {
|
|
2940
|
+
return take(output, {
|
|
2941
|
+
CreatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2942
|
+
Description: __expectString,
|
|
2943
|
+
DisplayName: __expectString,
|
|
2944
|
+
IsDefault: __expectBoolean,
|
|
2945
|
+
LastUpdatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2946
|
+
LayoutDefinitionName: __expectString,
|
|
2947
|
+
LayoutType: __expectString,
|
|
2948
|
+
Tags: _json,
|
|
2949
|
+
});
|
|
2950
|
+
};
|
|
2951
|
+
const de_LayoutList = (output, context) => {
|
|
2952
|
+
const retVal = (output || [])
|
|
2953
|
+
.filter((e) => e != null)
|
|
2954
|
+
.map((entry) => {
|
|
2955
|
+
return de_LayoutItem(entry, context);
|
|
2956
|
+
});
|
|
2957
|
+
return retVal;
|
|
2958
|
+
};
|
|
2732
2959
|
const de_ListCalculatedAttributeDefinitionItem = (output, context) => {
|
|
2733
2960
|
return take(output, {
|
|
2734
2961
|
CalculatedAttributeName: __expectString,
|
|
@@ -2736,7 +2963,18 @@ const de_ListCalculatedAttributeDefinitionItem = (output, context) => {
|
|
|
2736
2963
|
Description: __expectString,
|
|
2737
2964
|
DisplayName: __expectString,
|
|
2738
2965
|
LastUpdatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2966
|
+
Status: __expectString,
|
|
2739
2967
|
Tags: _json,
|
|
2968
|
+
UseHistoricalData: __expectBoolean,
|
|
2969
|
+
});
|
|
2970
|
+
};
|
|
2971
|
+
const de_ListCalculatedAttributeForProfileItem = (output, context) => {
|
|
2972
|
+
return take(output, {
|
|
2973
|
+
CalculatedAttributeName: __expectString,
|
|
2974
|
+
DisplayName: __expectString,
|
|
2975
|
+
IsDataPartial: __expectString,
|
|
2976
|
+
LastObjectTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2977
|
+
Value: __expectString,
|
|
2740
2978
|
});
|
|
2741
2979
|
};
|
|
2742
2980
|
const de_ListDomainItem = (output, context) => {
|
|
@@ -4,6 +4,7 @@ import { BatchGetCalculatedAttributeForProfileCommandInput, BatchGetCalculatedAt
|
|
|
4
4
|
import { BatchGetProfileCommandInput, BatchGetProfileCommandOutput } from "./commands/BatchGetProfileCommand";
|
|
5
5
|
import { CreateCalculatedAttributeDefinitionCommandInput, CreateCalculatedAttributeDefinitionCommandOutput } from "./commands/CreateCalculatedAttributeDefinitionCommand";
|
|
6
6
|
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
|
|
7
|
+
import { CreateDomainLayoutCommandInput, CreateDomainLayoutCommandOutput } from "./commands/CreateDomainLayoutCommand";
|
|
7
8
|
import { CreateEventStreamCommandInput, CreateEventStreamCommandOutput } from "./commands/CreateEventStreamCommand";
|
|
8
9
|
import { CreateEventTriggerCommandInput, CreateEventTriggerCommandOutput } from "./commands/CreateEventTriggerCommand";
|
|
9
10
|
import { CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput } from "./commands/CreateIntegrationWorkflowCommand";
|
|
@@ -13,6 +14,7 @@ import { CreateSegmentEstimateCommandInput, CreateSegmentEstimateCommandOutput }
|
|
|
13
14
|
import { CreateSegmentSnapshotCommandInput, CreateSegmentSnapshotCommandOutput } from "./commands/CreateSegmentSnapshotCommand";
|
|
14
15
|
import { DeleteCalculatedAttributeDefinitionCommandInput, DeleteCalculatedAttributeDefinitionCommandOutput } from "./commands/DeleteCalculatedAttributeDefinitionCommand";
|
|
15
16
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
17
|
+
import { DeleteDomainLayoutCommandInput, DeleteDomainLayoutCommandOutput } from "./commands/DeleteDomainLayoutCommand";
|
|
16
18
|
import { DeleteEventStreamCommandInput, DeleteEventStreamCommandOutput } from "./commands/DeleteEventStreamCommand";
|
|
17
19
|
import { DeleteEventTriggerCommandInput, DeleteEventTriggerCommandOutput } from "./commands/DeleteEventTriggerCommand";
|
|
18
20
|
import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "./commands/DeleteIntegrationCommand";
|
|
@@ -27,6 +29,7 @@ import { GetAutoMergingPreviewCommandInput, GetAutoMergingPreviewCommandOutput }
|
|
|
27
29
|
import { GetCalculatedAttributeDefinitionCommandInput, GetCalculatedAttributeDefinitionCommandOutput } from "./commands/GetCalculatedAttributeDefinitionCommand";
|
|
28
30
|
import { GetCalculatedAttributeForProfileCommandInput, GetCalculatedAttributeForProfileCommandOutput } from "./commands/GetCalculatedAttributeForProfileCommand";
|
|
29
31
|
import { GetDomainCommandInput, GetDomainCommandOutput } from "./commands/GetDomainCommand";
|
|
32
|
+
import { GetDomainLayoutCommandInput, GetDomainLayoutCommandOutput } from "./commands/GetDomainLayoutCommand";
|
|
30
33
|
import { GetEventStreamCommandInput, GetEventStreamCommandOutput } from "./commands/GetEventStreamCommand";
|
|
31
34
|
import { GetEventTriggerCommandInput, GetEventTriggerCommandOutput } from "./commands/GetEventTriggerCommand";
|
|
32
35
|
import { GetIdentityResolutionJobCommandInput, GetIdentityResolutionJobCommandOutput } from "./commands/GetIdentityResolutionJobCommand";
|
|
@@ -44,6 +47,7 @@ import { GetWorkflowStepsCommandInput, GetWorkflowStepsCommandOutput } from "./c
|
|
|
44
47
|
import { ListAccountIntegrationsCommandInput, ListAccountIntegrationsCommandOutput } from "./commands/ListAccountIntegrationsCommand";
|
|
45
48
|
import { ListCalculatedAttributeDefinitionsCommandInput, ListCalculatedAttributeDefinitionsCommandOutput } from "./commands/ListCalculatedAttributeDefinitionsCommand";
|
|
46
49
|
import { ListCalculatedAttributesForProfileCommandInput, ListCalculatedAttributesForProfileCommandOutput } from "./commands/ListCalculatedAttributesForProfileCommand";
|
|
50
|
+
import { ListDomainLayoutsCommandInput, ListDomainLayoutsCommandOutput } from "./commands/ListDomainLayoutsCommand";
|
|
47
51
|
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
|
|
48
52
|
import { ListEventStreamsCommandInput, ListEventStreamsCommandOutput } from "./commands/ListEventStreamsCommand";
|
|
49
53
|
import { ListEventTriggersCommandInput, ListEventTriggersCommandOutput } from "./commands/ListEventTriggersCommand";
|
|
@@ -67,6 +71,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
67
71
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
68
72
|
import { UpdateCalculatedAttributeDefinitionCommandInput, UpdateCalculatedAttributeDefinitionCommandOutput } from "./commands/UpdateCalculatedAttributeDefinitionCommand";
|
|
69
73
|
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/UpdateDomainCommand";
|
|
74
|
+
import { UpdateDomainLayoutCommandInput, UpdateDomainLayoutCommandOutput } from "./commands/UpdateDomainLayoutCommand";
|
|
70
75
|
import { UpdateEventTriggerCommandInput, UpdateEventTriggerCommandOutput } from "./commands/UpdateEventTriggerCommand";
|
|
71
76
|
import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "./commands/UpdateProfileCommand";
|
|
72
77
|
import { CustomerProfilesClient } from "./CustomerProfilesClient";
|
|
@@ -101,6 +106,12 @@ export interface CustomerProfiles {
|
|
|
101
106
|
createDomain(args: CreateDomainCommandInput, options?: __HttpHandlerOptions): Promise<CreateDomainCommandOutput>;
|
|
102
107
|
createDomain(args: CreateDomainCommandInput, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
103
108
|
createDomain(args: CreateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
109
|
+
/**
|
|
110
|
+
* @see {@link CreateDomainLayoutCommand}
|
|
111
|
+
*/
|
|
112
|
+
createDomainLayout(args: CreateDomainLayoutCommandInput, options?: __HttpHandlerOptions): Promise<CreateDomainLayoutCommandOutput>;
|
|
113
|
+
createDomainLayout(args: CreateDomainLayoutCommandInput, cb: (err: any, data?: CreateDomainLayoutCommandOutput) => void): void;
|
|
114
|
+
createDomainLayout(args: CreateDomainLayoutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainLayoutCommandOutput) => void): void;
|
|
104
115
|
/**
|
|
105
116
|
* @see {@link CreateEventStreamCommand}
|
|
106
117
|
*/
|
|
@@ -155,6 +166,12 @@ export interface CustomerProfiles {
|
|
|
155
166
|
deleteDomain(args: DeleteDomainCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainCommandOutput>;
|
|
156
167
|
deleteDomain(args: DeleteDomainCommandInput, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
157
168
|
deleteDomain(args: DeleteDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
169
|
+
/**
|
|
170
|
+
* @see {@link DeleteDomainLayoutCommand}
|
|
171
|
+
*/
|
|
172
|
+
deleteDomainLayout(args: DeleteDomainLayoutCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainLayoutCommandOutput>;
|
|
173
|
+
deleteDomainLayout(args: DeleteDomainLayoutCommandInput, cb: (err: any, data?: DeleteDomainLayoutCommandOutput) => void): void;
|
|
174
|
+
deleteDomainLayout(args: DeleteDomainLayoutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainLayoutCommandOutput) => void): void;
|
|
158
175
|
/**
|
|
159
176
|
* @see {@link DeleteEventStreamCommand}
|
|
160
177
|
*/
|
|
@@ -239,6 +256,12 @@ export interface CustomerProfiles {
|
|
|
239
256
|
getDomain(args: GetDomainCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainCommandOutput>;
|
|
240
257
|
getDomain(args: GetDomainCommandInput, cb: (err: any, data?: GetDomainCommandOutput) => void): void;
|
|
241
258
|
getDomain(args: GetDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainCommandOutput) => void): void;
|
|
259
|
+
/**
|
|
260
|
+
* @see {@link GetDomainLayoutCommand}
|
|
261
|
+
*/
|
|
262
|
+
getDomainLayout(args: GetDomainLayoutCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainLayoutCommandOutput>;
|
|
263
|
+
getDomainLayout(args: GetDomainLayoutCommandInput, cb: (err: any, data?: GetDomainLayoutCommandOutput) => void): void;
|
|
264
|
+
getDomainLayout(args: GetDomainLayoutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainLayoutCommandOutput) => void): void;
|
|
242
265
|
/**
|
|
243
266
|
* @see {@link GetEventStreamCommand}
|
|
244
267
|
*/
|
|
@@ -341,6 +364,12 @@ export interface CustomerProfiles {
|
|
|
341
364
|
listCalculatedAttributesForProfile(args: ListCalculatedAttributesForProfileCommandInput, options?: __HttpHandlerOptions): Promise<ListCalculatedAttributesForProfileCommandOutput>;
|
|
342
365
|
listCalculatedAttributesForProfile(args: ListCalculatedAttributesForProfileCommandInput, cb: (err: any, data?: ListCalculatedAttributesForProfileCommandOutput) => void): void;
|
|
343
366
|
listCalculatedAttributesForProfile(args: ListCalculatedAttributesForProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCalculatedAttributesForProfileCommandOutput) => void): void;
|
|
367
|
+
/**
|
|
368
|
+
* @see {@link ListDomainLayoutsCommand}
|
|
369
|
+
*/
|
|
370
|
+
listDomainLayouts(args: ListDomainLayoutsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainLayoutsCommandOutput>;
|
|
371
|
+
listDomainLayouts(args: ListDomainLayoutsCommandInput, cb: (err: any, data?: ListDomainLayoutsCommandOutput) => void): void;
|
|
372
|
+
listDomainLayouts(args: ListDomainLayoutsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainLayoutsCommandOutput) => void): void;
|
|
344
373
|
/**
|
|
345
374
|
* @see {@link ListDomainsCommand}
|
|
346
375
|
*/
|
|
@@ -481,6 +510,12 @@ export interface CustomerProfiles {
|
|
|
481
510
|
updateDomain(args: UpdateDomainCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDomainCommandOutput>;
|
|
482
511
|
updateDomain(args: UpdateDomainCommandInput, cb: (err: any, data?: UpdateDomainCommandOutput) => void): void;
|
|
483
512
|
updateDomain(args: UpdateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainCommandOutput) => void): void;
|
|
513
|
+
/**
|
|
514
|
+
* @see {@link UpdateDomainLayoutCommand}
|
|
515
|
+
*/
|
|
516
|
+
updateDomainLayout(args: UpdateDomainLayoutCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDomainLayoutCommandOutput>;
|
|
517
|
+
updateDomainLayout(args: UpdateDomainLayoutCommandInput, cb: (err: any, data?: UpdateDomainLayoutCommandOutput) => void): void;
|
|
518
|
+
updateDomainLayout(args: UpdateDomainLayoutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainLayoutCommandOutput) => void): void;
|
|
484
519
|
/**
|
|
485
520
|
* @see {@link UpdateEventTriggerCommand}
|
|
486
521
|
*/
|
|
@@ -12,6 +12,7 @@ import { BatchGetCalculatedAttributeForProfileCommandInput, BatchGetCalculatedAt
|
|
|
12
12
|
import { BatchGetProfileCommandInput, BatchGetProfileCommandOutput } from "./commands/BatchGetProfileCommand";
|
|
13
13
|
import { CreateCalculatedAttributeDefinitionCommandInput, CreateCalculatedAttributeDefinitionCommandOutput } from "./commands/CreateCalculatedAttributeDefinitionCommand";
|
|
14
14
|
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
|
|
15
|
+
import { CreateDomainLayoutCommandInput, CreateDomainLayoutCommandOutput } from "./commands/CreateDomainLayoutCommand";
|
|
15
16
|
import { CreateEventStreamCommandInput, CreateEventStreamCommandOutput } from "./commands/CreateEventStreamCommand";
|
|
16
17
|
import { CreateEventTriggerCommandInput, CreateEventTriggerCommandOutput } from "./commands/CreateEventTriggerCommand";
|
|
17
18
|
import { CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput } from "./commands/CreateIntegrationWorkflowCommand";
|
|
@@ -21,6 +22,7 @@ import { CreateSegmentEstimateCommandInput, CreateSegmentEstimateCommandOutput }
|
|
|
21
22
|
import { CreateSegmentSnapshotCommandInput, CreateSegmentSnapshotCommandOutput } from "./commands/CreateSegmentSnapshotCommand";
|
|
22
23
|
import { DeleteCalculatedAttributeDefinitionCommandInput, DeleteCalculatedAttributeDefinitionCommandOutput } from "./commands/DeleteCalculatedAttributeDefinitionCommand";
|
|
23
24
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
25
|
+
import { DeleteDomainLayoutCommandInput, DeleteDomainLayoutCommandOutput } from "./commands/DeleteDomainLayoutCommand";
|
|
24
26
|
import { DeleteEventStreamCommandInput, DeleteEventStreamCommandOutput } from "./commands/DeleteEventStreamCommand";
|
|
25
27
|
import { DeleteEventTriggerCommandInput, DeleteEventTriggerCommandOutput } from "./commands/DeleteEventTriggerCommand";
|
|
26
28
|
import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "./commands/DeleteIntegrationCommand";
|
|
@@ -35,6 +37,7 @@ import { GetAutoMergingPreviewCommandInput, GetAutoMergingPreviewCommandOutput }
|
|
|
35
37
|
import { GetCalculatedAttributeDefinitionCommandInput, GetCalculatedAttributeDefinitionCommandOutput } from "./commands/GetCalculatedAttributeDefinitionCommand";
|
|
36
38
|
import { GetCalculatedAttributeForProfileCommandInput, GetCalculatedAttributeForProfileCommandOutput } from "./commands/GetCalculatedAttributeForProfileCommand";
|
|
37
39
|
import { GetDomainCommandInput, GetDomainCommandOutput } from "./commands/GetDomainCommand";
|
|
40
|
+
import { GetDomainLayoutCommandInput, GetDomainLayoutCommandOutput } from "./commands/GetDomainLayoutCommand";
|
|
38
41
|
import { GetEventStreamCommandInput, GetEventStreamCommandOutput } from "./commands/GetEventStreamCommand";
|
|
39
42
|
import { GetEventTriggerCommandInput, GetEventTriggerCommandOutput } from "./commands/GetEventTriggerCommand";
|
|
40
43
|
import { GetIdentityResolutionJobCommandInput, GetIdentityResolutionJobCommandOutput } from "./commands/GetIdentityResolutionJobCommand";
|
|
@@ -52,6 +55,7 @@ import { GetWorkflowStepsCommandInput, GetWorkflowStepsCommandOutput } from "./c
|
|
|
52
55
|
import { ListAccountIntegrationsCommandInput, ListAccountIntegrationsCommandOutput } from "./commands/ListAccountIntegrationsCommand";
|
|
53
56
|
import { ListCalculatedAttributeDefinitionsCommandInput, ListCalculatedAttributeDefinitionsCommandOutput } from "./commands/ListCalculatedAttributeDefinitionsCommand";
|
|
54
57
|
import { ListCalculatedAttributesForProfileCommandInput, ListCalculatedAttributesForProfileCommandOutput } from "./commands/ListCalculatedAttributesForProfileCommand";
|
|
58
|
+
import { ListDomainLayoutsCommandInput, ListDomainLayoutsCommandOutput } from "./commands/ListDomainLayoutsCommand";
|
|
55
59
|
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
|
|
56
60
|
import { ListEventStreamsCommandInput, ListEventStreamsCommandOutput } from "./commands/ListEventStreamsCommand";
|
|
57
61
|
import { ListEventTriggersCommandInput, ListEventTriggersCommandOutput } from "./commands/ListEventTriggersCommand";
|
|
@@ -75,6 +79,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
75
79
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
76
80
|
import { UpdateCalculatedAttributeDefinitionCommandInput, UpdateCalculatedAttributeDefinitionCommandOutput } from "./commands/UpdateCalculatedAttributeDefinitionCommand";
|
|
77
81
|
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/UpdateDomainCommand";
|
|
82
|
+
import { UpdateDomainLayoutCommandInput, UpdateDomainLayoutCommandOutput } from "./commands/UpdateDomainLayoutCommand";
|
|
78
83
|
import { UpdateEventTriggerCommandInput, UpdateEventTriggerCommandOutput } from "./commands/UpdateEventTriggerCommand";
|
|
79
84
|
import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "./commands/UpdateProfileCommand";
|
|
80
85
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
@@ -83,11 +88,11 @@ export { __Client };
|
|
|
83
88
|
/**
|
|
84
89
|
* @public
|
|
85
90
|
*/
|
|
86
|
-
export type ServiceInputTypes = AddProfileKeyCommandInput | BatchGetCalculatedAttributeForProfileCommandInput | BatchGetProfileCommandInput | CreateCalculatedAttributeDefinitionCommandInput | CreateDomainCommandInput | CreateEventStreamCommandInput | CreateEventTriggerCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | CreateSegmentDefinitionCommandInput | CreateSegmentEstimateCommandInput | CreateSegmentSnapshotCommandInput | DeleteCalculatedAttributeDefinitionCommandInput | DeleteDomainCommandInput | DeleteEventStreamCommandInput | DeleteEventTriggerCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteSegmentDefinitionCommandInput | DeleteWorkflowCommandInput | DetectProfileObjectTypeCommandInput | GetAutoMergingPreviewCommandInput | GetCalculatedAttributeDefinitionCommandInput | GetCalculatedAttributeForProfileCommandInput | GetDomainCommandInput | GetEventStreamCommandInput | GetEventTriggerCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetSegmentDefinitionCommandInput | GetSegmentEstimateCommandInput | GetSegmentMembershipCommandInput | GetSegmentSnapshotCommandInput | GetSimilarProfilesCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListCalculatedAttributeDefinitionsCommandInput | ListCalculatedAttributesForProfileCommandInput | ListDomainsCommandInput | ListEventStreamsCommandInput | ListEventTriggersCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListObjectTypeAttributesCommandInput | ListProfileAttributeValuesCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListRuleBasedMatchesCommandInput | ListSegmentDefinitionsCommandInput | ListTagsForResourceCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCalculatedAttributeDefinitionCommandInput | UpdateDomainCommandInput | UpdateEventTriggerCommandInput | UpdateProfileCommandInput;
|
|
91
|
+
export type ServiceInputTypes = AddProfileKeyCommandInput | BatchGetCalculatedAttributeForProfileCommandInput | BatchGetProfileCommandInput | CreateCalculatedAttributeDefinitionCommandInput | CreateDomainCommandInput | CreateDomainLayoutCommandInput | CreateEventStreamCommandInput | CreateEventTriggerCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | CreateSegmentDefinitionCommandInput | CreateSegmentEstimateCommandInput | CreateSegmentSnapshotCommandInput | DeleteCalculatedAttributeDefinitionCommandInput | DeleteDomainCommandInput | DeleteDomainLayoutCommandInput | DeleteEventStreamCommandInput | DeleteEventTriggerCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteSegmentDefinitionCommandInput | DeleteWorkflowCommandInput | DetectProfileObjectTypeCommandInput | GetAutoMergingPreviewCommandInput | GetCalculatedAttributeDefinitionCommandInput | GetCalculatedAttributeForProfileCommandInput | GetDomainCommandInput | GetDomainLayoutCommandInput | GetEventStreamCommandInput | GetEventTriggerCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetSegmentDefinitionCommandInput | GetSegmentEstimateCommandInput | GetSegmentMembershipCommandInput | GetSegmentSnapshotCommandInput | GetSimilarProfilesCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListCalculatedAttributeDefinitionsCommandInput | ListCalculatedAttributesForProfileCommandInput | ListDomainLayoutsCommandInput | ListDomainsCommandInput | ListEventStreamsCommandInput | ListEventTriggersCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListObjectTypeAttributesCommandInput | ListProfileAttributeValuesCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListRuleBasedMatchesCommandInput | ListSegmentDefinitionsCommandInput | ListTagsForResourceCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCalculatedAttributeDefinitionCommandInput | UpdateDomainCommandInput | UpdateDomainLayoutCommandInput | UpdateEventTriggerCommandInput | UpdateProfileCommandInput;
|
|
87
92
|
/**
|
|
88
93
|
* @public
|
|
89
94
|
*/
|
|
90
|
-
export type ServiceOutputTypes = AddProfileKeyCommandOutput | BatchGetCalculatedAttributeForProfileCommandOutput | BatchGetProfileCommandOutput | CreateCalculatedAttributeDefinitionCommandOutput | CreateDomainCommandOutput | CreateEventStreamCommandOutput | CreateEventTriggerCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | CreateSegmentDefinitionCommandOutput | CreateSegmentEstimateCommandOutput | CreateSegmentSnapshotCommandOutput | DeleteCalculatedAttributeDefinitionCommandOutput | DeleteDomainCommandOutput | DeleteEventStreamCommandOutput | DeleteEventTriggerCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteSegmentDefinitionCommandOutput | DeleteWorkflowCommandOutput | DetectProfileObjectTypeCommandOutput | GetAutoMergingPreviewCommandOutput | GetCalculatedAttributeDefinitionCommandOutput | GetCalculatedAttributeForProfileCommandOutput | GetDomainCommandOutput | GetEventStreamCommandOutput | GetEventTriggerCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetSegmentDefinitionCommandOutput | GetSegmentEstimateCommandOutput | GetSegmentMembershipCommandOutput | GetSegmentSnapshotCommandOutput | GetSimilarProfilesCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListCalculatedAttributeDefinitionsCommandOutput | ListCalculatedAttributesForProfileCommandOutput | ListDomainsCommandOutput | ListEventStreamsCommandOutput | ListEventTriggersCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListObjectTypeAttributesCommandOutput | ListProfileAttributeValuesCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListRuleBasedMatchesCommandOutput | ListSegmentDefinitionsCommandOutput | ListTagsForResourceCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCalculatedAttributeDefinitionCommandOutput | UpdateDomainCommandOutput | UpdateEventTriggerCommandOutput | UpdateProfileCommandOutput;
|
|
95
|
+
export type ServiceOutputTypes = AddProfileKeyCommandOutput | BatchGetCalculatedAttributeForProfileCommandOutput | BatchGetProfileCommandOutput | CreateCalculatedAttributeDefinitionCommandOutput | CreateDomainCommandOutput | CreateDomainLayoutCommandOutput | CreateEventStreamCommandOutput | CreateEventTriggerCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | CreateSegmentDefinitionCommandOutput | CreateSegmentEstimateCommandOutput | CreateSegmentSnapshotCommandOutput | DeleteCalculatedAttributeDefinitionCommandOutput | DeleteDomainCommandOutput | DeleteDomainLayoutCommandOutput | DeleteEventStreamCommandOutput | DeleteEventTriggerCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteSegmentDefinitionCommandOutput | DeleteWorkflowCommandOutput | DetectProfileObjectTypeCommandOutput | GetAutoMergingPreviewCommandOutput | GetCalculatedAttributeDefinitionCommandOutput | GetCalculatedAttributeForProfileCommandOutput | GetDomainCommandOutput | GetDomainLayoutCommandOutput | GetEventStreamCommandOutput | GetEventTriggerCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetSegmentDefinitionCommandOutput | GetSegmentEstimateCommandOutput | GetSegmentMembershipCommandOutput | GetSegmentSnapshotCommandOutput | GetSimilarProfilesCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListCalculatedAttributeDefinitionsCommandOutput | ListCalculatedAttributesForProfileCommandOutput | ListDomainLayoutsCommandOutput | ListDomainsCommandOutput | ListEventStreamsCommandOutput | ListEventTriggersCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListObjectTypeAttributesCommandOutput | ListProfileAttributeValuesCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListRuleBasedMatchesCommandOutput | ListSegmentDefinitionsCommandOutput | ListTagsForResourceCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCalculatedAttributeDefinitionCommandOutput | UpdateDomainCommandOutput | UpdateDomainLayoutCommandOutput | UpdateEventTriggerCommandOutput | UpdateProfileCommandOutput;
|
|
91
96
|
/**
|
|
92
97
|
* @public
|
|
93
98
|
*/
|
|
@@ -65,6 +65,7 @@ declare const BatchGetCalculatedAttributeForProfileCommand_base: {
|
|
|
65
65
|
* // IsDataPartial: "STRING_VALUE",
|
|
66
66
|
* // ProfileId: "STRING_VALUE",
|
|
67
67
|
* // Value: "STRING_VALUE",
|
|
68
|
+
* // LastObjectTimestamp: new Date("TIMESTAMP"),
|
|
68
69
|
* // },
|
|
69
70
|
* // ],
|
|
70
71
|
* // ConditionOverrides: { // ConditionOverrides
|
|
@@ -54,8 +54,14 @@ declare const CreateCalculatedAttributeDefinitionCommand_base: {
|
|
|
54
54
|
* },
|
|
55
55
|
* Conditions: { // Conditions
|
|
56
56
|
* Range: { // Range
|
|
57
|
-
* Value: Number("int"),
|
|
58
|
-
* Unit: "DAYS",
|
|
57
|
+
* Value: Number("int"),
|
|
58
|
+
* Unit: "DAYS",
|
|
59
|
+
* ValueRange: { // ValueRange
|
|
60
|
+
* Start: Number("int"), // required
|
|
61
|
+
* End: Number("int"), // required
|
|
62
|
+
* },
|
|
63
|
+
* TimestampSource: "STRING_VALUE",
|
|
64
|
+
* TimestampFormat: "STRING_VALUE",
|
|
59
65
|
* },
|
|
60
66
|
* ObjectCount: Number("int"),
|
|
61
67
|
* Threshold: { // Threshold
|
|
@@ -84,6 +90,7 @@ declare const CreateCalculatedAttributeDefinitionCommand_base: {
|
|
|
84
90
|
* ],
|
|
85
91
|
* },
|
|
86
92
|
* Statistic: "FIRST_OCCURRENCE" || "LAST_OCCURRENCE" || "COUNT" || "SUM" || "MINIMUM" || "MAXIMUM" || "AVERAGE" || "MAX_OCCURRENCE", // required
|
|
93
|
+
* UseHistoricalData: true || false,
|
|
87
94
|
* Tags: { // TagMap
|
|
88
95
|
* "<keys>": "STRING_VALUE",
|
|
89
96
|
* },
|
|
@@ -104,8 +111,14 @@ declare const CreateCalculatedAttributeDefinitionCommand_base: {
|
|
|
104
111
|
* // },
|
|
105
112
|
* // Conditions: { // Conditions
|
|
106
113
|
* // Range: { // Range
|
|
107
|
-
* // Value: Number("int"),
|
|
108
|
-
* // Unit: "DAYS",
|
|
114
|
+
* // Value: Number("int"),
|
|
115
|
+
* // Unit: "DAYS",
|
|
116
|
+
* // ValueRange: { // ValueRange
|
|
117
|
+
* // Start: Number("int"), // required
|
|
118
|
+
* // End: Number("int"), // required
|
|
119
|
+
* // },
|
|
120
|
+
* // TimestampSource: "STRING_VALUE",
|
|
121
|
+
* // TimestampFormat: "STRING_VALUE",
|
|
109
122
|
* // },
|
|
110
123
|
* // ObjectCount: Number("int"),
|
|
111
124
|
* // Threshold: { // Threshold
|
|
@@ -136,6 +149,12 @@ declare const CreateCalculatedAttributeDefinitionCommand_base: {
|
|
|
136
149
|
* // Statistic: "FIRST_OCCURRENCE" || "LAST_OCCURRENCE" || "COUNT" || "SUM" || "MINIMUM" || "MAXIMUM" || "AVERAGE" || "MAX_OCCURRENCE",
|
|
137
150
|
* // CreatedAt: new Date("TIMESTAMP"),
|
|
138
151
|
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
152
|
+
* // UseHistoricalData: true || false,
|
|
153
|
+
* // Status: "PREPARING" || "IN_PROGRESS" || "COMPLETED" || "FAILED",
|
|
154
|
+
* // Readiness: { // Readiness
|
|
155
|
+
* // ProgressPercentage: Number("int"),
|
|
156
|
+
* // Message: "STRING_VALUE",
|
|
157
|
+
* // },
|
|
139
158
|
* // Tags: { // TagMap
|
|
140
159
|
* // "<keys>": "STRING_VALUE",
|
|
141
160
|
* // },
|