@aws-sdk/client-customer-profiles 3.692.0 → 3.695.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 +104 -0
- package/dist-cjs/index.js +1265 -46
- package/dist-es/CustomerProfiles.js +26 -0
- package/dist-es/commands/BatchGetCalculatedAttributeForProfileCommand.js +23 -0
- package/dist-es/commands/BatchGetProfileCommand.js +23 -0
- package/dist-es/commands/CreateSegmentDefinitionCommand.js +23 -0
- package/dist-es/commands/CreateSegmentEstimateCommand.js +23 -0
- package/dist-es/commands/CreateSegmentSnapshotCommand.js +22 -0
- package/dist-es/commands/DeleteSegmentDefinitionCommand.js +22 -0
- package/dist-es/commands/GetSegmentDefinitionCommand.js +23 -0
- package/dist-es/commands/GetSegmentEstimateCommand.js +22 -0
- package/dist-es/commands/GetSegmentMembershipCommand.js +23 -0
- package/dist-es/commands/GetSegmentSnapshotCommand.js +22 -0
- package/dist-es/commands/ListObjectTypeAttributesCommand.js +22 -0
- package/dist-es/commands/ListProfileAttributeValuesCommand.js +22 -0
- package/dist-es/commands/ListSegmentDefinitionsCommand.js +23 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/models_0.js +208 -34
- package/dist-es/pagination/GetSimilarProfilesPaginator.js +4 -0
- package/dist-es/pagination/ListObjectTypeAttributesPaginator.js +4 -0
- package/dist-es/pagination/ListRuleBasedMatchesPaginator.js +4 -0
- package/dist-es/pagination/ListSegmentDefinitionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +739 -2
- package/dist-types/CustomerProfiles.d.ts +91 -0
- package/dist-types/CustomerProfilesClient.d.ts +15 -2
- package/dist-types/commands/BatchGetCalculatedAttributeForProfileCommand.d.ts +119 -0
- package/dist-types/commands/BatchGetProfileCommand.d.ts +177 -0
- package/dist-types/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +40 -0
- package/dist-types/commands/CreateSegmentDefinitionCommand.d.ts +221 -0
- package/dist-types/commands/CreateSegmentEstimateCommand.d.ts +210 -0
- package/dist-types/commands/CreateSegmentSnapshotCommand.d.ts +91 -0
- package/dist-types/commands/DeleteSegmentDefinitionCommand.d.ts +87 -0
- package/dist-types/commands/DetectProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetCalculatedAttributeDefinitionCommand.d.ts +20 -0
- package/dist-types/commands/GetProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetProfileObjectTypeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +216 -0
- package/dist-types/commands/GetSegmentEstimateCommand.d.ts +92 -0
- package/dist-types/commands/GetSegmentMembershipCommand.d.ts +183 -0
- package/dist-types/commands/GetSegmentSnapshotCommand.d.ts +94 -0
- package/dist-types/commands/ListObjectTypeAttributesCommand.d.ts +95 -0
- package/dist-types/commands/ListProfileAttributeValuesCommand.d.ts +94 -0
- package/dist-types/commands/ListSegmentDefinitionsCommand.d.ts +100 -0
- package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +2277 -826
- package/dist-types/pagination/GetSimilarProfilesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListObjectTypeAttributesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRuleBasedMatchesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSegmentDefinitionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +117 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +227 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/BatchGetCalculatedAttributeForProfileCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetProfileCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateSegmentDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateSegmentEstimateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateSegmentSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteSegmentDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSegmentDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSegmentEstimateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSegmentMembershipCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSegmentSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListObjectTypeAttributesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProfileAttributeValuesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSegmentDefinitionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +503 -44
- package/dist-types/ts3.4/pagination/GetSimilarProfilesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListObjectTypeAttributesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRuleBasedMatchesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSegmentDefinitionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +156 -0
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -26,8 +26,16 @@ __export(src_exports, {
|
|
|
26
26
|
AddressFilterSensitiveLog: () => AddressFilterSensitiveLog,
|
|
27
27
|
AppflowIntegrationFilterSensitiveLog: () => AppflowIntegrationFilterSensitiveLog,
|
|
28
28
|
AttributeDetailsFilterSensitiveLog: () => AttributeDetailsFilterSensitiveLog,
|
|
29
|
+
AttributeDimensionType: () => AttributeDimensionType,
|
|
29
30
|
AttributeMatchingModel: () => AttributeMatchingModel,
|
|
30
31
|
BadRequestException: () => BadRequestException,
|
|
32
|
+
BatchGetCalculatedAttributeForProfileCommand: () => BatchGetCalculatedAttributeForProfileCommand,
|
|
33
|
+
BatchGetCalculatedAttributeForProfileRequestFilterSensitiveLog: () => BatchGetCalculatedAttributeForProfileRequestFilterSensitiveLog,
|
|
34
|
+
BatchGetCalculatedAttributeForProfileResponseFilterSensitiveLog: () => BatchGetCalculatedAttributeForProfileResponseFilterSensitiveLog,
|
|
35
|
+
BatchGetProfileCommand: () => BatchGetProfileCommand,
|
|
36
|
+
BatchGetProfileResponseFilterSensitiveLog: () => BatchGetProfileResponseFilterSensitiveLog,
|
|
37
|
+
CalculatedAttributeDimensionFilterSensitiveLog: () => CalculatedAttributeDimensionFilterSensitiveLog,
|
|
38
|
+
ConditionOverridesFilterSensitiveLog: () => ConditionOverridesFilterSensitiveLog,
|
|
31
39
|
ConditionsFilterSensitiveLog: () => ConditionsFilterSensitiveLog,
|
|
32
40
|
ConflictResolvingModel: () => ConflictResolvingModel,
|
|
33
41
|
CreateCalculatedAttributeDefinitionCommand: () => CreateCalculatedAttributeDefinitionCommand,
|
|
@@ -39,10 +47,18 @@ __export(src_exports, {
|
|
|
39
47
|
CreateIntegrationWorkflowRequestFilterSensitiveLog: () => CreateIntegrationWorkflowRequestFilterSensitiveLog,
|
|
40
48
|
CreateProfileCommand: () => CreateProfileCommand,
|
|
41
49
|
CreateProfileRequestFilterSensitiveLog: () => CreateProfileRequestFilterSensitiveLog,
|
|
50
|
+
CreateSegmentDefinitionCommand: () => CreateSegmentDefinitionCommand,
|
|
51
|
+
CreateSegmentDefinitionRequestFilterSensitiveLog: () => CreateSegmentDefinitionRequestFilterSensitiveLog,
|
|
52
|
+
CreateSegmentDefinitionResponseFilterSensitiveLog: () => CreateSegmentDefinitionResponseFilterSensitiveLog,
|
|
53
|
+
CreateSegmentEstimateCommand: () => CreateSegmentEstimateCommand,
|
|
54
|
+
CreateSegmentEstimateRequestFilterSensitiveLog: () => CreateSegmentEstimateRequestFilterSensitiveLog,
|
|
55
|
+
CreateSegmentSnapshotCommand: () => CreateSegmentSnapshotCommand,
|
|
42
56
|
CustomerProfiles: () => CustomerProfiles,
|
|
43
57
|
CustomerProfilesClient: () => CustomerProfilesClient,
|
|
44
58
|
CustomerProfilesServiceException: () => CustomerProfilesServiceException,
|
|
59
|
+
DataFormat: () => DataFormat,
|
|
45
60
|
DataPullMode: () => DataPullMode,
|
|
61
|
+
DateDimensionType: () => DateDimensionType,
|
|
46
62
|
DeleteCalculatedAttributeDefinitionCommand: () => DeleteCalculatedAttributeDefinitionCommand,
|
|
47
63
|
DeleteDomainCommand: () => DeleteDomainCommand,
|
|
48
64
|
DeleteEventStreamCommand: () => DeleteEventStreamCommand,
|
|
@@ -51,14 +67,19 @@ __export(src_exports, {
|
|
|
51
67
|
DeleteProfileKeyCommand: () => DeleteProfileKeyCommand,
|
|
52
68
|
DeleteProfileObjectCommand: () => DeleteProfileObjectCommand,
|
|
53
69
|
DeleteProfileObjectTypeCommand: () => DeleteProfileObjectTypeCommand,
|
|
70
|
+
DeleteSegmentDefinitionCommand: () => DeleteSegmentDefinitionCommand,
|
|
54
71
|
DeleteWorkflowCommand: () => DeleteWorkflowCommand,
|
|
55
72
|
DetectProfileObjectTypeCommand: () => DetectProfileObjectTypeCommand,
|
|
56
73
|
DetectProfileObjectTypeRequestFilterSensitiveLog: () => DetectProfileObjectTypeRequestFilterSensitiveLog,
|
|
57
74
|
DetectProfileObjectTypeResponseFilterSensitiveLog: () => DetectProfileObjectTypeResponseFilterSensitiveLog,
|
|
58
75
|
DetectedProfileObjectTypeFilterSensitiveLog: () => DetectedProfileObjectTypeFilterSensitiveLog,
|
|
76
|
+
Dimension: () => Dimension,
|
|
77
|
+
DimensionFilterSensitiveLog: () => DimensionFilterSensitiveLog,
|
|
78
|
+
EstimateStatus: () => EstimateStatus,
|
|
59
79
|
EventStreamDestinationStatus: () => EventStreamDestinationStatus,
|
|
60
80
|
EventStreamState: () => EventStreamState,
|
|
61
81
|
FieldContentType: () => FieldContentType,
|
|
82
|
+
FilterDimensionType: () => FilterDimensionType,
|
|
62
83
|
FlowDefinitionFilterSensitiveLog: () => FlowDefinitionFilterSensitiveLog,
|
|
63
84
|
Gender: () => Gender,
|
|
64
85
|
GetAutoMergingPreviewCommand: () => GetAutoMergingPreviewCommand,
|
|
@@ -74,10 +95,19 @@ __export(src_exports, {
|
|
|
74
95
|
GetProfileObjectTypeResponseFilterSensitiveLog: () => GetProfileObjectTypeResponseFilterSensitiveLog,
|
|
75
96
|
GetProfileObjectTypeTemplateCommand: () => GetProfileObjectTypeTemplateCommand,
|
|
76
97
|
GetProfileObjectTypeTemplateResponseFilterSensitiveLog: () => GetProfileObjectTypeTemplateResponseFilterSensitiveLog,
|
|
98
|
+
GetSegmentDefinitionCommand: () => GetSegmentDefinitionCommand,
|
|
99
|
+
GetSegmentDefinitionResponseFilterSensitiveLog: () => GetSegmentDefinitionResponseFilterSensitiveLog,
|
|
100
|
+
GetSegmentEstimateCommand: () => GetSegmentEstimateCommand,
|
|
101
|
+
GetSegmentMembershipCommand: () => GetSegmentMembershipCommand,
|
|
102
|
+
GetSegmentMembershipResponseFilterSensitiveLog: () => GetSegmentMembershipResponseFilterSensitiveLog,
|
|
103
|
+
GetSegmentSnapshotCommand: () => GetSegmentSnapshotCommand,
|
|
77
104
|
GetSimilarProfilesCommand: () => GetSimilarProfilesCommand,
|
|
78
105
|
GetWorkflowCommand: () => GetWorkflowCommand,
|
|
79
106
|
GetWorkflowStepsCommand: () => GetWorkflowStepsCommand,
|
|
107
|
+
GroupFilterSensitiveLog: () => GroupFilterSensitiveLog,
|
|
80
108
|
IdentityResolutionJobStatus: () => IdentityResolutionJobStatus,
|
|
109
|
+
Include: () => Include,
|
|
110
|
+
IncludeOptions: () => IncludeOptions,
|
|
81
111
|
IntegrationConfigFilterSensitiveLog: () => IntegrationConfigFilterSensitiveLog,
|
|
82
112
|
InternalServerException: () => InternalServerException,
|
|
83
113
|
JobScheduleDayOfTheWeek: () => JobScheduleDayOfTheWeek,
|
|
@@ -90,6 +120,8 @@ __export(src_exports, {
|
|
|
90
120
|
ListEventStreamsCommand: () => ListEventStreamsCommand,
|
|
91
121
|
ListIdentityResolutionJobsCommand: () => ListIdentityResolutionJobsCommand,
|
|
92
122
|
ListIntegrationsCommand: () => ListIntegrationsCommand,
|
|
123
|
+
ListObjectTypeAttributesCommand: () => ListObjectTypeAttributesCommand,
|
|
124
|
+
ListProfileAttributeValuesCommand: () => ListProfileAttributeValuesCommand,
|
|
93
125
|
ListProfileObjectTypeTemplatesCommand: () => ListProfileObjectTypeTemplatesCommand,
|
|
94
126
|
ListProfileObjectTypesCommand: () => ListProfileObjectTypesCommand,
|
|
95
127
|
ListProfileObjectTypesResponseFilterSensitiveLog: () => ListProfileObjectTypesResponseFilterSensitiveLog,
|
|
@@ -97,6 +129,8 @@ __export(src_exports, {
|
|
|
97
129
|
ListProfileObjectsItemFilterSensitiveLog: () => ListProfileObjectsItemFilterSensitiveLog,
|
|
98
130
|
ListProfileObjectsResponseFilterSensitiveLog: () => ListProfileObjectsResponseFilterSensitiveLog,
|
|
99
131
|
ListRuleBasedMatchesCommand: () => ListRuleBasedMatchesCommand,
|
|
132
|
+
ListSegmentDefinitionsCommand: () => ListSegmentDefinitionsCommand,
|
|
133
|
+
ListSegmentDefinitionsResponseFilterSensitiveLog: () => ListSegmentDefinitionsResponseFilterSensitiveLog,
|
|
100
134
|
ListTagsForResourceCommand: () => ListTagsForResourceCommand,
|
|
101
135
|
ListWorkflowsCommand: () => ListWorkflowsCommand,
|
|
102
136
|
LogicalOperator: () => LogicalOperator,
|
|
@@ -106,7 +140,9 @@ __export(src_exports, {
|
|
|
106
140
|
Operator: () => Operator,
|
|
107
141
|
OperatorPropertiesKeys: () => OperatorPropertiesKeys,
|
|
108
142
|
PartyType: () => PartyType,
|
|
143
|
+
ProfileAttributesFilterSensitiveLog: () => ProfileAttributesFilterSensitiveLog,
|
|
109
144
|
ProfileFilterSensitiveLog: () => ProfileFilterSensitiveLog,
|
|
145
|
+
ProfileQueryResultFilterSensitiveLog: () => ProfileQueryResultFilterSensitiveLog,
|
|
110
146
|
PutIntegrationCommand: () => PutIntegrationCommand,
|
|
111
147
|
PutIntegrationRequestFilterSensitiveLog: () => PutIntegrationRequestFilterSensitiveLog,
|
|
112
148
|
PutProfileObjectCommand: () => PutProfileObjectCommand,
|
|
@@ -114,21 +150,29 @@ __export(src_exports, {
|
|
|
114
150
|
PutProfileObjectTypeCommand: () => PutProfileObjectTypeCommand,
|
|
115
151
|
PutProfileObjectTypeRequestFilterSensitiveLog: () => PutProfileObjectTypeRequestFilterSensitiveLog,
|
|
116
152
|
PutProfileObjectTypeResponseFilterSensitiveLog: () => PutProfileObjectTypeResponseFilterSensitiveLog,
|
|
153
|
+
QueryResult: () => QueryResult,
|
|
154
|
+
RangeUnit: () => RangeUnit,
|
|
117
155
|
ResourceNotFoundException: () => ResourceNotFoundException,
|
|
118
156
|
RuleBasedMatchingStatus: () => RuleBasedMatchingStatus,
|
|
119
157
|
S3ConnectorOperator: () => S3ConnectorOperator,
|
|
120
158
|
SalesforceConnectorOperator: () => SalesforceConnectorOperator,
|
|
121
159
|
SearchProfilesCommand: () => SearchProfilesCommand,
|
|
122
160
|
SearchProfilesResponseFilterSensitiveLog: () => SearchProfilesResponseFilterSensitiveLog,
|
|
161
|
+
SegmentDefinitionItemFilterSensitiveLog: () => SegmentDefinitionItemFilterSensitiveLog,
|
|
162
|
+
SegmentGroupFilterSensitiveLog: () => SegmentGroupFilterSensitiveLog,
|
|
163
|
+
SegmentGroupStructureFilterSensitiveLog: () => SegmentGroupStructureFilterSensitiveLog,
|
|
164
|
+
SegmentSnapshotStatus: () => SegmentSnapshotStatus,
|
|
123
165
|
ServiceNowConnectorOperator: () => ServiceNowConnectorOperator,
|
|
124
166
|
SourceConnectorType: () => SourceConnectorType,
|
|
125
167
|
StandardIdentifier: () => StandardIdentifier,
|
|
126
168
|
Statistic: () => Statistic,
|
|
127
169
|
Status: () => Status,
|
|
170
|
+
StringDimensionType: () => StringDimensionType,
|
|
128
171
|
TagResourceCommand: () => TagResourceCommand,
|
|
129
172
|
TaskType: () => TaskType,
|
|
130
173
|
ThrottlingException: () => ThrottlingException,
|
|
131
174
|
TriggerType: () => TriggerType,
|
|
175
|
+
Type: () => Type,
|
|
132
176
|
Unit: () => Unit,
|
|
133
177
|
UntagResourceCommand: () => UntagResourceCommand,
|
|
134
178
|
UpdateAddressFilterSensitiveLog: () => UpdateAddressFilterSensitiveLog,
|
|
@@ -141,7 +185,11 @@ __export(src_exports, {
|
|
|
141
185
|
WorkflowType: () => WorkflowType,
|
|
142
186
|
ZendeskConnectorOperator: () => ZendeskConnectorOperator,
|
|
143
187
|
__Client: () => import_smithy_client.Client,
|
|
144
|
-
|
|
188
|
+
paginateGetSimilarProfiles: () => paginateGetSimilarProfiles,
|
|
189
|
+
paginateListEventStreams: () => paginateListEventStreams,
|
|
190
|
+
paginateListObjectTypeAttributes: () => paginateListObjectTypeAttributes,
|
|
191
|
+
paginateListRuleBasedMatches: () => paginateListRuleBasedMatches,
|
|
192
|
+
paginateListSegmentDefinitions: () => paginateListSegmentDefinitions
|
|
145
193
|
});
|
|
146
194
|
module.exports = __toCommonJS(src_exports);
|
|
147
195
|
|
|
@@ -401,6 +449,13 @@ var _ThrottlingException = class _ThrottlingException extends CustomerProfilesSe
|
|
|
401
449
|
};
|
|
402
450
|
__name(_ThrottlingException, "ThrottlingException");
|
|
403
451
|
var ThrottlingException = _ThrottlingException;
|
|
452
|
+
var StringDimensionType = {
|
|
453
|
+
BEGINS_WITH: "BEGINS_WITH",
|
|
454
|
+
CONTAINS: "CONTAINS",
|
|
455
|
+
ENDS_WITH: "ENDS_WITH",
|
|
456
|
+
EXCLUSIVE: "EXCLUSIVE",
|
|
457
|
+
INCLUSIVE: "INCLUSIVE"
|
|
458
|
+
};
|
|
404
459
|
var SourceConnectorType = {
|
|
405
460
|
MARKETO: "Marketo",
|
|
406
461
|
S3: "S3",
|
|
@@ -553,6 +608,40 @@ var Status = {
|
|
|
553
608
|
RETRY: "RETRY",
|
|
554
609
|
SPLIT: "SPLIT"
|
|
555
610
|
};
|
|
611
|
+
var AttributeDimensionType = {
|
|
612
|
+
AFTER: "AFTER",
|
|
613
|
+
BEFORE: "BEFORE",
|
|
614
|
+
BEGINS_WITH: "BEGINS_WITH",
|
|
615
|
+
BETWEEN: "BETWEEN",
|
|
616
|
+
CONTAINS: "CONTAINS",
|
|
617
|
+
ENDS_WITH: "ENDS_WITH",
|
|
618
|
+
EQUAL: "EQUAL",
|
|
619
|
+
EXCLUSIVE: "EXCLUSIVE",
|
|
620
|
+
GREATER_THAN: "GREATER_THAN",
|
|
621
|
+
GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL",
|
|
622
|
+
INCLUSIVE: "INCLUSIVE",
|
|
623
|
+
LESS_THAN: "LESS_THAN",
|
|
624
|
+
LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL",
|
|
625
|
+
NOT_BETWEEN: "NOT_BETWEEN",
|
|
626
|
+
ON: "ON"
|
|
627
|
+
};
|
|
628
|
+
var FilterDimensionType = {
|
|
629
|
+
AFTER: "AFTER",
|
|
630
|
+
BEFORE: "BEFORE",
|
|
631
|
+
BEGINS_WITH: "BEGINS_WITH",
|
|
632
|
+
BETWEEN: "BETWEEN",
|
|
633
|
+
CONTAINS: "CONTAINS",
|
|
634
|
+
ENDS_WITH: "ENDS_WITH",
|
|
635
|
+
EQUAL: "EQUAL",
|
|
636
|
+
EXCLUSIVE: "EXCLUSIVE",
|
|
637
|
+
GREATER_THAN: "GREATER_THAN",
|
|
638
|
+
GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL",
|
|
639
|
+
INCLUSIVE: "INCLUSIVE",
|
|
640
|
+
LESS_THAN: "LESS_THAN",
|
|
641
|
+
LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL",
|
|
642
|
+
NOT_BETWEEN: "NOT_BETWEEN",
|
|
643
|
+
ON: "ON"
|
|
644
|
+
};
|
|
556
645
|
var AttributeMatchingModel = {
|
|
557
646
|
MANY_TO_MANY: "MANY_TO_MANY",
|
|
558
647
|
ONE_TO_ONE: "ONE_TO_ONE"
|
|
@@ -561,6 +650,19 @@ var ConflictResolvingModel = {
|
|
|
561
650
|
RECENCY: "RECENCY",
|
|
562
651
|
SOURCE: "SOURCE"
|
|
563
652
|
};
|
|
653
|
+
var RangeUnit = {
|
|
654
|
+
DAYS: "DAYS"
|
|
655
|
+
};
|
|
656
|
+
var Gender = {
|
|
657
|
+
FEMALE: "FEMALE",
|
|
658
|
+
MALE: "MALE",
|
|
659
|
+
UNSPECIFIED: "UNSPECIFIED"
|
|
660
|
+
};
|
|
661
|
+
var PartyType = {
|
|
662
|
+
BUSINESS: "BUSINESS",
|
|
663
|
+
INDIVIDUAL: "INDIVIDUAL",
|
|
664
|
+
OTHER: "OTHER"
|
|
665
|
+
};
|
|
564
666
|
var Unit = {
|
|
565
667
|
DAYS: "DAYS"
|
|
566
668
|
};
|
|
@@ -570,6 +672,16 @@ var Operator = {
|
|
|
570
672
|
LESS_THAN: "LESS_THAN",
|
|
571
673
|
NOT_EQUAL_TO: "NOT_EQUAL_TO"
|
|
572
674
|
};
|
|
675
|
+
var Type = {
|
|
676
|
+
ALL: "ALL",
|
|
677
|
+
ANY: "ANY",
|
|
678
|
+
NONE: "NONE"
|
|
679
|
+
};
|
|
680
|
+
var Include = {
|
|
681
|
+
ALL: "ALL",
|
|
682
|
+
ANY: "ANY",
|
|
683
|
+
NONE: "NONE"
|
|
684
|
+
};
|
|
573
685
|
var Statistic = {
|
|
574
686
|
AVERAGE: "AVERAGE",
|
|
575
687
|
COUNT: "COUNT",
|
|
@@ -597,15 +709,32 @@ var RuleBasedMatchingStatus = {
|
|
|
597
709
|
var WorkflowType = {
|
|
598
710
|
APPFLOW_INTEGRATION: "APPFLOW_INTEGRATION"
|
|
599
711
|
};
|
|
600
|
-
var
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
712
|
+
var DateDimensionType = {
|
|
713
|
+
AFTER: "AFTER",
|
|
714
|
+
BEFORE: "BEFORE",
|
|
715
|
+
BETWEEN: "BETWEEN",
|
|
716
|
+
NOT_BETWEEN: "NOT_BETWEEN",
|
|
717
|
+
ON: "ON"
|
|
604
718
|
};
|
|
605
|
-
var
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
719
|
+
var Dimension;
|
|
720
|
+
((Dimension2) => {
|
|
721
|
+
Dimension2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
722
|
+
if (value.ProfileAttributes !== void 0)
|
|
723
|
+
return visitor.ProfileAttributes(value.ProfileAttributes);
|
|
724
|
+
if (value.CalculatedAttributes !== void 0)
|
|
725
|
+
return visitor.CalculatedAttributes(value.CalculatedAttributes);
|
|
726
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
727
|
+
}, "visit");
|
|
728
|
+
})(Dimension || (Dimension = {}));
|
|
729
|
+
var IncludeOptions = {
|
|
730
|
+
ALL: "ALL",
|
|
731
|
+
ANY: "ANY",
|
|
732
|
+
NONE: "NONE"
|
|
733
|
+
};
|
|
734
|
+
var DataFormat = {
|
|
735
|
+
CSV: "CSV",
|
|
736
|
+
JSONL: "JSONL",
|
|
737
|
+
ORC: "ORC"
|
|
609
738
|
};
|
|
610
739
|
var FieldContentType = {
|
|
611
740
|
EMAIL_ADDRESS: "EMAIL_ADDRESS",
|
|
@@ -617,6 +746,7 @@ var FieldContentType = {
|
|
|
617
746
|
var StandardIdentifier = {
|
|
618
747
|
ASSET: "ASSET",
|
|
619
748
|
CASE: "CASE",
|
|
749
|
+
COMMUNICATION_RECORD: "COMMUNICATION_RECORD",
|
|
620
750
|
LOOKUP_ONLY: "LOOKUP_ONLY",
|
|
621
751
|
NEW_ONLY: "NEW_ONLY",
|
|
622
752
|
ORDER: "ORDER",
|
|
@@ -641,6 +771,20 @@ var IdentityResolutionJobStatus = {
|
|
|
641
771
|
PENDING: "PENDING",
|
|
642
772
|
PREPROCESSING: "PREPROCESSING"
|
|
643
773
|
};
|
|
774
|
+
var EstimateStatus = {
|
|
775
|
+
FAILED: "FAILED",
|
|
776
|
+
RUNNING: "RUNNING",
|
|
777
|
+
SUCCEEDED: "SUCCEEDED"
|
|
778
|
+
};
|
|
779
|
+
var QueryResult = {
|
|
780
|
+
ABSENT: "ABSENT",
|
|
781
|
+
PRESENT: "PRESENT"
|
|
782
|
+
};
|
|
783
|
+
var SegmentSnapshotStatus = {
|
|
784
|
+
COMPLETED: "COMPLETED",
|
|
785
|
+
FAILED: "FAILED",
|
|
786
|
+
IN_PROGRESS: "IN_PROGRESS"
|
|
787
|
+
};
|
|
644
788
|
var MatchType = {
|
|
645
789
|
ML_BASED_MATCHING: "ML_BASED_MATCHING",
|
|
646
790
|
RULE_BASED_MATCHING: "RULE_BASED_MATCHING"
|
|
@@ -662,10 +806,55 @@ var AppflowIntegrationFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
662
806
|
var AttributeDetailsFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
663
807
|
...obj
|
|
664
808
|
}), "AttributeDetailsFilterSensitiveLog");
|
|
809
|
+
var ConditionOverridesFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
810
|
+
...obj
|
|
811
|
+
}), "ConditionOverridesFilterSensitiveLog");
|
|
812
|
+
var BatchGetCalculatedAttributeForProfileRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
813
|
+
...obj,
|
|
814
|
+
...obj.ConditionOverrides && { ConditionOverrides: import_smithy_client.SENSITIVE_STRING }
|
|
815
|
+
}), "BatchGetCalculatedAttributeForProfileRequestFilterSensitiveLog");
|
|
816
|
+
var BatchGetCalculatedAttributeForProfileResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
817
|
+
...obj,
|
|
818
|
+
...obj.ConditionOverrides && { ConditionOverrides: import_smithy_client.SENSITIVE_STRING }
|
|
819
|
+
}), "BatchGetCalculatedAttributeForProfileResponseFilterSensitiveLog");
|
|
820
|
+
var ProfileFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
821
|
+
...obj,
|
|
822
|
+
...obj.AccountNumber && { AccountNumber: import_smithy_client.SENSITIVE_STRING },
|
|
823
|
+
...obj.AdditionalInformation && { AdditionalInformation: import_smithy_client.SENSITIVE_STRING },
|
|
824
|
+
...obj.PartyType && { PartyType: import_smithy_client.SENSITIVE_STRING },
|
|
825
|
+
...obj.BusinessName && { BusinessName: import_smithy_client.SENSITIVE_STRING },
|
|
826
|
+
...obj.FirstName && { FirstName: import_smithy_client.SENSITIVE_STRING },
|
|
827
|
+
...obj.MiddleName && { MiddleName: import_smithy_client.SENSITIVE_STRING },
|
|
828
|
+
...obj.LastName && { LastName: import_smithy_client.SENSITIVE_STRING },
|
|
829
|
+
...obj.BirthDate && { BirthDate: import_smithy_client.SENSITIVE_STRING },
|
|
830
|
+
...obj.Gender && { Gender: import_smithy_client.SENSITIVE_STRING },
|
|
831
|
+
...obj.PhoneNumber && { PhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
832
|
+
...obj.MobilePhoneNumber && { MobilePhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
833
|
+
...obj.HomePhoneNumber && { HomePhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
834
|
+
...obj.BusinessPhoneNumber && { BusinessPhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
835
|
+
...obj.EmailAddress && { EmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
836
|
+
...obj.PersonalEmailAddress && { PersonalEmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
837
|
+
...obj.BusinessEmailAddress && { BusinessEmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
838
|
+
...obj.Address && { Address: import_smithy_client.SENSITIVE_STRING },
|
|
839
|
+
...obj.ShippingAddress && { ShippingAddress: import_smithy_client.SENSITIVE_STRING },
|
|
840
|
+
...obj.MailingAddress && { MailingAddress: import_smithy_client.SENSITIVE_STRING },
|
|
841
|
+
...obj.BillingAddress && { BillingAddress: import_smithy_client.SENSITIVE_STRING },
|
|
842
|
+
...obj.Attributes && { Attributes: import_smithy_client.SENSITIVE_STRING },
|
|
843
|
+
...obj.PartyTypeString && { PartyTypeString: import_smithy_client.SENSITIVE_STRING },
|
|
844
|
+
...obj.GenderString && { GenderString: import_smithy_client.SENSITIVE_STRING }
|
|
845
|
+
}), "ProfileFilterSensitiveLog");
|
|
846
|
+
var BatchGetProfileResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
847
|
+
...obj,
|
|
848
|
+
...obj.Profiles && { Profiles: obj.Profiles.map((item) => ProfileFilterSensitiveLog(item)) }
|
|
849
|
+
}), "BatchGetProfileResponseFilterSensitiveLog");
|
|
665
850
|
var ListCalculatedAttributeDefinitionItemFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
666
851
|
...obj,
|
|
667
852
|
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING }
|
|
668
853
|
}), "ListCalculatedAttributeDefinitionItemFilterSensitiveLog");
|
|
854
|
+
var CalculatedAttributeDimensionFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
855
|
+
...obj,
|
|
856
|
+
...obj.ConditionOverrides && { ConditionOverrides: import_smithy_client.SENSITIVE_STRING }
|
|
857
|
+
}), "CalculatedAttributeDimensionFilterSensitiveLog");
|
|
669
858
|
var ConditionsFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
670
859
|
...obj
|
|
671
860
|
}), "ConditionsFilterSensitiveLog");
|
|
@@ -717,6 +906,47 @@ var CreateProfileRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
717
906
|
...obj.PartyTypeString && { PartyTypeString: import_smithy_client.SENSITIVE_STRING },
|
|
718
907
|
...obj.GenderString && { GenderString: import_smithy_client.SENSITIVE_STRING }
|
|
719
908
|
}), "CreateProfileRequestFilterSensitiveLog");
|
|
909
|
+
var ProfileAttributesFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
910
|
+
...obj
|
|
911
|
+
}), "ProfileAttributesFilterSensitiveLog");
|
|
912
|
+
var DimensionFilterSensitiveLog = /* @__PURE__ */ __name((obj) => {
|
|
913
|
+
if (obj.ProfileAttributes !== void 0)
|
|
914
|
+
return { ProfileAttributes: import_smithy_client.SENSITIVE_STRING };
|
|
915
|
+
if (obj.CalculatedAttributes !== void 0)
|
|
916
|
+
return {
|
|
917
|
+
CalculatedAttributes: Object.entries(obj.CalculatedAttributes).reduce(
|
|
918
|
+
(acc, [key, value]) => (acc[key] = CalculatedAttributeDimensionFilterSensitiveLog(value), acc),
|
|
919
|
+
{}
|
|
920
|
+
)
|
|
921
|
+
};
|
|
922
|
+
if (obj.$unknown !== void 0)
|
|
923
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
924
|
+
}, "DimensionFilterSensitiveLog");
|
|
925
|
+
var GroupFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
926
|
+
...obj,
|
|
927
|
+
...obj.Dimensions && { Dimensions: obj.Dimensions.map((item) => DimensionFilterSensitiveLog(item)) }
|
|
928
|
+
}), "GroupFilterSensitiveLog");
|
|
929
|
+
var SegmentGroupFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
930
|
+
...obj,
|
|
931
|
+
...obj.Groups && { Groups: obj.Groups.map((item) => GroupFilterSensitiveLog(item)) }
|
|
932
|
+
}), "SegmentGroupFilterSensitiveLog");
|
|
933
|
+
var CreateSegmentDefinitionRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
934
|
+
...obj,
|
|
935
|
+
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING },
|
|
936
|
+
...obj.SegmentGroups && { SegmentGroups: import_smithy_client.SENSITIVE_STRING }
|
|
937
|
+
}), "CreateSegmentDefinitionRequestFilterSensitiveLog");
|
|
938
|
+
var CreateSegmentDefinitionResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
939
|
+
...obj,
|
|
940
|
+
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING }
|
|
941
|
+
}), "CreateSegmentDefinitionResponseFilterSensitiveLog");
|
|
942
|
+
var SegmentGroupStructureFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
943
|
+
...obj,
|
|
944
|
+
...obj.Groups && { Groups: obj.Groups.map((item) => GroupFilterSensitiveLog(item)) }
|
|
945
|
+
}), "SegmentGroupStructureFilterSensitiveLog");
|
|
946
|
+
var CreateSegmentEstimateRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
947
|
+
...obj,
|
|
948
|
+
...obj.SegmentQuery && { SegmentQuery: SegmentGroupStructureFilterSensitiveLog(obj.SegmentQuery) }
|
|
949
|
+
}), "CreateSegmentEstimateRequestFilterSensitiveLog");
|
|
720
950
|
var DetectProfileObjectTypeRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
721
951
|
...obj,
|
|
722
952
|
...obj.Objects && { Objects: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -752,6 +982,19 @@ var GetProfileObjectTypeTemplateResponseFilterSensitiveLog = /* @__PURE__ */ __n
|
|
|
752
982
|
...obj.Fields && { Fields: import_smithy_client.SENSITIVE_STRING },
|
|
753
983
|
...obj.Keys && { Keys: import_smithy_client.SENSITIVE_STRING }
|
|
754
984
|
}), "GetProfileObjectTypeTemplateResponseFilterSensitiveLog");
|
|
985
|
+
var GetSegmentDefinitionResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
986
|
+
...obj,
|
|
987
|
+
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING },
|
|
988
|
+
...obj.SegmentGroups && { SegmentGroups: import_smithy_client.SENSITIVE_STRING }
|
|
989
|
+
}), "GetSegmentDefinitionResponseFilterSensitiveLog");
|
|
990
|
+
var ProfileQueryResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
991
|
+
...obj,
|
|
992
|
+
...obj.Profile && { Profile: ProfileFilterSensitiveLog(obj.Profile) }
|
|
993
|
+
}), "ProfileQueryResultFilterSensitiveLog");
|
|
994
|
+
var GetSegmentMembershipResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
995
|
+
...obj,
|
|
996
|
+
...obj.Profiles && { Profiles: obj.Profiles.map((item) => ProfileQueryResultFilterSensitiveLog(item)) }
|
|
997
|
+
}), "GetSegmentMembershipResponseFilterSensitiveLog");
|
|
755
998
|
var ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
756
999
|
...obj,
|
|
757
1000
|
...obj.Items && { Items: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -768,6 +1011,14 @@ var ListProfileObjectTypesResponseFilterSensitiveLog = /* @__PURE__ */ __name((o
|
|
|
768
1011
|
...obj,
|
|
769
1012
|
...obj.Items && { Items: import_smithy_client.SENSITIVE_STRING }
|
|
770
1013
|
}), "ListProfileObjectTypesResponseFilterSensitiveLog");
|
|
1014
|
+
var SegmentDefinitionItemFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1015
|
+
...obj,
|
|
1016
|
+
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING }
|
|
1017
|
+
}), "SegmentDefinitionItemFilterSensitiveLog");
|
|
1018
|
+
var ListSegmentDefinitionsResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1019
|
+
...obj,
|
|
1020
|
+
...obj.Items && { Items: obj.Items.map((item) => SegmentDefinitionItemFilterSensitiveLog(item)) }
|
|
1021
|
+
}), "ListSegmentDefinitionsResponseFilterSensitiveLog");
|
|
771
1022
|
var PutIntegrationRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
772
1023
|
...obj,
|
|
773
1024
|
...obj.FlowDefinition && { FlowDefinition: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -788,32 +1039,6 @@ var PutProfileObjectTypeResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj
|
|
|
788
1039
|
...obj.Fields && { Fields: import_smithy_client.SENSITIVE_STRING },
|
|
789
1040
|
...obj.Keys && { Keys: import_smithy_client.SENSITIVE_STRING }
|
|
790
1041
|
}), "PutProfileObjectTypeResponseFilterSensitiveLog");
|
|
791
|
-
var ProfileFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
792
|
-
...obj,
|
|
793
|
-
...obj.AccountNumber && { AccountNumber: import_smithy_client.SENSITIVE_STRING },
|
|
794
|
-
...obj.AdditionalInformation && { AdditionalInformation: import_smithy_client.SENSITIVE_STRING },
|
|
795
|
-
...obj.PartyType && { PartyType: import_smithy_client.SENSITIVE_STRING },
|
|
796
|
-
...obj.BusinessName && { BusinessName: import_smithy_client.SENSITIVE_STRING },
|
|
797
|
-
...obj.FirstName && { FirstName: import_smithy_client.SENSITIVE_STRING },
|
|
798
|
-
...obj.MiddleName && { MiddleName: import_smithy_client.SENSITIVE_STRING },
|
|
799
|
-
...obj.LastName && { LastName: import_smithy_client.SENSITIVE_STRING },
|
|
800
|
-
...obj.BirthDate && { BirthDate: import_smithy_client.SENSITIVE_STRING },
|
|
801
|
-
...obj.Gender && { Gender: import_smithy_client.SENSITIVE_STRING },
|
|
802
|
-
...obj.PhoneNumber && { PhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
803
|
-
...obj.MobilePhoneNumber && { MobilePhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
804
|
-
...obj.HomePhoneNumber && { HomePhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
805
|
-
...obj.BusinessPhoneNumber && { BusinessPhoneNumber: import_smithy_client.SENSITIVE_STRING },
|
|
806
|
-
...obj.EmailAddress && { EmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
807
|
-
...obj.PersonalEmailAddress && { PersonalEmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
808
|
-
...obj.BusinessEmailAddress && { BusinessEmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
809
|
-
...obj.Address && { Address: import_smithy_client.SENSITIVE_STRING },
|
|
810
|
-
...obj.ShippingAddress && { ShippingAddress: import_smithy_client.SENSITIVE_STRING },
|
|
811
|
-
...obj.MailingAddress && { MailingAddress: import_smithy_client.SENSITIVE_STRING },
|
|
812
|
-
...obj.BillingAddress && { BillingAddress: import_smithy_client.SENSITIVE_STRING },
|
|
813
|
-
...obj.Attributes && { Attributes: import_smithy_client.SENSITIVE_STRING },
|
|
814
|
-
...obj.PartyTypeString && { PartyTypeString: import_smithy_client.SENSITIVE_STRING },
|
|
815
|
-
...obj.GenderString && { GenderString: import_smithy_client.SENSITIVE_STRING }
|
|
816
|
-
}), "ProfileFilterSensitiveLog");
|
|
817
1042
|
var SearchProfilesResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
818
1043
|
...obj,
|
|
819
1044
|
...obj.Items && { Items: obj.Items.map((item) => ProfileFilterSensitiveLog(item)) }
|
|
@@ -879,6 +1104,40 @@ var se_AddProfileKeyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
879
1104
|
b.m("POST").h(headers).b(body);
|
|
880
1105
|
return b.build();
|
|
881
1106
|
}, "se_AddProfileKeyCommand");
|
|
1107
|
+
var se_BatchGetCalculatedAttributeForProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1108
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1109
|
+
const headers = {
|
|
1110
|
+
"content-type": "application/json"
|
|
1111
|
+
};
|
|
1112
|
+
b.bp("/domains/{DomainName}/calculated-attributes/{CalculatedAttributeName}/batch-get-for-profiles");
|
|
1113
|
+
b.p("CalculatedAttributeName", () => input.CalculatedAttributeName, "{CalculatedAttributeName}", false);
|
|
1114
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1115
|
+
let body;
|
|
1116
|
+
body = JSON.stringify(
|
|
1117
|
+
(0, import_smithy_client.take)(input, {
|
|
1118
|
+
ConditionOverrides: (_) => (0, import_smithy_client._json)(_),
|
|
1119
|
+
ProfileIds: (_) => (0, import_smithy_client._json)(_)
|
|
1120
|
+
})
|
|
1121
|
+
);
|
|
1122
|
+
b.m("POST").h(headers).b(body);
|
|
1123
|
+
return b.build();
|
|
1124
|
+
}, "se_BatchGetCalculatedAttributeForProfileCommand");
|
|
1125
|
+
var se_BatchGetProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1126
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1127
|
+
const headers = {
|
|
1128
|
+
"content-type": "application/json"
|
|
1129
|
+
};
|
|
1130
|
+
b.bp("/domains/{DomainName}/batch-get-profiles");
|
|
1131
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1132
|
+
let body;
|
|
1133
|
+
body = JSON.stringify(
|
|
1134
|
+
(0, import_smithy_client.take)(input, {
|
|
1135
|
+
ProfileIds: (_) => (0, import_smithy_client._json)(_)
|
|
1136
|
+
})
|
|
1137
|
+
);
|
|
1138
|
+
b.m("POST").h(headers).b(body);
|
|
1139
|
+
return b.build();
|
|
1140
|
+
}, "se_BatchGetProfileCommand");
|
|
882
1141
|
var se_CreateCalculatedAttributeDefinitionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
883
1142
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
884
1143
|
const headers = {
|
|
@@ -894,6 +1153,7 @@ var se_CreateCalculatedAttributeDefinitionCommand = /* @__PURE__ */ __name(async
|
|
|
894
1153
|
Conditions: (_) => (0, import_smithy_client._json)(_),
|
|
895
1154
|
Description: [],
|
|
896
1155
|
DisplayName: [],
|
|
1156
|
+
Filter: (_) => (0, import_smithy_client._json)(_),
|
|
897
1157
|
Statistic: [],
|
|
898
1158
|
Tags: (_) => (0, import_smithy_client._json)(_)
|
|
899
1159
|
})
|
|
@@ -998,6 +1258,62 @@ var se_CreateProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
998
1258
|
b.m("POST").h(headers).b(body);
|
|
999
1259
|
return b.build();
|
|
1000
1260
|
}, "se_CreateProfileCommand");
|
|
1261
|
+
var se_CreateSegmentDefinitionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1262
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1263
|
+
const headers = {
|
|
1264
|
+
"content-type": "application/json"
|
|
1265
|
+
};
|
|
1266
|
+
b.bp("/domains/{DomainName}/segment-definitions/{SegmentDefinitionName}");
|
|
1267
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1268
|
+
b.p("SegmentDefinitionName", () => input.SegmentDefinitionName, "{SegmentDefinitionName}", false);
|
|
1269
|
+
let body;
|
|
1270
|
+
body = JSON.stringify(
|
|
1271
|
+
(0, import_smithy_client.take)(input, {
|
|
1272
|
+
Description: [],
|
|
1273
|
+
DisplayName: [],
|
|
1274
|
+
SegmentGroups: (_) => se_SegmentGroup(_, context),
|
|
1275
|
+
Tags: (_) => (0, import_smithy_client._json)(_)
|
|
1276
|
+
})
|
|
1277
|
+
);
|
|
1278
|
+
b.m("POST").h(headers).b(body);
|
|
1279
|
+
return b.build();
|
|
1280
|
+
}, "se_CreateSegmentDefinitionCommand");
|
|
1281
|
+
var se_CreateSegmentEstimateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1282
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1283
|
+
const headers = {
|
|
1284
|
+
"content-type": "application/json"
|
|
1285
|
+
};
|
|
1286
|
+
b.bp("/domains/{DomainName}/segment-estimates");
|
|
1287
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1288
|
+
let body;
|
|
1289
|
+
body = JSON.stringify(
|
|
1290
|
+
(0, import_smithy_client.take)(input, {
|
|
1291
|
+
SegmentQuery: (_) => se_SegmentGroupStructure(_, context)
|
|
1292
|
+
})
|
|
1293
|
+
);
|
|
1294
|
+
b.m("POST").h(headers).b(body);
|
|
1295
|
+
return b.build();
|
|
1296
|
+
}, "se_CreateSegmentEstimateCommand");
|
|
1297
|
+
var se_CreateSegmentSnapshotCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1298
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1299
|
+
const headers = {
|
|
1300
|
+
"content-type": "application/json"
|
|
1301
|
+
};
|
|
1302
|
+
b.bp("/domains/{DomainName}/segments/{SegmentDefinitionName}/snapshots");
|
|
1303
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1304
|
+
b.p("SegmentDefinitionName", () => input.SegmentDefinitionName, "{SegmentDefinitionName}", false);
|
|
1305
|
+
let body;
|
|
1306
|
+
body = JSON.stringify(
|
|
1307
|
+
(0, import_smithy_client.take)(input, {
|
|
1308
|
+
DataFormat: [],
|
|
1309
|
+
DestinationUri: [],
|
|
1310
|
+
EncryptionKey: [],
|
|
1311
|
+
RoleArn: []
|
|
1312
|
+
})
|
|
1313
|
+
);
|
|
1314
|
+
b.m("POST").h(headers).b(body);
|
|
1315
|
+
return b.build();
|
|
1316
|
+
}, "se_CreateSegmentSnapshotCommand");
|
|
1001
1317
|
var se_DeleteCalculatedAttributeDefinitionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1002
1318
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1003
1319
|
const headers = {};
|
|
@@ -1105,6 +1421,16 @@ var se_DeleteProfileObjectTypeCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1105
1421
|
b.m("DELETE").h(headers).b(body);
|
|
1106
1422
|
return b.build();
|
|
1107
1423
|
}, "se_DeleteProfileObjectTypeCommand");
|
|
1424
|
+
var se_DeleteSegmentDefinitionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1425
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1426
|
+
const headers = {};
|
|
1427
|
+
b.bp("/domains/{DomainName}/segment-definitions/{SegmentDefinitionName}");
|
|
1428
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1429
|
+
b.p("SegmentDefinitionName", () => input.SegmentDefinitionName, "{SegmentDefinitionName}", false);
|
|
1430
|
+
let body;
|
|
1431
|
+
b.m("DELETE").h(headers).b(body);
|
|
1432
|
+
return b.build();
|
|
1433
|
+
}, "se_DeleteSegmentDefinitionCommand");
|
|
1108
1434
|
var se_DeleteWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1109
1435
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1110
1436
|
const headers = {};
|
|
@@ -1247,6 +1573,54 @@ var se_GetProfileObjectTypeTemplateCommand = /* @__PURE__ */ __name(async (input
|
|
|
1247
1573
|
b.m("GET").h(headers).b(body);
|
|
1248
1574
|
return b.build();
|
|
1249
1575
|
}, "se_GetProfileObjectTypeTemplateCommand");
|
|
1576
|
+
var se_GetSegmentDefinitionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1577
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1578
|
+
const headers = {};
|
|
1579
|
+
b.bp("/domains/{DomainName}/segment-definitions/{SegmentDefinitionName}");
|
|
1580
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1581
|
+
b.p("SegmentDefinitionName", () => input.SegmentDefinitionName, "{SegmentDefinitionName}", false);
|
|
1582
|
+
let body;
|
|
1583
|
+
b.m("GET").h(headers).b(body);
|
|
1584
|
+
return b.build();
|
|
1585
|
+
}, "se_GetSegmentDefinitionCommand");
|
|
1586
|
+
var se_GetSegmentEstimateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1587
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1588
|
+
const headers = {};
|
|
1589
|
+
b.bp("/domains/{DomainName}/segment-estimates/{EstimateId}");
|
|
1590
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1591
|
+
b.p("EstimateId", () => input.EstimateId, "{EstimateId}", false);
|
|
1592
|
+
let body;
|
|
1593
|
+
b.m("GET").h(headers).b(body);
|
|
1594
|
+
return b.build();
|
|
1595
|
+
}, "se_GetSegmentEstimateCommand");
|
|
1596
|
+
var se_GetSegmentMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1597
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1598
|
+
const headers = {
|
|
1599
|
+
"content-type": "application/json"
|
|
1600
|
+
};
|
|
1601
|
+
b.bp("/domains/{DomainName}/segments/{SegmentDefinitionName}/membership");
|
|
1602
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1603
|
+
b.p("SegmentDefinitionName", () => input.SegmentDefinitionName, "{SegmentDefinitionName}", false);
|
|
1604
|
+
let body;
|
|
1605
|
+
body = JSON.stringify(
|
|
1606
|
+
(0, import_smithy_client.take)(input, {
|
|
1607
|
+
ProfileIds: [, (_) => (0, import_smithy_client._json)(_), `ProfileIds`]
|
|
1608
|
+
})
|
|
1609
|
+
);
|
|
1610
|
+
b.m("POST").h(headers).b(body);
|
|
1611
|
+
return b.build();
|
|
1612
|
+
}, "se_GetSegmentMembershipCommand");
|
|
1613
|
+
var se_GetSegmentSnapshotCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1614
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1615
|
+
const headers = {};
|
|
1616
|
+
b.bp("/domains/{DomainName}/segments/{SegmentDefinitionName}/snapshots/{SnapshotId}");
|
|
1617
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1618
|
+
b.p("SegmentDefinitionName", () => input.SegmentDefinitionName, "{SegmentDefinitionName}", false);
|
|
1619
|
+
b.p("SnapshotId", () => input.SnapshotId, "{SnapshotId}", false);
|
|
1620
|
+
let body;
|
|
1621
|
+
b.m("GET").h(headers).b(body);
|
|
1622
|
+
return b.build();
|
|
1623
|
+
}, "se_GetSegmentSnapshotCommand");
|
|
1250
1624
|
var se_GetSimilarProfilesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1251
1625
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1252
1626
|
const headers = {
|
|
@@ -1392,6 +1766,30 @@ var se_ListIntegrationsCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1392
1766
|
b.m("GET").h(headers).q(query).b(body);
|
|
1393
1767
|
return b.build();
|
|
1394
1768
|
}, "se_ListIntegrationsCommand");
|
|
1769
|
+
var se_ListObjectTypeAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1770
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1771
|
+
const headers = {};
|
|
1772
|
+
b.bp("/domains/{DomainName}/object-types/{ObjectTypeName}/attributes");
|
|
1773
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1774
|
+
b.p("ObjectTypeName", () => input.ObjectTypeName, "{ObjectTypeName}", false);
|
|
1775
|
+
const query = (0, import_smithy_client.map)({
|
|
1776
|
+
[_nt]: [, input[_NT]],
|
|
1777
|
+
[_mr]: [() => input.MaxResults !== void 0, () => input[_MR].toString()]
|
|
1778
|
+
});
|
|
1779
|
+
let body;
|
|
1780
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
1781
|
+
return b.build();
|
|
1782
|
+
}, "se_ListObjectTypeAttributesCommand");
|
|
1783
|
+
var se_ListProfileAttributeValuesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1784
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1785
|
+
const headers = {};
|
|
1786
|
+
b.bp("/domains/{DomainName}/profile-attributes/{AttributeName}/values");
|
|
1787
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1788
|
+
b.p("AttributeName", () => input.AttributeName, "{AttributeName}", false);
|
|
1789
|
+
let body;
|
|
1790
|
+
b.m("GET").h(headers).b(body);
|
|
1791
|
+
return b.build();
|
|
1792
|
+
}, "se_ListProfileAttributeValuesCommand");
|
|
1395
1793
|
var se_ListProfileObjectsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1396
1794
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1397
1795
|
const headers = {
|
|
@@ -1452,6 +1850,19 @@ var se_ListRuleBasedMatchesCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1452
1850
|
b.m("GET").h(headers).q(query).b(body);
|
|
1453
1851
|
return b.build();
|
|
1454
1852
|
}, "se_ListRuleBasedMatchesCommand");
|
|
1853
|
+
var se_ListSegmentDefinitionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1854
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1855
|
+
const headers = {};
|
|
1856
|
+
b.bp("/domains/{DomainName}/segment-definitions");
|
|
1857
|
+
b.p("DomainName", () => input.DomainName, "{DomainName}", false);
|
|
1858
|
+
const query = (0, import_smithy_client.map)({
|
|
1859
|
+
[_mr]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
1860
|
+
[_nt]: [, input[_NT]]
|
|
1861
|
+
});
|
|
1862
|
+
let body;
|
|
1863
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
1864
|
+
return b.build();
|
|
1865
|
+
}, "se_ListSegmentDefinitionsCommand");
|
|
1455
1866
|
var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1456
1867
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1457
1868
|
const headers = {};
|
|
@@ -1711,6 +2122,37 @@ var de_AddProfileKeyCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
1711
2122
|
Object.assign(contents, doc);
|
|
1712
2123
|
return contents;
|
|
1713
2124
|
}, "de_AddProfileKeyCommand");
|
|
2125
|
+
var de_BatchGetCalculatedAttributeForProfileCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2126
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2127
|
+
return de_CommandError(output, context);
|
|
2128
|
+
}
|
|
2129
|
+
const contents = (0, import_smithy_client.map)({
|
|
2130
|
+
$metadata: deserializeMetadata(output)
|
|
2131
|
+
});
|
|
2132
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2133
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2134
|
+
CalculatedAttributeValues: import_smithy_client._json,
|
|
2135
|
+
ConditionOverrides: import_smithy_client._json,
|
|
2136
|
+
Errors: import_smithy_client._json
|
|
2137
|
+
});
|
|
2138
|
+
Object.assign(contents, doc);
|
|
2139
|
+
return contents;
|
|
2140
|
+
}, "de_BatchGetCalculatedAttributeForProfileCommand");
|
|
2141
|
+
var de_BatchGetProfileCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2142
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2143
|
+
return de_CommandError(output, context);
|
|
2144
|
+
}
|
|
2145
|
+
const contents = (0, import_smithy_client.map)({
|
|
2146
|
+
$metadata: deserializeMetadata(output)
|
|
2147
|
+
});
|
|
2148
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2149
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2150
|
+
Errors: import_smithy_client._json,
|
|
2151
|
+
Profiles: import_smithy_client._json
|
|
2152
|
+
});
|
|
2153
|
+
Object.assign(contents, doc);
|
|
2154
|
+
return contents;
|
|
2155
|
+
}, "de_BatchGetProfileCommand");
|
|
1714
2156
|
var de_CreateCalculatedAttributeDefinitionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1715
2157
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1716
2158
|
return de_CommandError(output, context);
|
|
@@ -1726,6 +2168,7 @@ var de_CreateCalculatedAttributeDefinitionCommand = /* @__PURE__ */ __name(async
|
|
|
1726
2168
|
CreatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1727
2169
|
Description: import_smithy_client.expectString,
|
|
1728
2170
|
DisplayName: import_smithy_client.expectString,
|
|
2171
|
+
Filter: import_smithy_client._json,
|
|
1729
2172
|
LastUpdatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1730
2173
|
Statistic: import_smithy_client.expectString,
|
|
1731
2174
|
Tags: import_smithy_client._json
|
|
@@ -1799,6 +2242,57 @@ var de_CreateProfileCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
1799
2242
|
Object.assign(contents, doc);
|
|
1800
2243
|
return contents;
|
|
1801
2244
|
}, "de_CreateProfileCommand");
|
|
2245
|
+
var de_CreateSegmentDefinitionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2246
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2247
|
+
return de_CommandError(output, context);
|
|
2248
|
+
}
|
|
2249
|
+
const contents = (0, import_smithy_client.map)({
|
|
2250
|
+
$metadata: deserializeMetadata(output)
|
|
2251
|
+
});
|
|
2252
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2253
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2254
|
+
CreatedAt: [, (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), `CreatedAt`],
|
|
2255
|
+
Description: [, import_smithy_client.expectString, `Description`],
|
|
2256
|
+
DisplayName: [, import_smithy_client.expectString, `DisplayName`],
|
|
2257
|
+
SegmentDefinitionArn: [, import_smithy_client.expectString, `SegmentDefinitionArn`],
|
|
2258
|
+
SegmentDefinitionName: [, import_smithy_client.expectString, `SegmentDefinitionName`],
|
|
2259
|
+
Tags: [, import_smithy_client._json, `Tags`]
|
|
2260
|
+
});
|
|
2261
|
+
Object.assign(contents, doc);
|
|
2262
|
+
return contents;
|
|
2263
|
+
}, "de_CreateSegmentDefinitionCommand");
|
|
2264
|
+
var de_CreateSegmentEstimateCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2265
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2266
|
+
return de_CommandError(output, context);
|
|
2267
|
+
}
|
|
2268
|
+
const contents = (0, import_smithy_client.map)({
|
|
2269
|
+
$metadata: deserializeMetadata(output)
|
|
2270
|
+
});
|
|
2271
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2272
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2273
|
+
DomainName: import_smithy_client.expectString,
|
|
2274
|
+
EstimateId: import_smithy_client.expectString
|
|
2275
|
+
});
|
|
2276
|
+
Object.assign(contents, doc);
|
|
2277
|
+
(0, import_smithy_client.map)(contents, {
|
|
2278
|
+
StatusCode: [, output.statusCode]
|
|
2279
|
+
});
|
|
2280
|
+
return contents;
|
|
2281
|
+
}, "de_CreateSegmentEstimateCommand");
|
|
2282
|
+
var de_CreateSegmentSnapshotCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2283
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2284
|
+
return de_CommandError(output, context);
|
|
2285
|
+
}
|
|
2286
|
+
const contents = (0, import_smithy_client.map)({
|
|
2287
|
+
$metadata: deserializeMetadata(output)
|
|
2288
|
+
});
|
|
2289
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2290
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2291
|
+
SnapshotId: import_smithy_client.expectString
|
|
2292
|
+
});
|
|
2293
|
+
Object.assign(contents, doc);
|
|
2294
|
+
return contents;
|
|
2295
|
+
}, "de_CreateSegmentSnapshotCommand");
|
|
1802
2296
|
var de_DeleteCalculatedAttributeDefinitionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1803
2297
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1804
2298
|
return de_CommandError(output, context);
|
|
@@ -1903,6 +2397,20 @@ var de_DeleteProfileObjectTypeCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
1903
2397
|
Object.assign(contents, doc);
|
|
1904
2398
|
return contents;
|
|
1905
2399
|
}, "de_DeleteProfileObjectTypeCommand");
|
|
2400
|
+
var de_DeleteSegmentDefinitionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2401
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2402
|
+
return de_CommandError(output, context);
|
|
2403
|
+
}
|
|
2404
|
+
const contents = (0, import_smithy_client.map)({
|
|
2405
|
+
$metadata: deserializeMetadata(output)
|
|
2406
|
+
});
|
|
2407
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2408
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2409
|
+
Message: [, import_smithy_client.expectString, `Message`]
|
|
2410
|
+
});
|
|
2411
|
+
Object.assign(contents, doc);
|
|
2412
|
+
return contents;
|
|
2413
|
+
}, "de_DeleteSegmentDefinitionCommand");
|
|
1906
2414
|
var de_DeleteWorkflowCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1907
2415
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1908
2416
|
return de_CommandError(output, context);
|
|
@@ -1959,6 +2467,7 @@ var de_GetCalculatedAttributeDefinitionCommand = /* @__PURE__ */ __name(async (o
|
|
|
1959
2467
|
CreatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1960
2468
|
Description: import_smithy_client.expectString,
|
|
1961
2469
|
DisplayName: import_smithy_client.expectString,
|
|
2470
|
+
Filter: import_smithy_client._json,
|
|
1962
2471
|
LastUpdatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1963
2472
|
Statistic: import_smithy_client.expectString,
|
|
1964
2473
|
Tags: import_smithy_client._json
|
|
@@ -2126,17 +2635,94 @@ var de_GetProfileObjectTypeTemplateCommand = /* @__PURE__ */ __name(async (outpu
|
|
|
2126
2635
|
});
|
|
2127
2636
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2128
2637
|
const doc = (0, import_smithy_client.take)(data, {
|
|
2129
|
-
AllowProfileCreation: import_smithy_client.expectBoolean,
|
|
2130
|
-
Fields: import_smithy_client._json,
|
|
2131
|
-
Keys: import_smithy_client._json,
|
|
2132
|
-
SourceLastUpdatedTimestampFormat: import_smithy_client.expectString,
|
|
2133
|
-
SourceName: import_smithy_client.expectString,
|
|
2134
|
-
SourceObject: import_smithy_client.expectString,
|
|
2135
|
-
TemplateId: import_smithy_client.expectString
|
|
2638
|
+
AllowProfileCreation: import_smithy_client.expectBoolean,
|
|
2639
|
+
Fields: import_smithy_client._json,
|
|
2640
|
+
Keys: import_smithy_client._json,
|
|
2641
|
+
SourceLastUpdatedTimestampFormat: import_smithy_client.expectString,
|
|
2642
|
+
SourceName: import_smithy_client.expectString,
|
|
2643
|
+
SourceObject: import_smithy_client.expectString,
|
|
2644
|
+
TemplateId: import_smithy_client.expectString
|
|
2645
|
+
});
|
|
2646
|
+
Object.assign(contents, doc);
|
|
2647
|
+
return contents;
|
|
2648
|
+
}, "de_GetProfileObjectTypeTemplateCommand");
|
|
2649
|
+
var de_GetSegmentDefinitionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2650
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2651
|
+
return de_CommandError(output, context);
|
|
2652
|
+
}
|
|
2653
|
+
const contents = (0, import_smithy_client.map)({
|
|
2654
|
+
$metadata: deserializeMetadata(output)
|
|
2655
|
+
});
|
|
2656
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2657
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2658
|
+
CreatedAt: [, (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), `CreatedAt`],
|
|
2659
|
+
Description: [, import_smithy_client.expectString, `Description`],
|
|
2660
|
+
DisplayName: [, import_smithy_client.expectString, `DisplayName`],
|
|
2661
|
+
SegmentDefinitionArn: [, import_smithy_client.expectString, `SegmentDefinitionArn`],
|
|
2662
|
+
SegmentDefinitionName: [, import_smithy_client.expectString, `SegmentDefinitionName`],
|
|
2663
|
+
SegmentGroups: [, (_) => de_SegmentGroup(_, context), `SegmentGroups`],
|
|
2664
|
+
Tags: [, import_smithy_client._json, `Tags`]
|
|
2665
|
+
});
|
|
2666
|
+
Object.assign(contents, doc);
|
|
2667
|
+
return contents;
|
|
2668
|
+
}, "de_GetSegmentDefinitionCommand");
|
|
2669
|
+
var de_GetSegmentEstimateCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2670
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2671
|
+
return de_CommandError(output, context);
|
|
2672
|
+
}
|
|
2673
|
+
const contents = (0, import_smithy_client.map)({
|
|
2674
|
+
$metadata: deserializeMetadata(output)
|
|
2675
|
+
});
|
|
2676
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2677
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2678
|
+
DomainName: import_smithy_client.expectString,
|
|
2679
|
+
Estimate: import_smithy_client.expectString,
|
|
2680
|
+
EstimateId: import_smithy_client.expectString,
|
|
2681
|
+
Message: import_smithy_client.expectString,
|
|
2682
|
+
Status: import_smithy_client.expectString
|
|
2683
|
+
});
|
|
2684
|
+
Object.assign(contents, doc);
|
|
2685
|
+
(0, import_smithy_client.map)(contents, {
|
|
2686
|
+
StatusCode: [, output.statusCode]
|
|
2687
|
+
});
|
|
2688
|
+
return contents;
|
|
2689
|
+
}, "de_GetSegmentEstimateCommand");
|
|
2690
|
+
var de_GetSegmentMembershipCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2691
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2692
|
+
return de_CommandError(output, context);
|
|
2693
|
+
}
|
|
2694
|
+
const contents = (0, import_smithy_client.map)({
|
|
2695
|
+
$metadata: deserializeMetadata(output)
|
|
2696
|
+
});
|
|
2697
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2698
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2699
|
+
Failures: [, (_) => de_Failures(_, context), `Failures`],
|
|
2700
|
+
Profiles: [, (_) => de_Profiles(_, context), `Profiles`],
|
|
2701
|
+
SegmentDefinitionName: [, import_smithy_client.expectString, `SegmentDefinitionName`]
|
|
2702
|
+
});
|
|
2703
|
+
Object.assign(contents, doc);
|
|
2704
|
+
return contents;
|
|
2705
|
+
}, "de_GetSegmentMembershipCommand");
|
|
2706
|
+
var de_GetSegmentSnapshotCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2707
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2708
|
+
return de_CommandError(output, context);
|
|
2709
|
+
}
|
|
2710
|
+
const contents = (0, import_smithy_client.map)({
|
|
2711
|
+
$metadata: deserializeMetadata(output)
|
|
2712
|
+
});
|
|
2713
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2714
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2715
|
+
DataFormat: import_smithy_client.expectString,
|
|
2716
|
+
DestinationUri: import_smithy_client.expectString,
|
|
2717
|
+
EncryptionKey: import_smithy_client.expectString,
|
|
2718
|
+
RoleArn: import_smithy_client.expectString,
|
|
2719
|
+
SnapshotId: import_smithy_client.expectString,
|
|
2720
|
+
Status: import_smithy_client.expectString,
|
|
2721
|
+
StatusMessage: import_smithy_client.expectString
|
|
2136
2722
|
});
|
|
2137
2723
|
Object.assign(contents, doc);
|
|
2138
2724
|
return contents;
|
|
2139
|
-
}, "
|
|
2725
|
+
}, "de_GetSegmentSnapshotCommand");
|
|
2140
2726
|
var de_GetSimilarProfilesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2141
2727
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2142
2728
|
return de_CommandError(output, context);
|
|
@@ -2299,6 +2885,40 @@ var de_ListIntegrationsCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
2299
2885
|
Object.assign(contents, doc);
|
|
2300
2886
|
return contents;
|
|
2301
2887
|
}, "de_ListIntegrationsCommand");
|
|
2888
|
+
var de_ListObjectTypeAttributesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2889
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2890
|
+
return de_CommandError(output, context);
|
|
2891
|
+
}
|
|
2892
|
+
const contents = (0, import_smithy_client.map)({
|
|
2893
|
+
$metadata: deserializeMetadata(output)
|
|
2894
|
+
});
|
|
2895
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2896
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2897
|
+
Items: (_) => de_ListObjectTypeAttributesList(_, context),
|
|
2898
|
+
NextToken: import_smithy_client.expectString
|
|
2899
|
+
});
|
|
2900
|
+
Object.assign(contents, doc);
|
|
2901
|
+
return contents;
|
|
2902
|
+
}, "de_ListObjectTypeAttributesCommand");
|
|
2903
|
+
var de_ListProfileAttributeValuesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2904
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2905
|
+
return de_CommandError(output, context);
|
|
2906
|
+
}
|
|
2907
|
+
const contents = (0, import_smithy_client.map)({
|
|
2908
|
+
$metadata: deserializeMetadata(output)
|
|
2909
|
+
});
|
|
2910
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2911
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2912
|
+
AttributeName: import_smithy_client.expectString,
|
|
2913
|
+
DomainName: import_smithy_client.expectString,
|
|
2914
|
+
Items: import_smithy_client._json
|
|
2915
|
+
});
|
|
2916
|
+
Object.assign(contents, doc);
|
|
2917
|
+
(0, import_smithy_client.map)(contents, {
|
|
2918
|
+
StatusCode: [, output.statusCode]
|
|
2919
|
+
});
|
|
2920
|
+
return contents;
|
|
2921
|
+
}, "de_ListProfileAttributeValuesCommand");
|
|
2302
2922
|
var de_ListProfileObjectsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2303
2923
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2304
2924
|
return de_CommandError(output, context);
|
|
@@ -2359,6 +2979,21 @@ var de_ListRuleBasedMatchesCommand = /* @__PURE__ */ __name(async (output, conte
|
|
|
2359
2979
|
Object.assign(contents, doc);
|
|
2360
2980
|
return contents;
|
|
2361
2981
|
}, "de_ListRuleBasedMatchesCommand");
|
|
2982
|
+
var de_ListSegmentDefinitionsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2983
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2984
|
+
return de_CommandError(output, context);
|
|
2985
|
+
}
|
|
2986
|
+
const contents = (0, import_smithy_client.map)({
|
|
2987
|
+
$metadata: deserializeMetadata(output)
|
|
2988
|
+
});
|
|
2989
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2990
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
2991
|
+
Items: [, (_) => de_SegmentDefinitionsList(_, context), `Items`],
|
|
2992
|
+
NextToken: [, import_smithy_client.expectString, `NextToken`]
|
|
2993
|
+
});
|
|
2994
|
+
Object.assign(contents, doc);
|
|
2995
|
+
return contents;
|
|
2996
|
+
}, "de_ListSegmentDefinitionsCommand");
|
|
2362
2997
|
var de_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2363
2998
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2364
2999
|
return de_CommandError(output, context);
|
|
@@ -2656,12 +3291,28 @@ var de_ThrottlingExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, cont
|
|
|
2656
3291
|
});
|
|
2657
3292
|
return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body);
|
|
2658
3293
|
}, "de_ThrottlingExceptionRes");
|
|
3294
|
+
var se_AddressDimension = /* @__PURE__ */ __name((input, context) => {
|
|
3295
|
+
return (0, import_smithy_client.take)(input, {
|
|
3296
|
+
City: [, (_) => se_ProfileDimension(_, context), `City`],
|
|
3297
|
+
Country: [, (_) => se_ProfileDimension(_, context), `Country`],
|
|
3298
|
+
County: [, (_) => se_ProfileDimension(_, context), `County`],
|
|
3299
|
+
PostalCode: [, (_) => se_ProfileDimension(_, context), `PostalCode`],
|
|
3300
|
+
Province: [, (_) => se_ProfileDimension(_, context), `Province`],
|
|
3301
|
+
State: [, (_) => se_ProfileDimension(_, context), `State`]
|
|
3302
|
+
});
|
|
3303
|
+
}, "se_AddressDimension");
|
|
2659
3304
|
var se_AppflowIntegration = /* @__PURE__ */ __name((input, context) => {
|
|
2660
3305
|
return (0, import_smithy_client.take)(input, {
|
|
2661
3306
|
Batches: (_) => se_Batches(_, context),
|
|
2662
3307
|
FlowDefinition: (_) => se_FlowDefinition(_, context)
|
|
2663
3308
|
});
|
|
2664
3309
|
}, "se_AppflowIntegration");
|
|
3310
|
+
var se_AttributeDimension = /* @__PURE__ */ __name((input, context) => {
|
|
3311
|
+
return (0, import_smithy_client.take)(input, {
|
|
3312
|
+
DimensionType: [, , `DimensionType`],
|
|
3313
|
+
Values: [, import_smithy_client._json, `Values`]
|
|
3314
|
+
});
|
|
3315
|
+
}, "se_AttributeDimension");
|
|
2665
3316
|
var se_AutoMerging = /* @__PURE__ */ __name((input, context) => {
|
|
2666
3317
|
return (0, import_smithy_client.take)(input, {
|
|
2667
3318
|
ConflictResolution: import_smithy_client._json,
|
|
@@ -2681,6 +3332,55 @@ var se_Batches = /* @__PURE__ */ __name((input, context) => {
|
|
|
2681
3332
|
return se_Batch(entry, context);
|
|
2682
3333
|
});
|
|
2683
3334
|
}, "se_Batches");
|
|
3335
|
+
var se_CalculatedAttributeDimension = /* @__PURE__ */ __name((input, context) => {
|
|
3336
|
+
return (0, import_smithy_client.take)(input, {
|
|
3337
|
+
ConditionOverrides: [, import_smithy_client._json, `ConditionOverrides`],
|
|
3338
|
+
DimensionType: [, , `DimensionType`],
|
|
3339
|
+
Values: [, import_smithy_client._json, `Values`]
|
|
3340
|
+
});
|
|
3341
|
+
}, "se_CalculatedAttributeDimension");
|
|
3342
|
+
var se_CalculatedCustomAttributes = /* @__PURE__ */ __name((input, context) => {
|
|
3343
|
+
return Object.entries(input).reduce((acc, [key, value]) => {
|
|
3344
|
+
if (value === null) {
|
|
3345
|
+
return acc;
|
|
3346
|
+
}
|
|
3347
|
+
acc[key] = se_CalculatedAttributeDimension(value, context);
|
|
3348
|
+
return acc;
|
|
3349
|
+
}, {});
|
|
3350
|
+
}, "se_CalculatedCustomAttributes");
|
|
3351
|
+
var se_CustomAttributes = /* @__PURE__ */ __name((input, context) => {
|
|
3352
|
+
return Object.entries(input).reduce((acc, [key, value]) => {
|
|
3353
|
+
if (value === null) {
|
|
3354
|
+
return acc;
|
|
3355
|
+
}
|
|
3356
|
+
acc[key] = se_AttributeDimension(value, context);
|
|
3357
|
+
return acc;
|
|
3358
|
+
}, {});
|
|
3359
|
+
}, "se_CustomAttributes");
|
|
3360
|
+
var se_DateDimension = /* @__PURE__ */ __name((input, context) => {
|
|
3361
|
+
return (0, import_smithy_client.take)(input, {
|
|
3362
|
+
DimensionType: [, , `DimensionType`],
|
|
3363
|
+
Values: [, import_smithy_client._json, `Values`]
|
|
3364
|
+
});
|
|
3365
|
+
}, "se_DateDimension");
|
|
3366
|
+
var se_Dimension = /* @__PURE__ */ __name((input, context) => {
|
|
3367
|
+
return Dimension.visit(input, {
|
|
3368
|
+
CalculatedAttributes: (value) => ({ CalculatedAttributes: se_CalculatedCustomAttributes(value, context) }),
|
|
3369
|
+
ProfileAttributes: (value) => ({ ProfileAttributes: se_ProfileAttributes(value, context) }),
|
|
3370
|
+
_: (name, value) => ({ name: value })
|
|
3371
|
+
});
|
|
3372
|
+
}, "se_Dimension");
|
|
3373
|
+
var se_DimensionList = /* @__PURE__ */ __name((input, context) => {
|
|
3374
|
+
return input.filter((e) => e != null).map((entry) => {
|
|
3375
|
+
return se_Dimension(entry, context);
|
|
3376
|
+
});
|
|
3377
|
+
}, "se_DimensionList");
|
|
3378
|
+
var se_ExtraLengthValueProfileDimension = /* @__PURE__ */ __name((input, context) => {
|
|
3379
|
+
return (0, import_smithy_client.take)(input, {
|
|
3380
|
+
DimensionType: [, , `DimensionType`],
|
|
3381
|
+
Values: [, import_smithy_client._json, `Values`]
|
|
3382
|
+
});
|
|
3383
|
+
}, "se_ExtraLengthValueProfileDimension");
|
|
2684
3384
|
var se_FlowDefinition = /* @__PURE__ */ __name((input, context) => {
|
|
2685
3385
|
return (0, import_smithy_client.take)(input, {
|
|
2686
3386
|
Description: [],
|
|
@@ -2691,6 +3391,14 @@ var se_FlowDefinition = /* @__PURE__ */ __name((input, context) => {
|
|
|
2691
3391
|
TriggerConfig: (_) => se_TriggerConfig(_, context)
|
|
2692
3392
|
});
|
|
2693
3393
|
}, "se_FlowDefinition");
|
|
3394
|
+
var se_Group = /* @__PURE__ */ __name((input, context) => {
|
|
3395
|
+
return (0, import_smithy_client.take)(input, {
|
|
3396
|
+
Dimensions: [, (_) => se_DimensionList(_, context), `Dimensions`],
|
|
3397
|
+
SourceSegments: [, (_) => se_SourceSegmentList(_, context), `SourceSegments`],
|
|
3398
|
+
SourceType: [, , `SourceType`],
|
|
3399
|
+
Type: [, , `Type`]
|
|
3400
|
+
});
|
|
3401
|
+
}, "se_Group");
|
|
2694
3402
|
var se_IntegrationConfig = /* @__PURE__ */ __name((input, context) => {
|
|
2695
3403
|
return (0, import_smithy_client.take)(input, {
|
|
2696
3404
|
AppflowIntegration: (_) => se_AppflowIntegration(_, context)
|
|
@@ -2704,6 +3412,37 @@ var se_MatchingRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
2704
3412
|
JobSchedule: import_smithy_client._json
|
|
2705
3413
|
});
|
|
2706
3414
|
}, "se_MatchingRequest");
|
|
3415
|
+
var se_ProfileAttributes = /* @__PURE__ */ __name((input, context) => {
|
|
3416
|
+
return (0, import_smithy_client.take)(input, {
|
|
3417
|
+
AccountNumber: [, (_) => se_ProfileDimension(_, context), `AccountNumber`],
|
|
3418
|
+
AdditionalInformation: [, (_) => se_ExtraLengthValueProfileDimension(_, context), `AdditionalInformation`],
|
|
3419
|
+
Address: [, (_) => se_AddressDimension(_, context), `Address`],
|
|
3420
|
+
Attributes: [, (_) => se_CustomAttributes(_, context), `Attributes`],
|
|
3421
|
+
BillingAddress: [, (_) => se_AddressDimension(_, context), `BillingAddress`],
|
|
3422
|
+
BirthDate: [, (_) => se_DateDimension(_, context), `BirthDate`],
|
|
3423
|
+
BusinessEmailAddress: [, (_) => se_ProfileDimension(_, context), `BusinessEmailAddress`],
|
|
3424
|
+
BusinessName: [, (_) => se_ProfileDimension(_, context), `BusinessName`],
|
|
3425
|
+
BusinessPhoneNumber: [, (_) => se_ProfileDimension(_, context), `BusinessPhoneNumber`],
|
|
3426
|
+
EmailAddress: [, (_) => se_ProfileDimension(_, context), `EmailAddress`],
|
|
3427
|
+
FirstName: [, (_) => se_ProfileDimension(_, context), `FirstName`],
|
|
3428
|
+
GenderString: [, (_) => se_ProfileDimension(_, context), `GenderString`],
|
|
3429
|
+
HomePhoneNumber: [, (_) => se_ProfileDimension(_, context), `HomePhoneNumber`],
|
|
3430
|
+
LastName: [, (_) => se_ProfileDimension(_, context), `LastName`],
|
|
3431
|
+
MailingAddress: [, (_) => se_AddressDimension(_, context), `MailingAddress`],
|
|
3432
|
+
MiddleName: [, (_) => se_ProfileDimension(_, context), `MiddleName`],
|
|
3433
|
+
MobilePhoneNumber: [, (_) => se_ProfileDimension(_, context), `MobilePhoneNumber`],
|
|
3434
|
+
PartyTypeString: [, (_) => se_ProfileDimension(_, context), `PartyTypeString`],
|
|
3435
|
+
PersonalEmailAddress: [, (_) => se_ProfileDimension(_, context), `PersonalEmailAddress`],
|
|
3436
|
+
PhoneNumber: [, (_) => se_ProfileDimension(_, context), `PhoneNumber`],
|
|
3437
|
+
ShippingAddress: [, (_) => se_AddressDimension(_, context), `ShippingAddress`]
|
|
3438
|
+
});
|
|
3439
|
+
}, "se_ProfileAttributes");
|
|
3440
|
+
var se_ProfileDimension = /* @__PURE__ */ __name((input, context) => {
|
|
3441
|
+
return (0, import_smithy_client.take)(input, {
|
|
3442
|
+
DimensionType: [, , `DimensionType`],
|
|
3443
|
+
Values: [, import_smithy_client._json, `Values`]
|
|
3444
|
+
});
|
|
3445
|
+
}, "se_ProfileDimension");
|
|
2707
3446
|
var se_ScheduledTriggerProperties = /* @__PURE__ */ __name((input, context) => {
|
|
2708
3447
|
return (0, import_smithy_client.take)(input, {
|
|
2709
3448
|
DataPullMode: [],
|
|
@@ -2715,6 +3454,33 @@ var se_ScheduledTriggerProperties = /* @__PURE__ */ __name((input, context) => {
|
|
|
2715
3454
|
Timezone: []
|
|
2716
3455
|
});
|
|
2717
3456
|
}, "se_ScheduledTriggerProperties");
|
|
3457
|
+
var se_SegmentGroup = /* @__PURE__ */ __name((input, context) => {
|
|
3458
|
+
return (0, import_smithy_client.take)(input, {
|
|
3459
|
+
Groups: [, (_) => se_SegmentGroupList(_, context), `Groups`],
|
|
3460
|
+
Include: [, , `Include`]
|
|
3461
|
+
});
|
|
3462
|
+
}, "se_SegmentGroup");
|
|
3463
|
+
var se_SegmentGroupList = /* @__PURE__ */ __name((input, context) => {
|
|
3464
|
+
return input.filter((e) => e != null).map((entry) => {
|
|
3465
|
+
return se_Group(entry, context);
|
|
3466
|
+
});
|
|
3467
|
+
}, "se_SegmentGroupList");
|
|
3468
|
+
var se_SegmentGroupStructure = /* @__PURE__ */ __name((input, context) => {
|
|
3469
|
+
return (0, import_smithy_client.take)(input, {
|
|
3470
|
+
Groups: (_) => se_SegmentGroupList(_, context),
|
|
3471
|
+
Include: []
|
|
3472
|
+
});
|
|
3473
|
+
}, "se_SegmentGroupStructure");
|
|
3474
|
+
var se_SourceSegment = /* @__PURE__ */ __name((input, context) => {
|
|
3475
|
+
return (0, import_smithy_client.take)(input, {
|
|
3476
|
+
SegmentDefinitionName: [, , `SegmentDefinitionName`]
|
|
3477
|
+
});
|
|
3478
|
+
}, "se_SourceSegment");
|
|
3479
|
+
var se_SourceSegmentList = /* @__PURE__ */ __name((input, context) => {
|
|
3480
|
+
return input.filter((e) => e != null).map((entry) => {
|
|
3481
|
+
return se_SourceSegment(entry, context);
|
|
3482
|
+
});
|
|
3483
|
+
}, "se_SourceSegmentList");
|
|
2718
3484
|
var se_TriggerConfig = /* @__PURE__ */ __name((input, context) => {
|
|
2719
3485
|
return (0, import_smithy_client.take)(input, {
|
|
2720
3486
|
TriggerProperties: (_) => se_TriggerProperties(_, context),
|
|
@@ -2726,6 +3492,16 @@ var se_TriggerProperties = /* @__PURE__ */ __name((input, context) => {
|
|
|
2726
3492
|
Scheduled: (_) => se_ScheduledTriggerProperties(_, context)
|
|
2727
3493
|
});
|
|
2728
3494
|
}, "se_TriggerProperties");
|
|
3495
|
+
var de_AddressDimension = /* @__PURE__ */ __name((output, context) => {
|
|
3496
|
+
return (0, import_smithy_client.take)(output, {
|
|
3497
|
+
City: [, (_) => de_ProfileDimension(_, context), `City`],
|
|
3498
|
+
Country: [, (_) => de_ProfileDimension(_, context), `Country`],
|
|
3499
|
+
County: [, (_) => de_ProfileDimension(_, context), `County`],
|
|
3500
|
+
PostalCode: [, (_) => de_ProfileDimension(_, context), `PostalCode`],
|
|
3501
|
+
Province: [, (_) => de_ProfileDimension(_, context), `Province`],
|
|
3502
|
+
State: [, (_) => de_ProfileDimension(_, context), `State`]
|
|
3503
|
+
});
|
|
3504
|
+
}, "de_AddressDimension");
|
|
2729
3505
|
var de_AppflowIntegrationWorkflowStep = /* @__PURE__ */ __name((output, context) => {
|
|
2730
3506
|
return (0, import_smithy_client.take)(output, {
|
|
2731
3507
|
BatchRecordsEndTime: import_smithy_client.expectString,
|
|
@@ -2738,6 +3514,12 @@ var de_AppflowIntegrationWorkflowStep = /* @__PURE__ */ __name((output, context)
|
|
|
2738
3514
|
Status: import_smithy_client.expectString
|
|
2739
3515
|
});
|
|
2740
3516
|
}, "de_AppflowIntegrationWorkflowStep");
|
|
3517
|
+
var de_AttributeDimension = /* @__PURE__ */ __name((output, context) => {
|
|
3518
|
+
return (0, import_smithy_client.take)(output, {
|
|
3519
|
+
DimensionType: [, import_smithy_client.expectString, `DimensionType`],
|
|
3520
|
+
Values: [, import_smithy_client._json, `Values`]
|
|
3521
|
+
});
|
|
3522
|
+
}, "de_AttributeDimension");
|
|
2741
3523
|
var de_AutoMerging = /* @__PURE__ */ __name((output, context) => {
|
|
2742
3524
|
return (0, import_smithy_client.take)(output, {
|
|
2743
3525
|
ConflictResolution: import_smithy_client._json,
|
|
@@ -2752,6 +3534,40 @@ var de_CalculatedAttributeDefinitionsList = /* @__PURE__ */ __name((output, cont
|
|
|
2752
3534
|
});
|
|
2753
3535
|
return retVal;
|
|
2754
3536
|
}, "de_CalculatedAttributeDefinitionsList");
|
|
3537
|
+
var de_CalculatedAttributeDimension = /* @__PURE__ */ __name((output, context) => {
|
|
3538
|
+
return (0, import_smithy_client.take)(output, {
|
|
3539
|
+
ConditionOverrides: [, import_smithy_client._json, `ConditionOverrides`],
|
|
3540
|
+
DimensionType: [, import_smithy_client.expectString, `DimensionType`],
|
|
3541
|
+
Values: [, import_smithy_client._json, `Values`]
|
|
3542
|
+
});
|
|
3543
|
+
}, "de_CalculatedAttributeDimension");
|
|
3544
|
+
var de_CalculatedCustomAttributes = /* @__PURE__ */ __name((output, context) => {
|
|
3545
|
+
return Object.entries(output).reduce(
|
|
3546
|
+
(acc, [key, value]) => {
|
|
3547
|
+
if (value === null) {
|
|
3548
|
+
return acc;
|
|
3549
|
+
}
|
|
3550
|
+
acc[key] = de_CalculatedAttributeDimension(value, context);
|
|
3551
|
+
return acc;
|
|
3552
|
+
},
|
|
3553
|
+
{}
|
|
3554
|
+
);
|
|
3555
|
+
}, "de_CalculatedCustomAttributes");
|
|
3556
|
+
var de_CustomAttributes = /* @__PURE__ */ __name((output, context) => {
|
|
3557
|
+
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
3558
|
+
if (value === null) {
|
|
3559
|
+
return acc;
|
|
3560
|
+
}
|
|
3561
|
+
acc[key] = de_AttributeDimension(value, context);
|
|
3562
|
+
return acc;
|
|
3563
|
+
}, {});
|
|
3564
|
+
}, "de_CustomAttributes");
|
|
3565
|
+
var de_DateDimension = /* @__PURE__ */ __name((output, context) => {
|
|
3566
|
+
return (0, import_smithy_client.take)(output, {
|
|
3567
|
+
DimensionType: [, import_smithy_client.expectString, `DimensionType`],
|
|
3568
|
+
Values: [, import_smithy_client._json, `Values`]
|
|
3569
|
+
});
|
|
3570
|
+
}, "de_DateDimension");
|
|
2755
3571
|
var de_DestinationSummary = /* @__PURE__ */ __name((output, context) => {
|
|
2756
3572
|
return (0, import_smithy_client.take)(output, {
|
|
2757
3573
|
Status: import_smithy_client.expectString,
|
|
@@ -2759,6 +3575,25 @@ var de_DestinationSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
2759
3575
|
Uri: import_smithy_client.expectString
|
|
2760
3576
|
});
|
|
2761
3577
|
}, "de_DestinationSummary");
|
|
3578
|
+
var de_Dimension = /* @__PURE__ */ __name((output, context) => {
|
|
3579
|
+
if (output.CalculatedAttributes != null) {
|
|
3580
|
+
return {
|
|
3581
|
+
CalculatedAttributes: de_CalculatedCustomAttributes(output.CalculatedAttributes, context)
|
|
3582
|
+
};
|
|
3583
|
+
}
|
|
3584
|
+
if (output.ProfileAttributes != null) {
|
|
3585
|
+
return {
|
|
3586
|
+
ProfileAttributes: de_ProfileAttributes(output.ProfileAttributes, context)
|
|
3587
|
+
};
|
|
3588
|
+
}
|
|
3589
|
+
return { $unknown: Object.entries(output)[0] };
|
|
3590
|
+
}, "de_Dimension");
|
|
3591
|
+
var de_DimensionList = /* @__PURE__ */ __name((output, context) => {
|
|
3592
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
3593
|
+
return de_Dimension((0, import_core2.awsExpectUnion)(entry), context);
|
|
3594
|
+
});
|
|
3595
|
+
return retVal;
|
|
3596
|
+
}, "de_DimensionList");
|
|
2762
3597
|
var de_DomainList = /* @__PURE__ */ __name((output, context) => {
|
|
2763
3598
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
2764
3599
|
return de_ListDomainItem(entry, context);
|
|
@@ -2790,6 +3625,26 @@ var de_EventStreamSummaryList = /* @__PURE__ */ __name((output, context) => {
|
|
|
2790
3625
|
});
|
|
2791
3626
|
return retVal;
|
|
2792
3627
|
}, "de_EventStreamSummaryList");
|
|
3628
|
+
var de_ExtraLengthValueProfileDimension = /* @__PURE__ */ __name((output, context) => {
|
|
3629
|
+
return (0, import_smithy_client.take)(output, {
|
|
3630
|
+
DimensionType: [, import_smithy_client.expectString, `DimensionType`],
|
|
3631
|
+
Values: [, import_smithy_client._json, `Values`]
|
|
3632
|
+
});
|
|
3633
|
+
}, "de_ExtraLengthValueProfileDimension");
|
|
3634
|
+
var de_Failures = /* @__PURE__ */ __name((output, context) => {
|
|
3635
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
3636
|
+
return de_ProfileQueryFailures(entry, context);
|
|
3637
|
+
});
|
|
3638
|
+
return retVal;
|
|
3639
|
+
}, "de_Failures");
|
|
3640
|
+
var de_Group = /* @__PURE__ */ __name((output, context) => {
|
|
3641
|
+
return (0, import_smithy_client.take)(output, {
|
|
3642
|
+
Dimensions: [, (_) => de_DimensionList(_, context), `Dimensions`],
|
|
3643
|
+
SourceSegments: [, (_) => de_SourceSegmentList(_, context), `SourceSegments`],
|
|
3644
|
+
SourceType: [, import_smithy_client.expectString, `SourceType`],
|
|
3645
|
+
Type: [, import_smithy_client.expectString, `Type`]
|
|
3646
|
+
});
|
|
3647
|
+
}, "de_Group");
|
|
2793
3648
|
var de_IdentityResolutionJob = /* @__PURE__ */ __name((output, context) => {
|
|
2794
3649
|
return (0, import_smithy_client.take)(output, {
|
|
2795
3650
|
DomainName: import_smithy_client.expectString,
|
|
@@ -2846,6 +3701,18 @@ var de_ListIntegrationItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
2846
3701
|
WorkflowId: import_smithy_client.expectString
|
|
2847
3702
|
});
|
|
2848
3703
|
}, "de_ListIntegrationItem");
|
|
3704
|
+
var de_ListObjectTypeAttributeItem = /* @__PURE__ */ __name((output, context) => {
|
|
3705
|
+
return (0, import_smithy_client.take)(output, {
|
|
3706
|
+
AttributeName: import_smithy_client.expectString,
|
|
3707
|
+
LastUpdatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
3708
|
+
});
|
|
3709
|
+
}, "de_ListObjectTypeAttributeItem");
|
|
3710
|
+
var de_ListObjectTypeAttributesList = /* @__PURE__ */ __name((output, context) => {
|
|
3711
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
3712
|
+
return de_ListObjectTypeAttributeItem(entry, context);
|
|
3713
|
+
});
|
|
3714
|
+
return retVal;
|
|
3715
|
+
}, "de_ListObjectTypeAttributesList");
|
|
2849
3716
|
var de_ListProfileObjectTypeItem = /* @__PURE__ */ __name((output, context) => {
|
|
2850
3717
|
return (0, import_smithy_client.take)(output, {
|
|
2851
3718
|
CreatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
@@ -2888,12 +3755,102 @@ var de_MatchItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
2888
3755
|
ProfileIds: import_smithy_client._json
|
|
2889
3756
|
});
|
|
2890
3757
|
}, "de_MatchItem");
|
|
3758
|
+
var de_ProfileAttributes = /* @__PURE__ */ __name((output, context) => {
|
|
3759
|
+
return (0, import_smithy_client.take)(output, {
|
|
3760
|
+
AccountNumber: [, (_) => de_ProfileDimension(_, context), `AccountNumber`],
|
|
3761
|
+
AdditionalInformation: [, (_) => de_ExtraLengthValueProfileDimension(_, context), `AdditionalInformation`],
|
|
3762
|
+
Address: [, (_) => de_AddressDimension(_, context), `Address`],
|
|
3763
|
+
Attributes: [, (_) => de_CustomAttributes(_, context), `Attributes`],
|
|
3764
|
+
BillingAddress: [, (_) => de_AddressDimension(_, context), `BillingAddress`],
|
|
3765
|
+
BirthDate: [, (_) => de_DateDimension(_, context), `BirthDate`],
|
|
3766
|
+
BusinessEmailAddress: [, (_) => de_ProfileDimension(_, context), `BusinessEmailAddress`],
|
|
3767
|
+
BusinessName: [, (_) => de_ProfileDimension(_, context), `BusinessName`],
|
|
3768
|
+
BusinessPhoneNumber: [, (_) => de_ProfileDimension(_, context), `BusinessPhoneNumber`],
|
|
3769
|
+
EmailAddress: [, (_) => de_ProfileDimension(_, context), `EmailAddress`],
|
|
3770
|
+
FirstName: [, (_) => de_ProfileDimension(_, context), `FirstName`],
|
|
3771
|
+
GenderString: [, (_) => de_ProfileDimension(_, context), `GenderString`],
|
|
3772
|
+
HomePhoneNumber: [, (_) => de_ProfileDimension(_, context), `HomePhoneNumber`],
|
|
3773
|
+
LastName: [, (_) => de_ProfileDimension(_, context), `LastName`],
|
|
3774
|
+
MailingAddress: [, (_) => de_AddressDimension(_, context), `MailingAddress`],
|
|
3775
|
+
MiddleName: [, (_) => de_ProfileDimension(_, context), `MiddleName`],
|
|
3776
|
+
MobilePhoneNumber: [, (_) => de_ProfileDimension(_, context), `MobilePhoneNumber`],
|
|
3777
|
+
PartyTypeString: [, (_) => de_ProfileDimension(_, context), `PartyTypeString`],
|
|
3778
|
+
PersonalEmailAddress: [, (_) => de_ProfileDimension(_, context), `PersonalEmailAddress`],
|
|
3779
|
+
PhoneNumber: [, (_) => de_ProfileDimension(_, context), `PhoneNumber`],
|
|
3780
|
+
ShippingAddress: [, (_) => de_AddressDimension(_, context), `ShippingAddress`]
|
|
3781
|
+
});
|
|
3782
|
+
}, "de_ProfileAttributes");
|
|
3783
|
+
var de_ProfileDimension = /* @__PURE__ */ __name((output, context) => {
|
|
3784
|
+
return (0, import_smithy_client.take)(output, {
|
|
3785
|
+
DimensionType: [, import_smithy_client.expectString, `DimensionType`],
|
|
3786
|
+
Values: [, import_smithy_client._json, `Values`]
|
|
3787
|
+
});
|
|
3788
|
+
}, "de_ProfileDimension");
|
|
2891
3789
|
var de_ProfileObjectTypeList = /* @__PURE__ */ __name((output, context) => {
|
|
2892
3790
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
2893
3791
|
return de_ListProfileObjectTypeItem(entry, context);
|
|
2894
3792
|
});
|
|
2895
3793
|
return retVal;
|
|
2896
3794
|
}, "de_ProfileObjectTypeList");
|
|
3795
|
+
var de_ProfileQueryFailures = /* @__PURE__ */ __name((output, context) => {
|
|
3796
|
+
return (0, import_smithy_client.take)(output, {
|
|
3797
|
+
Message: [, import_smithy_client.expectString, `Message`],
|
|
3798
|
+
ProfileId: [, import_smithy_client.expectString, `ProfileId`],
|
|
3799
|
+
Status: [, import_smithy_client.expectInt32, `Status`]
|
|
3800
|
+
});
|
|
3801
|
+
}, "de_ProfileQueryFailures");
|
|
3802
|
+
var de_ProfileQueryResult = /* @__PURE__ */ __name((output, context) => {
|
|
3803
|
+
return (0, import_smithy_client.take)(output, {
|
|
3804
|
+
Profile: [, import_smithy_client._json, `Profile`],
|
|
3805
|
+
ProfileId: [, import_smithy_client.expectString, `ProfileId`],
|
|
3806
|
+
QueryResult: [, import_smithy_client.expectString, `QueryResult`]
|
|
3807
|
+
});
|
|
3808
|
+
}, "de_ProfileQueryResult");
|
|
3809
|
+
var de_Profiles = /* @__PURE__ */ __name((output, context) => {
|
|
3810
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
3811
|
+
return de_ProfileQueryResult(entry, context);
|
|
3812
|
+
});
|
|
3813
|
+
return retVal;
|
|
3814
|
+
}, "de_Profiles");
|
|
3815
|
+
var de_SegmentDefinitionItem = /* @__PURE__ */ __name((output, context) => {
|
|
3816
|
+
return (0, import_smithy_client.take)(output, {
|
|
3817
|
+
CreatedAt: [, (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), `CreatedAt`],
|
|
3818
|
+
Description: [, import_smithy_client.expectString, `Description`],
|
|
3819
|
+
DisplayName: [, import_smithy_client.expectString, `DisplayName`],
|
|
3820
|
+
SegmentDefinitionArn: [, import_smithy_client.expectString, `SegmentDefinitionArn`],
|
|
3821
|
+
SegmentDefinitionName: [, import_smithy_client.expectString, `SegmentDefinitionName`],
|
|
3822
|
+
Tags: [, import_smithy_client._json, `Tags`]
|
|
3823
|
+
});
|
|
3824
|
+
}, "de_SegmentDefinitionItem");
|
|
3825
|
+
var de_SegmentDefinitionsList = /* @__PURE__ */ __name((output, context) => {
|
|
3826
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
3827
|
+
return de_SegmentDefinitionItem(entry, context);
|
|
3828
|
+
});
|
|
3829
|
+
return retVal;
|
|
3830
|
+
}, "de_SegmentDefinitionsList");
|
|
3831
|
+
var de_SegmentGroup = /* @__PURE__ */ __name((output, context) => {
|
|
3832
|
+
return (0, import_smithy_client.take)(output, {
|
|
3833
|
+
Groups: [, (_) => de_SegmentGroupList(_, context), `Groups`],
|
|
3834
|
+
Include: [, import_smithy_client.expectString, `Include`]
|
|
3835
|
+
});
|
|
3836
|
+
}, "de_SegmentGroup");
|
|
3837
|
+
var de_SegmentGroupList = /* @__PURE__ */ __name((output, context) => {
|
|
3838
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
3839
|
+
return de_Group(entry, context);
|
|
3840
|
+
});
|
|
3841
|
+
return retVal;
|
|
3842
|
+
}, "de_SegmentGroupList");
|
|
3843
|
+
var de_SourceSegment = /* @__PURE__ */ __name((output, context) => {
|
|
3844
|
+
return (0, import_smithy_client.take)(output, {
|
|
3845
|
+
SegmentDefinitionName: [, import_smithy_client.expectString, `SegmentDefinitionName`]
|
|
3846
|
+
});
|
|
3847
|
+
}, "de_SourceSegment");
|
|
3848
|
+
var de_SourceSegmentList = /* @__PURE__ */ __name((output, context) => {
|
|
3849
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
3850
|
+
return de_SourceSegment(entry, context);
|
|
3851
|
+
});
|
|
3852
|
+
return retVal;
|
|
3853
|
+
}, "de_SourceSegmentList");
|
|
2897
3854
|
var de_WorkflowList = /* @__PURE__ */ __name((output, context) => {
|
|
2898
3855
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
2899
3856
|
return de_ListWorkflowsItem(entry, context);
|
|
@@ -2936,6 +3893,37 @@ var _AddProfileKeyCommand = class _AddProfileKeyCommand extends import_smithy_cl
|
|
|
2936
3893
|
__name(_AddProfileKeyCommand, "AddProfileKeyCommand");
|
|
2937
3894
|
var AddProfileKeyCommand = _AddProfileKeyCommand;
|
|
2938
3895
|
|
|
3896
|
+
// src/commands/BatchGetCalculatedAttributeForProfileCommand.ts
|
|
3897
|
+
|
|
3898
|
+
|
|
3899
|
+
|
|
3900
|
+
var _BatchGetCalculatedAttributeForProfileCommand = class _BatchGetCalculatedAttributeForProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3901
|
+
return [
|
|
3902
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3903
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3904
|
+
];
|
|
3905
|
+
}).s("CustomerProfiles_20200815", "BatchGetCalculatedAttributeForProfile", {}).n("CustomerProfilesClient", "BatchGetCalculatedAttributeForProfileCommand").f(
|
|
3906
|
+
BatchGetCalculatedAttributeForProfileRequestFilterSensitiveLog,
|
|
3907
|
+
BatchGetCalculatedAttributeForProfileResponseFilterSensitiveLog
|
|
3908
|
+
).ser(se_BatchGetCalculatedAttributeForProfileCommand).de(de_BatchGetCalculatedAttributeForProfileCommand).build() {
|
|
3909
|
+
};
|
|
3910
|
+
__name(_BatchGetCalculatedAttributeForProfileCommand, "BatchGetCalculatedAttributeForProfileCommand");
|
|
3911
|
+
var BatchGetCalculatedAttributeForProfileCommand = _BatchGetCalculatedAttributeForProfileCommand;
|
|
3912
|
+
|
|
3913
|
+
// src/commands/BatchGetProfileCommand.ts
|
|
3914
|
+
|
|
3915
|
+
|
|
3916
|
+
|
|
3917
|
+
var _BatchGetProfileCommand = class _BatchGetProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3918
|
+
return [
|
|
3919
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3920
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3921
|
+
];
|
|
3922
|
+
}).s("CustomerProfiles_20200815", "BatchGetProfile", {}).n("CustomerProfilesClient", "BatchGetProfileCommand").f(void 0, BatchGetProfileResponseFilterSensitiveLog).ser(se_BatchGetProfileCommand).de(de_BatchGetProfileCommand).build() {
|
|
3923
|
+
};
|
|
3924
|
+
__name(_BatchGetProfileCommand, "BatchGetProfileCommand");
|
|
3925
|
+
var BatchGetProfileCommand = _BatchGetProfileCommand;
|
|
3926
|
+
|
|
2939
3927
|
// src/commands/CreateCalculatedAttributeDefinitionCommand.ts
|
|
2940
3928
|
|
|
2941
3929
|
|
|
@@ -3009,6 +3997,48 @@ var _CreateProfileCommand = class _CreateProfileCommand extends import_smithy_cl
|
|
|
3009
3997
|
__name(_CreateProfileCommand, "CreateProfileCommand");
|
|
3010
3998
|
var CreateProfileCommand = _CreateProfileCommand;
|
|
3011
3999
|
|
|
4000
|
+
// src/commands/CreateSegmentDefinitionCommand.ts
|
|
4001
|
+
|
|
4002
|
+
|
|
4003
|
+
|
|
4004
|
+
var _CreateSegmentDefinitionCommand = class _CreateSegmentDefinitionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4005
|
+
return [
|
|
4006
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4007
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4008
|
+
];
|
|
4009
|
+
}).s("CustomerProfiles_20200815", "CreateSegmentDefinition", {}).n("CustomerProfilesClient", "CreateSegmentDefinitionCommand").f(CreateSegmentDefinitionRequestFilterSensitiveLog, CreateSegmentDefinitionResponseFilterSensitiveLog).ser(se_CreateSegmentDefinitionCommand).de(de_CreateSegmentDefinitionCommand).build() {
|
|
4010
|
+
};
|
|
4011
|
+
__name(_CreateSegmentDefinitionCommand, "CreateSegmentDefinitionCommand");
|
|
4012
|
+
var CreateSegmentDefinitionCommand = _CreateSegmentDefinitionCommand;
|
|
4013
|
+
|
|
4014
|
+
// src/commands/CreateSegmentEstimateCommand.ts
|
|
4015
|
+
|
|
4016
|
+
|
|
4017
|
+
|
|
4018
|
+
var _CreateSegmentEstimateCommand = class _CreateSegmentEstimateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4019
|
+
return [
|
|
4020
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4021
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4022
|
+
];
|
|
4023
|
+
}).s("CustomerProfiles_20200815", "CreateSegmentEstimate", {}).n("CustomerProfilesClient", "CreateSegmentEstimateCommand").f(CreateSegmentEstimateRequestFilterSensitiveLog, void 0).ser(se_CreateSegmentEstimateCommand).de(de_CreateSegmentEstimateCommand).build() {
|
|
4024
|
+
};
|
|
4025
|
+
__name(_CreateSegmentEstimateCommand, "CreateSegmentEstimateCommand");
|
|
4026
|
+
var CreateSegmentEstimateCommand = _CreateSegmentEstimateCommand;
|
|
4027
|
+
|
|
4028
|
+
// src/commands/CreateSegmentSnapshotCommand.ts
|
|
4029
|
+
|
|
4030
|
+
|
|
4031
|
+
|
|
4032
|
+
var _CreateSegmentSnapshotCommand = class _CreateSegmentSnapshotCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4033
|
+
return [
|
|
4034
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4035
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4036
|
+
];
|
|
4037
|
+
}).s("CustomerProfiles_20200815", "CreateSegmentSnapshot", {}).n("CustomerProfilesClient", "CreateSegmentSnapshotCommand").f(void 0, void 0).ser(se_CreateSegmentSnapshotCommand).de(de_CreateSegmentSnapshotCommand).build() {
|
|
4038
|
+
};
|
|
4039
|
+
__name(_CreateSegmentSnapshotCommand, "CreateSegmentSnapshotCommand");
|
|
4040
|
+
var CreateSegmentSnapshotCommand = _CreateSegmentSnapshotCommand;
|
|
4041
|
+
|
|
3012
4042
|
// src/commands/DeleteCalculatedAttributeDefinitionCommand.ts
|
|
3013
4043
|
|
|
3014
4044
|
|
|
@@ -3121,6 +4151,20 @@ var _DeleteProfileObjectTypeCommand = class _DeleteProfileObjectTypeCommand exte
|
|
|
3121
4151
|
__name(_DeleteProfileObjectTypeCommand, "DeleteProfileObjectTypeCommand");
|
|
3122
4152
|
var DeleteProfileObjectTypeCommand = _DeleteProfileObjectTypeCommand;
|
|
3123
4153
|
|
|
4154
|
+
// src/commands/DeleteSegmentDefinitionCommand.ts
|
|
4155
|
+
|
|
4156
|
+
|
|
4157
|
+
|
|
4158
|
+
var _DeleteSegmentDefinitionCommand = class _DeleteSegmentDefinitionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4159
|
+
return [
|
|
4160
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4161
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4162
|
+
];
|
|
4163
|
+
}).s("CustomerProfiles_20200815", "DeleteSegmentDefinition", {}).n("CustomerProfilesClient", "DeleteSegmentDefinitionCommand").f(void 0, void 0).ser(se_DeleteSegmentDefinitionCommand).de(de_DeleteSegmentDefinitionCommand).build() {
|
|
4164
|
+
};
|
|
4165
|
+
__name(_DeleteSegmentDefinitionCommand, "DeleteSegmentDefinitionCommand");
|
|
4166
|
+
var DeleteSegmentDefinitionCommand = _DeleteSegmentDefinitionCommand;
|
|
4167
|
+
|
|
3124
4168
|
// src/commands/DeleteWorkflowCommand.ts
|
|
3125
4169
|
|
|
3126
4170
|
|
|
@@ -3289,6 +4333,62 @@ var _GetProfileObjectTypeTemplateCommand = class _GetProfileObjectTypeTemplateCo
|
|
|
3289
4333
|
__name(_GetProfileObjectTypeTemplateCommand, "GetProfileObjectTypeTemplateCommand");
|
|
3290
4334
|
var GetProfileObjectTypeTemplateCommand = _GetProfileObjectTypeTemplateCommand;
|
|
3291
4335
|
|
|
4336
|
+
// src/commands/GetSegmentDefinitionCommand.ts
|
|
4337
|
+
|
|
4338
|
+
|
|
4339
|
+
|
|
4340
|
+
var _GetSegmentDefinitionCommand = class _GetSegmentDefinitionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4341
|
+
return [
|
|
4342
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4343
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4344
|
+
];
|
|
4345
|
+
}).s("CustomerProfiles_20200815", "GetSegmentDefinition", {}).n("CustomerProfilesClient", "GetSegmentDefinitionCommand").f(void 0, GetSegmentDefinitionResponseFilterSensitiveLog).ser(se_GetSegmentDefinitionCommand).de(de_GetSegmentDefinitionCommand).build() {
|
|
4346
|
+
};
|
|
4347
|
+
__name(_GetSegmentDefinitionCommand, "GetSegmentDefinitionCommand");
|
|
4348
|
+
var GetSegmentDefinitionCommand = _GetSegmentDefinitionCommand;
|
|
4349
|
+
|
|
4350
|
+
// src/commands/GetSegmentEstimateCommand.ts
|
|
4351
|
+
|
|
4352
|
+
|
|
4353
|
+
|
|
4354
|
+
var _GetSegmentEstimateCommand = class _GetSegmentEstimateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4355
|
+
return [
|
|
4356
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4357
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4358
|
+
];
|
|
4359
|
+
}).s("CustomerProfiles_20200815", "GetSegmentEstimate", {}).n("CustomerProfilesClient", "GetSegmentEstimateCommand").f(void 0, void 0).ser(se_GetSegmentEstimateCommand).de(de_GetSegmentEstimateCommand).build() {
|
|
4360
|
+
};
|
|
4361
|
+
__name(_GetSegmentEstimateCommand, "GetSegmentEstimateCommand");
|
|
4362
|
+
var GetSegmentEstimateCommand = _GetSegmentEstimateCommand;
|
|
4363
|
+
|
|
4364
|
+
// src/commands/GetSegmentMembershipCommand.ts
|
|
4365
|
+
|
|
4366
|
+
|
|
4367
|
+
|
|
4368
|
+
var _GetSegmentMembershipCommand = class _GetSegmentMembershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4369
|
+
return [
|
|
4370
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4371
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4372
|
+
];
|
|
4373
|
+
}).s("CustomerProfiles_20200815", "GetSegmentMembership", {}).n("CustomerProfilesClient", "GetSegmentMembershipCommand").f(void 0, GetSegmentMembershipResponseFilterSensitiveLog).ser(se_GetSegmentMembershipCommand).de(de_GetSegmentMembershipCommand).build() {
|
|
4374
|
+
};
|
|
4375
|
+
__name(_GetSegmentMembershipCommand, "GetSegmentMembershipCommand");
|
|
4376
|
+
var GetSegmentMembershipCommand = _GetSegmentMembershipCommand;
|
|
4377
|
+
|
|
4378
|
+
// src/commands/GetSegmentSnapshotCommand.ts
|
|
4379
|
+
|
|
4380
|
+
|
|
4381
|
+
|
|
4382
|
+
var _GetSegmentSnapshotCommand = class _GetSegmentSnapshotCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4383
|
+
return [
|
|
4384
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4385
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4386
|
+
];
|
|
4387
|
+
}).s("CustomerProfiles_20200815", "GetSegmentSnapshot", {}).n("CustomerProfilesClient", "GetSegmentSnapshotCommand").f(void 0, void 0).ser(se_GetSegmentSnapshotCommand).de(de_GetSegmentSnapshotCommand).build() {
|
|
4388
|
+
};
|
|
4389
|
+
__name(_GetSegmentSnapshotCommand, "GetSegmentSnapshotCommand");
|
|
4390
|
+
var GetSegmentSnapshotCommand = _GetSegmentSnapshotCommand;
|
|
4391
|
+
|
|
3292
4392
|
// src/commands/GetSimilarProfilesCommand.ts
|
|
3293
4393
|
|
|
3294
4394
|
|
|
@@ -3429,6 +4529,34 @@ var _ListIntegrationsCommand = class _ListIntegrationsCommand extends import_smi
|
|
|
3429
4529
|
__name(_ListIntegrationsCommand, "ListIntegrationsCommand");
|
|
3430
4530
|
var ListIntegrationsCommand = _ListIntegrationsCommand;
|
|
3431
4531
|
|
|
4532
|
+
// src/commands/ListObjectTypeAttributesCommand.ts
|
|
4533
|
+
|
|
4534
|
+
|
|
4535
|
+
|
|
4536
|
+
var _ListObjectTypeAttributesCommand = class _ListObjectTypeAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4537
|
+
return [
|
|
4538
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4539
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4540
|
+
];
|
|
4541
|
+
}).s("CustomerProfiles_20200815", "ListObjectTypeAttributes", {}).n("CustomerProfilesClient", "ListObjectTypeAttributesCommand").f(void 0, void 0).ser(se_ListObjectTypeAttributesCommand).de(de_ListObjectTypeAttributesCommand).build() {
|
|
4542
|
+
};
|
|
4543
|
+
__name(_ListObjectTypeAttributesCommand, "ListObjectTypeAttributesCommand");
|
|
4544
|
+
var ListObjectTypeAttributesCommand = _ListObjectTypeAttributesCommand;
|
|
4545
|
+
|
|
4546
|
+
// src/commands/ListProfileAttributeValuesCommand.ts
|
|
4547
|
+
|
|
4548
|
+
|
|
4549
|
+
|
|
4550
|
+
var _ListProfileAttributeValuesCommand = class _ListProfileAttributeValuesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4551
|
+
return [
|
|
4552
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4553
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4554
|
+
];
|
|
4555
|
+
}).s("CustomerProfiles_20200815", "ListProfileAttributeValues", {}).n("CustomerProfilesClient", "ListProfileAttributeValuesCommand").f(void 0, void 0).ser(se_ListProfileAttributeValuesCommand).de(de_ListProfileAttributeValuesCommand).build() {
|
|
4556
|
+
};
|
|
4557
|
+
__name(_ListProfileAttributeValuesCommand, "ListProfileAttributeValuesCommand");
|
|
4558
|
+
var ListProfileAttributeValuesCommand = _ListProfileAttributeValuesCommand;
|
|
4559
|
+
|
|
3432
4560
|
// src/commands/ListProfileObjectsCommand.ts
|
|
3433
4561
|
|
|
3434
4562
|
|
|
@@ -3485,6 +4613,20 @@ var _ListRuleBasedMatchesCommand = class _ListRuleBasedMatchesCommand extends im
|
|
|
3485
4613
|
__name(_ListRuleBasedMatchesCommand, "ListRuleBasedMatchesCommand");
|
|
3486
4614
|
var ListRuleBasedMatchesCommand = _ListRuleBasedMatchesCommand;
|
|
3487
4615
|
|
|
4616
|
+
// src/commands/ListSegmentDefinitionsCommand.ts
|
|
4617
|
+
|
|
4618
|
+
|
|
4619
|
+
|
|
4620
|
+
var _ListSegmentDefinitionsCommand = class _ListSegmentDefinitionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4621
|
+
return [
|
|
4622
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4623
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4624
|
+
];
|
|
4625
|
+
}).s("CustomerProfiles_20200815", "ListSegmentDefinitions", {}).n("CustomerProfilesClient", "ListSegmentDefinitionsCommand").f(void 0, ListSegmentDefinitionsResponseFilterSensitiveLog).ser(se_ListSegmentDefinitionsCommand).de(de_ListSegmentDefinitionsCommand).build() {
|
|
4626
|
+
};
|
|
4627
|
+
__name(_ListSegmentDefinitionsCommand, "ListSegmentDefinitionsCommand");
|
|
4628
|
+
var ListSegmentDefinitionsCommand = _ListSegmentDefinitionsCommand;
|
|
4629
|
+
|
|
3488
4630
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3489
4631
|
|
|
3490
4632
|
|
|
@@ -3659,11 +4801,16 @@ var UpdateProfileCommand = _UpdateProfileCommand;
|
|
|
3659
4801
|
// src/CustomerProfiles.ts
|
|
3660
4802
|
var commands = {
|
|
3661
4803
|
AddProfileKeyCommand,
|
|
4804
|
+
BatchGetCalculatedAttributeForProfileCommand,
|
|
4805
|
+
BatchGetProfileCommand,
|
|
3662
4806
|
CreateCalculatedAttributeDefinitionCommand,
|
|
3663
4807
|
CreateDomainCommand,
|
|
3664
4808
|
CreateEventStreamCommand,
|
|
3665
4809
|
CreateIntegrationWorkflowCommand,
|
|
3666
4810
|
CreateProfileCommand,
|
|
4811
|
+
CreateSegmentDefinitionCommand,
|
|
4812
|
+
CreateSegmentEstimateCommand,
|
|
4813
|
+
CreateSegmentSnapshotCommand,
|
|
3667
4814
|
DeleteCalculatedAttributeDefinitionCommand,
|
|
3668
4815
|
DeleteDomainCommand,
|
|
3669
4816
|
DeleteEventStreamCommand,
|
|
@@ -3672,6 +4819,7 @@ var commands = {
|
|
|
3672
4819
|
DeleteProfileKeyCommand,
|
|
3673
4820
|
DeleteProfileObjectCommand,
|
|
3674
4821
|
DeleteProfileObjectTypeCommand,
|
|
4822
|
+
DeleteSegmentDefinitionCommand,
|
|
3675
4823
|
DeleteWorkflowCommand,
|
|
3676
4824
|
DetectProfileObjectTypeCommand,
|
|
3677
4825
|
GetAutoMergingPreviewCommand,
|
|
@@ -3684,6 +4832,10 @@ var commands = {
|
|
|
3684
4832
|
GetMatchesCommand,
|
|
3685
4833
|
GetProfileObjectTypeCommand,
|
|
3686
4834
|
GetProfileObjectTypeTemplateCommand,
|
|
4835
|
+
GetSegmentDefinitionCommand,
|
|
4836
|
+
GetSegmentEstimateCommand,
|
|
4837
|
+
GetSegmentMembershipCommand,
|
|
4838
|
+
GetSegmentSnapshotCommand,
|
|
3687
4839
|
GetSimilarProfilesCommand,
|
|
3688
4840
|
GetWorkflowCommand,
|
|
3689
4841
|
GetWorkflowStepsCommand,
|
|
@@ -3694,10 +4846,13 @@ var commands = {
|
|
|
3694
4846
|
ListEventStreamsCommand,
|
|
3695
4847
|
ListIdentityResolutionJobsCommand,
|
|
3696
4848
|
ListIntegrationsCommand,
|
|
4849
|
+
ListObjectTypeAttributesCommand,
|
|
4850
|
+
ListProfileAttributeValuesCommand,
|
|
3697
4851
|
ListProfileObjectsCommand,
|
|
3698
4852
|
ListProfileObjectTypesCommand,
|
|
3699
4853
|
ListProfileObjectTypeTemplatesCommand,
|
|
3700
4854
|
ListRuleBasedMatchesCommand,
|
|
4855
|
+
ListSegmentDefinitionsCommand,
|
|
3701
4856
|
ListTagsForResourceCommand,
|
|
3702
4857
|
ListWorkflowsCommand,
|
|
3703
4858
|
MergeProfilesCommand,
|
|
@@ -3717,9 +4872,25 @@ __name(_CustomerProfiles, "CustomerProfiles");
|
|
|
3717
4872
|
var CustomerProfiles = _CustomerProfiles;
|
|
3718
4873
|
(0, import_smithy_client.createAggregatedClient)(commands, CustomerProfiles);
|
|
3719
4874
|
|
|
4875
|
+
// src/pagination/GetSimilarProfilesPaginator.ts
|
|
4876
|
+
|
|
4877
|
+
var paginateGetSimilarProfiles = (0, import_core.createPaginator)(CustomerProfilesClient, GetSimilarProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4878
|
+
|
|
3720
4879
|
// src/pagination/ListEventStreamsPaginator.ts
|
|
3721
4880
|
|
|
3722
4881
|
var paginateListEventStreams = (0, import_core.createPaginator)(CustomerProfilesClient, ListEventStreamsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4882
|
+
|
|
4883
|
+
// src/pagination/ListObjectTypeAttributesPaginator.ts
|
|
4884
|
+
|
|
4885
|
+
var paginateListObjectTypeAttributes = (0, import_core.createPaginator)(CustomerProfilesClient, ListObjectTypeAttributesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4886
|
+
|
|
4887
|
+
// src/pagination/ListRuleBasedMatchesPaginator.ts
|
|
4888
|
+
|
|
4889
|
+
var paginateListRuleBasedMatches = (0, import_core.createPaginator)(CustomerProfilesClient, ListRuleBasedMatchesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4890
|
+
|
|
4891
|
+
// src/pagination/ListSegmentDefinitionsPaginator.ts
|
|
4892
|
+
|
|
4893
|
+
var paginateListSegmentDefinitions = (0, import_core.createPaginator)(CustomerProfilesClient, ListSegmentDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3723
4894
|
// Annotate the CommonJS export names for ESM import in node:
|
|
3724
4895
|
|
|
3725
4896
|
0 && (module.exports = {
|
|
@@ -3729,11 +4900,16 @@ var paginateListEventStreams = (0, import_core.createPaginator)(CustomerProfiles
|
|
|
3729
4900
|
CustomerProfiles,
|
|
3730
4901
|
$Command,
|
|
3731
4902
|
AddProfileKeyCommand,
|
|
4903
|
+
BatchGetCalculatedAttributeForProfileCommand,
|
|
4904
|
+
BatchGetProfileCommand,
|
|
3732
4905
|
CreateCalculatedAttributeDefinitionCommand,
|
|
3733
4906
|
CreateDomainCommand,
|
|
3734
4907
|
CreateEventStreamCommand,
|
|
3735
4908
|
CreateIntegrationWorkflowCommand,
|
|
3736
4909
|
CreateProfileCommand,
|
|
4910
|
+
CreateSegmentDefinitionCommand,
|
|
4911
|
+
CreateSegmentEstimateCommand,
|
|
4912
|
+
CreateSegmentSnapshotCommand,
|
|
3737
4913
|
DeleteCalculatedAttributeDefinitionCommand,
|
|
3738
4914
|
DeleteDomainCommand,
|
|
3739
4915
|
DeleteEventStreamCommand,
|
|
@@ -3742,6 +4918,7 @@ var paginateListEventStreams = (0, import_core.createPaginator)(CustomerProfiles
|
|
|
3742
4918
|
DeleteProfileKeyCommand,
|
|
3743
4919
|
DeleteProfileObjectCommand,
|
|
3744
4920
|
DeleteProfileObjectTypeCommand,
|
|
4921
|
+
DeleteSegmentDefinitionCommand,
|
|
3745
4922
|
DeleteWorkflowCommand,
|
|
3746
4923
|
DetectProfileObjectTypeCommand,
|
|
3747
4924
|
GetAutoMergingPreviewCommand,
|
|
@@ -3754,6 +4931,10 @@ var paginateListEventStreams = (0, import_core.createPaginator)(CustomerProfiles
|
|
|
3754
4931
|
GetMatchesCommand,
|
|
3755
4932
|
GetProfileObjectTypeCommand,
|
|
3756
4933
|
GetProfileObjectTypeTemplateCommand,
|
|
4934
|
+
GetSegmentDefinitionCommand,
|
|
4935
|
+
GetSegmentEstimateCommand,
|
|
4936
|
+
GetSegmentMembershipCommand,
|
|
4937
|
+
GetSegmentSnapshotCommand,
|
|
3757
4938
|
GetSimilarProfilesCommand,
|
|
3758
4939
|
GetWorkflowCommand,
|
|
3759
4940
|
GetWorkflowStepsCommand,
|
|
@@ -3764,10 +4945,13 @@ var paginateListEventStreams = (0, import_core.createPaginator)(CustomerProfiles
|
|
|
3764
4945
|
ListEventStreamsCommand,
|
|
3765
4946
|
ListIdentityResolutionJobsCommand,
|
|
3766
4947
|
ListIntegrationsCommand,
|
|
4948
|
+
ListObjectTypeAttributesCommand,
|
|
4949
|
+
ListProfileAttributeValuesCommand,
|
|
3767
4950
|
ListProfileObjectTypeTemplatesCommand,
|
|
3768
4951
|
ListProfileObjectTypesCommand,
|
|
3769
4952
|
ListProfileObjectsCommand,
|
|
3770
4953
|
ListRuleBasedMatchesCommand,
|
|
4954
|
+
ListSegmentDefinitionsCommand,
|
|
3771
4955
|
ListTagsForResourceCommand,
|
|
3772
4956
|
ListWorkflowsCommand,
|
|
3773
4957
|
MergeProfilesCommand,
|
|
@@ -3780,12 +4964,17 @@ var paginateListEventStreams = (0, import_core.createPaginator)(CustomerProfiles
|
|
|
3780
4964
|
UpdateCalculatedAttributeDefinitionCommand,
|
|
3781
4965
|
UpdateDomainCommand,
|
|
3782
4966
|
UpdateProfileCommand,
|
|
4967
|
+
paginateGetSimilarProfiles,
|
|
3783
4968
|
paginateListEventStreams,
|
|
4969
|
+
paginateListObjectTypeAttributes,
|
|
4970
|
+
paginateListRuleBasedMatches,
|
|
4971
|
+
paginateListSegmentDefinitions,
|
|
3784
4972
|
AccessDeniedException,
|
|
3785
4973
|
BadRequestException,
|
|
3786
4974
|
InternalServerException,
|
|
3787
4975
|
ResourceNotFoundException,
|
|
3788
4976
|
ThrottlingException,
|
|
4977
|
+
StringDimensionType,
|
|
3789
4978
|
SourceConnectorType,
|
|
3790
4979
|
MarketoConnectorOperator,
|
|
3791
4980
|
S3ConnectorOperator,
|
|
@@ -3797,49 +4986,79 @@ var paginateListEventStreams = (0, import_core.createPaginator)(CustomerProfiles
|
|
|
3797
4986
|
DataPullMode,
|
|
3798
4987
|
TriggerType,
|
|
3799
4988
|
Status,
|
|
4989
|
+
AttributeDimensionType,
|
|
4990
|
+
FilterDimensionType,
|
|
3800
4991
|
AttributeMatchingModel,
|
|
3801
4992
|
ConflictResolvingModel,
|
|
4993
|
+
RangeUnit,
|
|
4994
|
+
Gender,
|
|
4995
|
+
PartyType,
|
|
3802
4996
|
Unit,
|
|
3803
4997
|
Operator,
|
|
4998
|
+
Type,
|
|
4999
|
+
Include,
|
|
3804
5000
|
Statistic,
|
|
3805
5001
|
JobScheduleDayOfTheWeek,
|
|
3806
5002
|
RuleBasedMatchingStatus,
|
|
3807
5003
|
WorkflowType,
|
|
3808
|
-
|
|
3809
|
-
|
|
5004
|
+
DateDimensionType,
|
|
5005
|
+
Dimension,
|
|
5006
|
+
IncludeOptions,
|
|
5007
|
+
DataFormat,
|
|
3810
5008
|
FieldContentType,
|
|
3811
5009
|
StandardIdentifier,
|
|
3812
5010
|
EventStreamDestinationStatus,
|
|
3813
5011
|
EventStreamState,
|
|
3814
5012
|
IdentityResolutionJobStatus,
|
|
5013
|
+
EstimateStatus,
|
|
5014
|
+
QueryResult,
|
|
5015
|
+
SegmentSnapshotStatus,
|
|
3815
5016
|
MatchType,
|
|
3816
5017
|
LogicalOperator,
|
|
3817
5018
|
AddressFilterSensitiveLog,
|
|
3818
5019
|
FlowDefinitionFilterSensitiveLog,
|
|
3819
5020
|
AppflowIntegrationFilterSensitiveLog,
|
|
3820
5021
|
AttributeDetailsFilterSensitiveLog,
|
|
5022
|
+
ConditionOverridesFilterSensitiveLog,
|
|
5023
|
+
BatchGetCalculatedAttributeForProfileRequestFilterSensitiveLog,
|
|
5024
|
+
BatchGetCalculatedAttributeForProfileResponseFilterSensitiveLog,
|
|
5025
|
+
ProfileFilterSensitiveLog,
|
|
5026
|
+
BatchGetProfileResponseFilterSensitiveLog,
|
|
3821
5027
|
ListCalculatedAttributeDefinitionItemFilterSensitiveLog,
|
|
5028
|
+
CalculatedAttributeDimensionFilterSensitiveLog,
|
|
3822
5029
|
ConditionsFilterSensitiveLog,
|
|
3823
5030
|
CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog,
|
|
3824
5031
|
CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
3825
5032
|
IntegrationConfigFilterSensitiveLog,
|
|
3826
5033
|
CreateIntegrationWorkflowRequestFilterSensitiveLog,
|
|
3827
5034
|
CreateProfileRequestFilterSensitiveLog,
|
|
5035
|
+
ProfileAttributesFilterSensitiveLog,
|
|
5036
|
+
DimensionFilterSensitiveLog,
|
|
5037
|
+
GroupFilterSensitiveLog,
|
|
5038
|
+
SegmentGroupFilterSensitiveLog,
|
|
5039
|
+
CreateSegmentDefinitionRequestFilterSensitiveLog,
|
|
5040
|
+
CreateSegmentDefinitionResponseFilterSensitiveLog,
|
|
5041
|
+
SegmentGroupStructureFilterSensitiveLog,
|
|
5042
|
+
CreateSegmentEstimateRequestFilterSensitiveLog,
|
|
3828
5043
|
DetectProfileObjectTypeRequestFilterSensitiveLog,
|
|
3829
5044
|
DetectedProfileObjectTypeFilterSensitiveLog,
|
|
3830
5045
|
DetectProfileObjectTypeResponseFilterSensitiveLog,
|
|
3831
5046
|
GetCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|
|
3832
5047
|
GetProfileObjectTypeResponseFilterSensitiveLog,
|
|
3833
5048
|
GetProfileObjectTypeTemplateResponseFilterSensitiveLog,
|
|
5049
|
+
GetSegmentDefinitionResponseFilterSensitiveLog,
|
|
5050
|
+
ProfileQueryResultFilterSensitiveLog,
|
|
5051
|
+
GetSegmentMembershipResponseFilterSensitiveLog,
|
|
3834
5052
|
ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog,
|
|
3835
5053
|
ListProfileObjectsItemFilterSensitiveLog,
|
|
3836
5054
|
ListProfileObjectsResponseFilterSensitiveLog,
|
|
3837
5055
|
ListProfileObjectTypesResponseFilterSensitiveLog,
|
|
5056
|
+
SegmentDefinitionItemFilterSensitiveLog,
|
|
5057
|
+
ListSegmentDefinitionsResponseFilterSensitiveLog,
|
|
3838
5058
|
PutIntegrationRequestFilterSensitiveLog,
|
|
3839
5059
|
PutProfileObjectRequestFilterSensitiveLog,
|
|
3840
5060
|
PutProfileObjectTypeRequestFilterSensitiveLog,
|
|
3841
5061
|
PutProfileObjectTypeResponseFilterSensitiveLog,
|
|
3842
|
-
ProfileFilterSensitiveLog,
|
|
3843
5062
|
SearchProfilesResponseFilterSensitiveLog,
|
|
3844
5063
|
UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog,
|
|
3845
5064
|
UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog,
|