@aws-sdk/client-customer-profiles 3.686.0 → 3.691.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.
@@ -7,7 +7,7 @@ import { CustomerProfilesServiceException as __BaseException } from "./CustomerP
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
9
9
  readonly $fault: "client";
10
- Message?: string;
10
+ Message?: string | undefined;
11
11
  /**
12
12
  * @internal
13
13
  */
@@ -68,12 +68,12 @@ export interface AddProfileKeyResponse {
68
68
  * <p>A searchable identifier of a customer profile.</p>
69
69
  * @public
70
70
  */
71
- KeyName?: string;
71
+ KeyName?: string | undefined;
72
72
  /**
73
73
  * <p>A list of key values.</p>
74
74
  * @public
75
75
  */
76
- Values?: string[];
76
+ Values?: string[] | undefined;
77
77
  }
78
78
  /**
79
79
  * <p>The input you provided is invalid.</p>
@@ -82,7 +82,7 @@ export interface AddProfileKeyResponse {
82
82
  export declare class BadRequestException extends __BaseException {
83
83
  readonly name: "BadRequestException";
84
84
  readonly $fault: "client";
85
- Message?: string;
85
+ Message?: string | undefined;
86
86
  /**
87
87
  * @internal
88
88
  */
@@ -95,7 +95,7 @@ export declare class BadRequestException extends __BaseException {
95
95
  export declare class InternalServerException extends __BaseException {
96
96
  readonly name: "InternalServerException";
97
97
  readonly $fault: "server";
98
- Message?: string;
98
+ Message?: string | undefined;
99
99
  /**
100
100
  * @internal
101
101
  */
@@ -108,7 +108,7 @@ export declare class InternalServerException extends __BaseException {
108
108
  export declare class ResourceNotFoundException extends __BaseException {
109
109
  readonly name: "ResourceNotFoundException";
110
110
  readonly $fault: "client";
111
- Message?: string;
111
+ Message?: string | undefined;
112
112
  /**
113
113
  * @internal
114
114
  */
@@ -121,7 +121,7 @@ export declare class ResourceNotFoundException extends __BaseException {
121
121
  export declare class ThrottlingException extends __BaseException {
122
122
  readonly name: "ThrottlingException";
123
123
  readonly $fault: "client";
124
- Message?: string;
124
+ Message?: string | undefined;
125
125
  /**
126
126
  * @internal
127
127
  */
@@ -137,52 +137,52 @@ export interface Address {
137
137
  * <p>The first line of a customer address.</p>
138
138
  * @public
139
139
  */
140
- Address1?: string;
140
+ Address1?: string | undefined;
141
141
  /**
142
142
  * <p>The second line of a customer address.</p>
143
143
  * @public
144
144
  */
145
- Address2?: string;
145
+ Address2?: string | undefined;
146
146
  /**
147
147
  * <p>The third line of a customer address.</p>
148
148
  * @public
149
149
  */
150
- Address3?: string;
150
+ Address3?: string | undefined;
151
151
  /**
152
152
  * <p>The fourth line of a customer address.</p>
153
153
  * @public
154
154
  */
155
- Address4?: string;
155
+ Address4?: string | undefined;
156
156
  /**
157
157
  * <p>The city in which a customer lives.</p>
158
158
  * @public
159
159
  */
160
- City?: string;
160
+ City?: string | undefined;
161
161
  /**
162
162
  * <p>The county in which a customer lives.</p>
163
163
  * @public
164
164
  */
165
- County?: string;
165
+ County?: string | undefined;
166
166
  /**
167
167
  * <p>The state in which a customer lives.</p>
168
168
  * @public
169
169
  */
170
- State?: string;
170
+ State?: string | undefined;
171
171
  /**
172
172
  * <p>The province in which a customer lives.</p>
173
173
  * @public
174
174
  */
175
- Province?: string;
175
+ Province?: string | undefined;
176
176
  /**
177
177
  * <p>The country in which a customer lives.</p>
178
178
  * @public
179
179
  */
180
- Country?: string;
180
+ Country?: string | undefined;
181
181
  /**
182
182
  * <p>The postal code of a customer address.</p>
183
183
  * @public
184
184
  */
185
- PostalCode?: string;
185
+ PostalCode?: string | undefined;
186
186
  }
187
187
  /**
188
188
  * <p>Batch defines the boundaries for ingestion for each step in
@@ -228,7 +228,7 @@ export interface IncrementalPullConfig {
228
228
  * importing incremental records from the source.</p>
229
229
  * @public
230
230
  */
231
- DatetimeTypeFieldName?: string;
231
+ DatetimeTypeFieldName?: string | undefined;
232
232
  }
233
233
  /**
234
234
  * <p>The properties that are applied when Marketo is being used as a source.</p>
@@ -255,7 +255,7 @@ export interface S3SourceProperties {
255
255
  * <p>The object key for the Amazon S3 bucket in which the source files are stored.</p>
256
256
  * @public
257
257
  */
258
- BucketPrefix?: string;
258
+ BucketPrefix?: string | undefined;
259
259
  }
260
260
  /**
261
261
  * <p>The properties that are applied when Salesforce is being used as a source.</p>
@@ -272,12 +272,12 @@ export interface SalesforceSourceProperties {
272
272
  * objects while running a flow.</p>
273
273
  * @public
274
274
  */
275
- EnableDynamicFieldUpdate?: boolean;
275
+ EnableDynamicFieldUpdate?: boolean | undefined;
276
276
  /**
277
277
  * <p>Indicates whether Amazon AppFlow includes deleted files in the flow run.</p>
278
278
  * @public
279
279
  */
280
- IncludeDeletedRecords?: boolean;
280
+ IncludeDeletedRecords?: boolean | undefined;
281
281
  }
282
282
  /**
283
283
  * <p>The properties that are applied when ServiceNow is being used as a source.</p>
@@ -311,27 +311,27 @@ export interface SourceConnectorProperties {
311
311
  * <p>The properties that are applied when Marketo is being used as a source.</p>
312
312
  * @public
313
313
  */
314
- Marketo?: MarketoSourceProperties;
314
+ Marketo?: MarketoSourceProperties | undefined;
315
315
  /**
316
316
  * <p>The properties that are applied when Amazon S3 is being used as the flow source.</p>
317
317
  * @public
318
318
  */
319
- S3?: S3SourceProperties;
319
+ S3?: S3SourceProperties | undefined;
320
320
  /**
321
321
  * <p>The properties that are applied when Salesforce is being used as a source.</p>
322
322
  * @public
323
323
  */
324
- Salesforce?: SalesforceSourceProperties;
324
+ Salesforce?: SalesforceSourceProperties | undefined;
325
325
  /**
326
326
  * <p>The properties that are applied when ServiceNow is being used as a source.</p>
327
327
  * @public
328
328
  */
329
- ServiceNow?: ServiceNowSourceProperties;
329
+ ServiceNow?: ServiceNowSourceProperties | undefined;
330
330
  /**
331
331
  * <p>The properties that are applied when using Zendesk as a flow source.</p>
332
332
  * @public
333
333
  */
334
- Zendesk?: ZendeskSourceProperties;
334
+ Zendesk?: ZendeskSourceProperties | undefined;
335
335
  }
336
336
  /**
337
337
  * <p>Contains information about the configuration of the source connector used in the
@@ -344,7 +344,7 @@ export interface SourceFlowConfig {
344
344
  * profile in the AWS account.</p>
345
345
  * @public
346
346
  */
347
- ConnectorProfileName?: string;
347
+ ConnectorProfileName?: string | undefined;
348
348
  /**
349
349
  * <p>The type of connector, such as Salesforce, Marketo, and so on.</p>
350
350
  * @public
@@ -356,7 +356,7 @@ export interface SourceFlowConfig {
356
356
  * for the incremental data pull.</p>
357
357
  * @public
358
358
  */
359
- IncrementalPullConfig?: IncrementalPullConfig;
359
+ IncrementalPullConfig?: IncrementalPullConfig | undefined;
360
360
  /**
361
361
  * <p>Specifies the information that is required to query a particular source
362
362
  * connector.</p>
@@ -515,27 +515,27 @@ export interface ConnectorOperator {
515
515
  * <p>The operation to be performed on the provided Marketo source fields.</p>
516
516
  * @public
517
517
  */
518
- Marketo?: MarketoConnectorOperator;
518
+ Marketo?: MarketoConnectorOperator | undefined;
519
519
  /**
520
520
  * <p>The operation to be performed on the provided Amazon S3 source fields.</p>
521
521
  * @public
522
522
  */
523
- S3?: S3ConnectorOperator;
523
+ S3?: S3ConnectorOperator | undefined;
524
524
  /**
525
525
  * <p>The operation to be performed on the provided Salesforce source fields.</p>
526
526
  * @public
527
527
  */
528
- Salesforce?: SalesforceConnectorOperator;
528
+ Salesforce?: SalesforceConnectorOperator | undefined;
529
529
  /**
530
530
  * <p>The operation to be performed on the provided ServiceNow source fields.</p>
531
531
  * @public
532
532
  */
533
- ServiceNow?: ServiceNowConnectorOperator;
533
+ ServiceNow?: ServiceNowConnectorOperator | undefined;
534
534
  /**
535
535
  * <p>The operation to be performed on the provided Zendesk source fields.</p>
536
536
  * @public
537
537
  */
538
- Zendesk?: ZendeskConnectorOperator;
538
+ Zendesk?: ZendeskConnectorOperator | undefined;
539
539
  }
540
540
  /**
541
541
  * @public
@@ -588,13 +588,13 @@ export interface Task {
588
588
  * <p>The operation to be performed on the provided source fields.</p>
589
589
  * @public
590
590
  */
591
- ConnectorOperator?: ConnectorOperator;
591
+ ConnectorOperator?: ConnectorOperator | undefined;
592
592
  /**
593
593
  * <p>A field in a destination connector, or a field value against which Amazon AppFlow validates a
594
594
  * source field.</p>
595
595
  * @public
596
596
  */
597
- DestinationField?: string;
597
+ DestinationField?: string | undefined;
598
598
  /**
599
599
  * <p>The source fields to which a particular task is applied.</p>
600
600
  * @public
@@ -605,7 +605,7 @@ export interface Task {
605
605
  * information based on the TaskType.</p>
606
606
  * @public
607
607
  */
608
- TaskProperties?: Partial<Record<OperatorPropertiesKeys, string>>;
608
+ TaskProperties?: Partial<Record<OperatorPropertiesKeys, string>> | undefined;
609
609
  /**
610
610
  * <p>Specifies the particular task implementation that Amazon AppFlow performs.</p>
611
611
  * @public
@@ -641,35 +641,35 @@ export interface ScheduledTriggerProperties {
641
641
  * transfer for each flow run.</p>
642
642
  * @public
643
643
  */
644
- DataPullMode?: DataPullMode;
644
+ DataPullMode?: DataPullMode | undefined;
645
645
  /**
646
646
  * <p>Specifies the scheduled start time for a scheduled-trigger flow.</p>
647
647
  * @public
648
648
  */
649
- ScheduleStartTime?: Date;
649
+ ScheduleStartTime?: Date | undefined;
650
650
  /**
651
651
  * <p>Specifies the scheduled end time for a scheduled-trigger flow.</p>
652
652
  * @public
653
653
  */
654
- ScheduleEndTime?: Date;
654
+ ScheduleEndTime?: Date | undefined;
655
655
  /**
656
656
  * <p>Specifies the time zone used when referring to the date and time of a
657
657
  * scheduled-triggered flow, such as America/New_York.</p>
658
658
  * @public
659
659
  */
660
- Timezone?: string;
660
+ Timezone?: string | undefined;
661
661
  /**
662
662
  * <p>Specifies the optional offset that is added to the time interval for a
663
663
  * schedule-triggered flow.</p>
664
664
  * @public
665
665
  */
666
- ScheduleOffset?: number;
666
+ ScheduleOffset?: number | undefined;
667
667
  /**
668
668
  * <p>Specifies the date range for the records to import from the connector in the first flow
669
669
  * run.</p>
670
670
  * @public
671
671
  */
672
- FirstExecutionFrom?: Date;
672
+ FirstExecutionFrom?: Date | undefined;
673
673
  }
674
674
  /**
675
675
  * <p>Specifies the configuration details that control the trigger for a flow. Currently,
@@ -681,7 +681,7 @@ export interface TriggerProperties {
681
681
  * <p>Specifies the configuration details of a schedule-triggered flow that you define.</p>
682
682
  * @public
683
683
  */
684
- Scheduled?: ScheduledTriggerProperties;
684
+ Scheduled?: ScheduledTriggerProperties | undefined;
685
685
  }
686
686
  /**
687
687
  * @public
@@ -712,7 +712,7 @@ export interface TriggerConfig {
712
712
  * Currently, these settings only apply to the Scheduled trigger type.</p>
713
713
  * @public
714
714
  */
715
- TriggerProperties?: TriggerProperties;
715
+ TriggerProperties?: TriggerProperties | undefined;
716
716
  }
717
717
  /**
718
718
  * <p>The configurations that control how Customer Profiles retrieves data from the source,
@@ -725,7 +725,7 @@ export interface FlowDefinition {
725
725
  * <p>A description of the flow you want to create.</p>
726
726
  * @public
727
727
  */
728
- Description?: string;
728
+ Description?: string | undefined;
729
729
  /**
730
730
  * <p>The specified name of the flow. Use underscores (_) or hyphens (-) only. Spaces are not
731
731
  * allowed.</p>
@@ -771,7 +771,7 @@ export interface AppflowIntegration {
771
771
  * <p>Batches in workflow of type <code>APPFLOW_INTEGRATION</code>.</p>
772
772
  * @public
773
773
  */
774
- Batches?: Batch[];
774
+ Batches?: Batch[] | undefined;
775
775
  }
776
776
  /**
777
777
  * <p>Structure holding all <code>APPFLOW_INTEGRATION</code> specific workflow
@@ -794,7 +794,7 @@ export interface AppflowIntegrationWorkflowAttributes {
794
794
  * <p>The Amazon Resource Name (ARN) of the IAM role. Customer Profiles assumes this role to create resources on your behalf as part of workflow execution.</p>
795
795
  * @public
796
796
  */
797
- RoleArn?: string;
797
+ RoleArn?: string | undefined;
798
798
  }
799
799
  /**
800
800
  * <p>Workflow specific execution metrics for <code>APPFLOW_INTEGRATION</code>
@@ -997,7 +997,7 @@ export interface AttributeTypesSelector {
997
997
  * <code>Address.City</code> on the matching rule.</p>
998
998
  * @public
999
999
  */
1000
- Address?: string[];
1000
+ Address?: string[] | undefined;
1001
1001
  /**
1002
1002
  * <p>The <code>PhoneNumber</code> type. You can choose from <code>PhoneNumber</code>,
1003
1003
  * <code>HomePhoneNumber</code>, and <code>MobilePhoneNumber</code>.</p>
@@ -1008,7 +1008,7 @@ export interface AttributeTypesSelector {
1008
1008
  * the <code>PhoneNumber</code> on the matching rule.</p>
1009
1009
  * @public
1010
1010
  */
1011
- PhoneNumber?: string[];
1011
+ PhoneNumber?: string[] | undefined;
1012
1012
  /**
1013
1013
  * <p>The <code>Email</code> type. You can choose from <code>EmailAddress</code>,
1014
1014
  * <code>BusinessEmailAddress</code> and <code>PersonalEmailAddress</code>.</p>
@@ -1020,7 +1020,7 @@ export interface AttributeTypesSelector {
1020
1020
  * matching rule.</p>
1021
1021
  * @public
1022
1022
  */
1023
- EmailAddress?: string[];
1023
+ EmailAddress?: string[] | undefined;
1024
1024
  }
1025
1025
  /**
1026
1026
  * @public
@@ -1062,7 +1062,7 @@ export interface ConflictResolution {
1062
1062
  * choosing <code>SOURCE</code> as the <code>ConflictResolvingModel</code>.</p>
1063
1063
  * @public
1064
1064
  */
1065
- SourceName?: string;
1065
+ SourceName?: string | undefined;
1066
1066
  }
1067
1067
  /**
1068
1068
  * <p>The matching criteria to be used during the auto-merging process. </p>
@@ -1090,7 +1090,7 @@ export interface AutoMerging {
1090
1090
  * least one of the requirements in the matching attributes list, they will be merged.</p>
1091
1091
  * @public
1092
1092
  */
1093
- Consolidation?: Consolidation;
1093
+ Consolidation?: Consolidation | undefined;
1094
1094
  /**
1095
1095
  * <p>How the auto-merging process should resolve conflicts between different profiles. For
1096
1096
  * example, if Profile A and Profile B have the same <code>FirstName</code> and
@@ -1098,14 +1098,14 @@ export interface AutoMerging {
1098
1098
  * <code>EmailAddress</code> should be used? </p>
1099
1099
  * @public
1100
1100
  */
1101
- ConflictResolution?: ConflictResolution;
1101
+ ConflictResolution?: ConflictResolution | undefined;
1102
1102
  /**
1103
1103
  * <p>A number between 0 and 1 that represents the minimum confidence score required for
1104
1104
  * profiles within a matching group to be merged during the auto-merge process. A higher score
1105
1105
  * means higher similarity required to merge profiles. </p>
1106
1106
  * @public
1107
1107
  */
1108
- MinAllowedConfidenceScoreForMerging?: number;
1108
+ MinAllowedConfidenceScoreForMerging?: number | undefined;
1109
1109
  }
1110
1110
  /**
1111
1111
  * <p>The details of a single calculated attribute definition.</p>
@@ -1116,33 +1116,33 @@ export interface ListCalculatedAttributeDefinitionItem {
1116
1116
  * <p>The unique name of the calculated attribute.</p>
1117
1117
  * @public
1118
1118
  */
1119
- CalculatedAttributeName?: string;
1119
+ CalculatedAttributeName?: string | undefined;
1120
1120
  /**
1121
1121
  * <p>The display name of the calculated attribute.</p>
1122
1122
  * @public
1123
1123
  */
1124
- DisplayName?: string;
1124
+ DisplayName?: string | undefined;
1125
1125
  /**
1126
1126
  * <p>The threshold for the calculated attribute.</p>
1127
1127
  * @public
1128
1128
  */
1129
- Description?: string;
1129
+ Description?: string | undefined;
1130
1130
  /**
1131
1131
  * <p>The threshold for the calculated attribute.</p>
1132
1132
  * @public
1133
1133
  */
1134
- CreatedAt?: Date;
1134
+ CreatedAt?: Date | undefined;
1135
1135
  /**
1136
1136
  * <p>The timestamp of when the calculated attribute definition was most recently
1137
1137
  * edited.</p>
1138
1138
  * @public
1139
1139
  */
1140
- LastUpdatedAt?: Date;
1140
+ LastUpdatedAt?: Date | undefined;
1141
1141
  /**
1142
1142
  * <p>The tags used to organize, track, or control access for this resource.</p>
1143
1143
  * @public
1144
1144
  */
1145
- Tags?: Record<string, string>;
1145
+ Tags?: Record<string, string> | undefined;
1146
1146
  }
1147
1147
  /**
1148
1148
  * <p>The details of a single calculated attribute for a profile.</p>
@@ -1153,23 +1153,23 @@ export interface ListCalculatedAttributeForProfileItem {
1153
1153
  * <p>The unique name of the calculated attribute.</p>
1154
1154
  * @public
1155
1155
  */
1156
- CalculatedAttributeName?: string;
1156
+ CalculatedAttributeName?: string | undefined;
1157
1157
  /**
1158
1158
  * <p>The display name of the calculated attribute.</p>
1159
1159
  * @public
1160
1160
  */
1161
- DisplayName?: string;
1161
+ DisplayName?: string | undefined;
1162
1162
  /**
1163
1163
  * <p>Indicates whether the calculated attribute’s value is based on partial data. If data is
1164
1164
  * partial, it is set to true.</p>
1165
1165
  * @public
1166
1166
  */
1167
- IsDataPartial?: string;
1167
+ IsDataPartial?: string | undefined;
1168
1168
  /**
1169
1169
  * <p>The value of the calculated attribute.</p>
1170
1170
  * @public
1171
1171
  */
1172
- Value?: string;
1172
+ Value?: string | undefined;
1173
1173
  }
1174
1174
  /**
1175
1175
  * @public
@@ -1238,17 +1238,17 @@ export interface Conditions {
1238
1238
  * <p>The relative time period over which data is included in the aggregation.</p>
1239
1239
  * @public
1240
1240
  */
1241
- Range?: Range;
1241
+ Range?: Range | undefined;
1242
1242
  /**
1243
1243
  * <p>The number of profile objects used for the calculated attribute.</p>
1244
1244
  * @public
1245
1245
  */
1246
- ObjectCount?: number;
1246
+ ObjectCount?: number | undefined;
1247
1247
  /**
1248
1248
  * <p>The threshold for the calculated attribute.</p>
1249
1249
  * @public
1250
1250
  */
1251
- Threshold?: Threshold;
1251
+ Threshold?: Threshold | undefined;
1252
1252
  }
1253
1253
  /**
1254
1254
  * @public
@@ -1286,12 +1286,12 @@ export interface CreateCalculatedAttributeDefinitionRequest {
1286
1286
  * <p>The display name of the calculated attribute.</p>
1287
1287
  * @public
1288
1288
  */
1289
- DisplayName?: string;
1289
+ DisplayName?: string | undefined;
1290
1290
  /**
1291
1291
  * <p>The description of the calculated attribute.</p>
1292
1292
  * @public
1293
1293
  */
1294
- Description?: string;
1294
+ Description?: string | undefined;
1295
1295
  /**
1296
1296
  * <p>Mathematical expression and a list of attribute items specified in that
1297
1297
  * expression.</p>
@@ -1303,7 +1303,7 @@ export interface CreateCalculatedAttributeDefinitionRequest {
1303
1303
  * attribute.</p>
1304
1304
  * @public
1305
1305
  */
1306
- Conditions?: Conditions;
1306
+ Conditions?: Conditions | undefined;
1307
1307
  /**
1308
1308
  * <p>The aggregation operation to perform for the calculated attribute.</p>
1309
1309
  * @public
@@ -1313,7 +1313,7 @@ export interface CreateCalculatedAttributeDefinitionRequest {
1313
1313
  * <p>The tags used to organize, track, or control access for this resource.</p>
1314
1314
  * @public
1315
1315
  */
1316
- Tags?: Record<string, string>;
1316
+ Tags?: Record<string, string> | undefined;
1317
1317
  }
1318
1318
  /**
1319
1319
  * @public
@@ -1323,50 +1323,50 @@ export interface CreateCalculatedAttributeDefinitionResponse {
1323
1323
  * <p>The unique name of the calculated attribute.</p>
1324
1324
  * @public
1325
1325
  */
1326
- CalculatedAttributeName?: string;
1326
+ CalculatedAttributeName?: string | undefined;
1327
1327
  /**
1328
1328
  * <p>The display name of the calculated attribute.</p>
1329
1329
  * @public
1330
1330
  */
1331
- DisplayName?: string;
1331
+ DisplayName?: string | undefined;
1332
1332
  /**
1333
1333
  * <p>The description of the calculated attribute.</p>
1334
1334
  * @public
1335
1335
  */
1336
- Description?: string;
1336
+ Description?: string | undefined;
1337
1337
  /**
1338
1338
  * <p>Mathematical expression and a list of attribute items specified in that
1339
1339
  * expression.</p>
1340
1340
  * @public
1341
1341
  */
1342
- AttributeDetails?: AttributeDetails;
1342
+ AttributeDetails?: AttributeDetails | undefined;
1343
1343
  /**
1344
1344
  * <p>The conditions including range, object count, and threshold for the calculated
1345
1345
  * attribute.</p>
1346
1346
  * @public
1347
1347
  */
1348
- Conditions?: Conditions;
1348
+ Conditions?: Conditions | undefined;
1349
1349
  /**
1350
1350
  * <p>The aggregation operation to perform for the calculated attribute.</p>
1351
1351
  * @public
1352
1352
  */
1353
- Statistic?: Statistic;
1353
+ Statistic?: Statistic | undefined;
1354
1354
  /**
1355
1355
  * <p>The timestamp of when the calculated attribute definition was created.</p>
1356
1356
  * @public
1357
1357
  */
1358
- CreatedAt?: Date;
1358
+ CreatedAt?: Date | undefined;
1359
1359
  /**
1360
1360
  * <p>The timestamp of when the calculated attribute definition was most recently
1361
1361
  * edited.</p>
1362
1362
  * @public
1363
1363
  */
1364
- LastUpdatedAt?: Date;
1364
+ LastUpdatedAt?: Date | undefined;
1365
1365
  /**
1366
1366
  * <p>The tags used to organize, track, or control access for this resource.</p>
1367
1367
  * @public
1368
1368
  */
1369
- Tags?: Record<string, string>;
1369
+ Tags?: Record<string, string> | undefined;
1370
1370
  }
1371
1371
  /**
1372
1372
  * <p>Configuration information about the S3 bucket where Identity Resolution Jobs write result files.</p>
@@ -1382,7 +1382,7 @@ export interface S3ExportingConfig {
1382
1382
  * <p>The S3 key name of the location where Identity Resolution Jobs write result files.</p>
1383
1383
  * @public
1384
1384
  */
1385
- S3KeyName?: string;
1385
+ S3KeyName?: string | undefined;
1386
1386
  }
1387
1387
  /**
1388
1388
  * <p>Configuration information about the S3 bucket where Identity Resolution Jobs writes result files. </p>
@@ -1398,7 +1398,7 @@ export interface ExportingConfig {
1398
1398
  * <p>The S3 location where Identity Resolution Jobs write result files.</p>
1399
1399
  * @public
1400
1400
  */
1401
- S3Exporting?: S3ExportingConfig;
1401
+ S3Exporting?: S3ExportingConfig | undefined;
1402
1402
  }
1403
1403
  /**
1404
1404
  * @public
@@ -1447,18 +1447,18 @@ export interface MatchingRequest {
1447
1447
  * <p>The day and time when do you want to start the Identity Resolution Job every week.</p>
1448
1448
  * @public
1449
1449
  */
1450
- JobSchedule?: JobSchedule;
1450
+ JobSchedule?: JobSchedule | undefined;
1451
1451
  /**
1452
1452
  * <p>Configuration information about the auto-merging process.</p>
1453
1453
  * @public
1454
1454
  */
1455
- AutoMerging?: AutoMerging;
1455
+ AutoMerging?: AutoMerging | undefined;
1456
1456
  /**
1457
1457
  * <p>Configuration information for exporting Identity Resolution results, for example, to an S3
1458
1458
  * bucket.</p>
1459
1459
  * @public
1460
1460
  */
1461
- ExportingConfig?: ExportingConfig;
1461
+ ExportingConfig?: ExportingConfig | undefined;
1462
1462
  }
1463
1463
  /**
1464
1464
  * <p>Specifies how does the rule-based matching process should match profiles. You can choose
@@ -1543,30 +1543,30 @@ export interface RuleBasedMatchingRequest {
1543
1543
  * 15 <code>MatchingRule</code> in the <code>MatchingRules</code>.</p>
1544
1544
  * @public
1545
1545
  */
1546
- MatchingRules?: MatchingRule[];
1546
+ MatchingRules?: MatchingRule[] | undefined;
1547
1547
  /**
1548
1548
  * <p>
1549
1549
  * <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_MatchingRule.html">MatchingRule</a>
1550
1550
  * </p>
1551
1551
  * @public
1552
1552
  */
1553
- MaxAllowedRuleLevelForMerging?: number;
1553
+ MaxAllowedRuleLevelForMerging?: number | undefined;
1554
1554
  /**
1555
1555
  * <p>Indicates the maximum allowed rule level.</p>
1556
1556
  * @public
1557
1557
  */
1558
- MaxAllowedRuleLevelForMatching?: number;
1558
+ MaxAllowedRuleLevelForMatching?: number | undefined;
1559
1559
  /**
1560
1560
  * <p>Configures information about the <code>AttributeTypesSelector</code> where the
1561
1561
  * rule-based identity resolution uses to match profiles.</p>
1562
1562
  * @public
1563
1563
  */
1564
- AttributeTypesSelector?: AttributeTypesSelector;
1564
+ AttributeTypesSelector?: AttributeTypesSelector | undefined;
1565
1565
  /**
1566
1566
  * <p>How the auto-merging process should resolve conflicts between different profiles.</p>
1567
1567
  * @public
1568
1568
  */
1569
- ConflictResolution?: ConflictResolution;
1569
+ ConflictResolution?: ConflictResolution | undefined;
1570
1570
  /**
1571
1571
  * <p>Configuration information about the S3 bucket where Identity Resolution Jobs writes result files. </p>
1572
1572
  * <note>
@@ -1576,7 +1576,7 @@ export interface RuleBasedMatchingRequest {
1576
1576
  * </note>
1577
1577
  * @public
1578
1578
  */
1579
- ExportingConfig?: ExportingConfig;
1579
+ ExportingConfig?: ExportingConfig | undefined;
1580
1580
  }
1581
1581
  /**
1582
1582
  * @public
@@ -1598,7 +1598,7 @@ export interface CreateDomainRequest {
1598
1598
  * permanent or semi-permanent storage.</p>
1599
1599
  * @public
1600
1600
  */
1601
- DefaultEncryptionKey?: string;
1601
+ DefaultEncryptionKey?: string | undefined;
1602
1602
  /**
1603
1603
  * <p>The URL of the SQS dead letter queue, which is used for reporting errors associated with
1604
1604
  * ingesting data from third party applications. You must set up a policy on the
@@ -1606,7 +1606,7 @@ export interface CreateDomainRequest {
1606
1606
  * messages to the DeadLetterQueue.</p>
1607
1607
  * @public
1608
1608
  */
1609
- DeadLetterQueueUrl?: string;
1609
+ DeadLetterQueueUrl?: string | undefined;
1610
1610
  /**
1611
1611
  * <p>The process of matching duplicate profiles. If <code>Matching</code> = <code>true</code>, Amazon Connect Customer Profiles starts a weekly
1612
1612
  * batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every
@@ -1617,7 +1617,7 @@ export interface CreateDomainRequest {
1617
1617
  * S3.</p>
1618
1618
  * @public
1619
1619
  */
1620
- Matching?: MatchingRequest;
1620
+ Matching?: MatchingRequest | undefined;
1621
1621
  /**
1622
1622
  * <p>The process of matching duplicate profiles using the Rule-Based matching. If
1623
1623
  * <code>RuleBasedMatching</code> = true, Amazon Connect Customer Profiles will start
@@ -1628,12 +1628,12 @@ export interface CreateDomainRequest {
1628
1628
  * can download the results from S3.</p>
1629
1629
  * @public
1630
1630
  */
1631
- RuleBasedMatching?: RuleBasedMatchingRequest;
1631
+ RuleBasedMatching?: RuleBasedMatchingRequest | undefined;
1632
1632
  /**
1633
1633
  * <p>The tags used to organize, track, or control access for this resource.</p>
1634
1634
  * @public
1635
1635
  */
1636
- Tags?: Record<string, string>;
1636
+ Tags?: Record<string, string> | undefined;
1637
1637
  }
1638
1638
  /**
1639
1639
  * <p>The flag that enables the matching process of duplicate profiles.</p>
@@ -1644,23 +1644,23 @@ export interface MatchingResponse {
1644
1644
  * <p>The flag that enables the matching process of duplicate profiles.</p>
1645
1645
  * @public
1646
1646
  */
1647
- Enabled?: boolean;
1647
+ Enabled?: boolean | undefined;
1648
1648
  /**
1649
1649
  * <p>The day and time when do you want to start the Identity Resolution Job every week.</p>
1650
1650
  * @public
1651
1651
  */
1652
- JobSchedule?: JobSchedule;
1652
+ JobSchedule?: JobSchedule | undefined;
1653
1653
  /**
1654
1654
  * <p>Configuration information about the auto-merging process.</p>
1655
1655
  * @public
1656
1656
  */
1657
- AutoMerging?: AutoMerging;
1657
+ AutoMerging?: AutoMerging | undefined;
1658
1658
  /**
1659
1659
  * <p>Configuration information for exporting Identity Resolution results, for example, to an S3
1660
1660
  * bucket.</p>
1661
1661
  * @public
1662
1662
  */
1663
- ExportingConfig?: ExportingConfig;
1663
+ ExportingConfig?: ExportingConfig | undefined;
1664
1664
  }
1665
1665
  /**
1666
1666
  * @public
@@ -1684,13 +1684,13 @@ export interface RuleBasedMatchingResponse {
1684
1684
  * <p>The flag that enables the rule-based matching process of duplicate profiles.</p>
1685
1685
  * @public
1686
1686
  */
1687
- Enabled?: boolean;
1687
+ Enabled?: boolean | undefined;
1688
1688
  /**
1689
1689
  * <p>Configures how the rule-based matching process should match profiles. You can have up to
1690
1690
  * 15 <code>MatchingRule</code> in the <code>MatchingRules</code>.</p>
1691
1691
  * @public
1692
1692
  */
1693
- MatchingRules?: MatchingRule[];
1693
+ MatchingRules?: MatchingRule[] | undefined;
1694
1694
  /**
1695
1695
  * <p>PENDING</p>
1696
1696
  * <ul>
@@ -1718,30 +1718,30 @@ export interface RuleBasedMatchingResponse {
1718
1718
  * </ul>
1719
1719
  * @public
1720
1720
  */
1721
- Status?: RuleBasedMatchingStatus;
1721
+ Status?: RuleBasedMatchingStatus | undefined;
1722
1722
  /**
1723
1723
  * <p>
1724
1724
  * <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_MatchingRule.html">MatchingRule</a>
1725
1725
  * </p>
1726
1726
  * @public
1727
1727
  */
1728
- MaxAllowedRuleLevelForMerging?: number;
1728
+ MaxAllowedRuleLevelForMerging?: number | undefined;
1729
1729
  /**
1730
1730
  * <p>Indicates the maximum allowed rule level.</p>
1731
1731
  * @public
1732
1732
  */
1733
- MaxAllowedRuleLevelForMatching?: number;
1733
+ MaxAllowedRuleLevelForMatching?: number | undefined;
1734
1734
  /**
1735
1735
  * <p>Configures information about the <code>AttributeTypesSelector</code> where the
1736
1736
  * rule-based identity resolution uses to match profiles.</p>
1737
1737
  * @public
1738
1738
  */
1739
- AttributeTypesSelector?: AttributeTypesSelector;
1739
+ AttributeTypesSelector?: AttributeTypesSelector | undefined;
1740
1740
  /**
1741
1741
  * <p>How the auto-merging process should resolve conflicts between different profiles.</p>
1742
1742
  * @public
1743
1743
  */
1744
- ConflictResolution?: ConflictResolution;
1744
+ ConflictResolution?: ConflictResolution | undefined;
1745
1745
  /**
1746
1746
  * <p>Configuration information about the S3 bucket where Identity Resolution Jobs writes result files. </p>
1747
1747
  * <note>
@@ -1751,7 +1751,7 @@ export interface RuleBasedMatchingResponse {
1751
1751
  * </note>
1752
1752
  * @public
1753
1753
  */
1754
- ExportingConfig?: ExportingConfig;
1754
+ ExportingConfig?: ExportingConfig | undefined;
1755
1755
  }
1756
1756
  /**
1757
1757
  * @public
@@ -1773,13 +1773,13 @@ export interface CreateDomainResponse {
1773
1773
  * permanent or semi-permanent storage.</p>
1774
1774
  * @public
1775
1775
  */
1776
- DefaultEncryptionKey?: string;
1776
+ DefaultEncryptionKey?: string | undefined;
1777
1777
  /**
1778
1778
  * <p>The URL of the SQS dead letter queue, which is used for reporting errors associated with
1779
1779
  * ingesting data from third party applications.</p>
1780
1780
  * @public
1781
1781
  */
1782
- DeadLetterQueueUrl?: string;
1782
+ DeadLetterQueueUrl?: string | undefined;
1783
1783
  /**
1784
1784
  * <p>The process of matching duplicate profiles. If <code>Matching</code> = <code>true</code>, Amazon Connect Customer Profiles starts a weekly
1785
1785
  * batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every
@@ -1790,7 +1790,7 @@ export interface CreateDomainResponse {
1790
1790
  * S3.</p>
1791
1791
  * @public
1792
1792
  */
1793
- Matching?: MatchingResponse;
1793
+ Matching?: MatchingResponse | undefined;
1794
1794
  /**
1795
1795
  * <p>The process of matching duplicate profiles using the Rule-Based matching. If
1796
1796
  * <code>RuleBasedMatching</code> = true, Amazon Connect Customer Profiles will start
@@ -1801,7 +1801,7 @@ export interface CreateDomainResponse {
1801
1801
  * can download the results from S3.</p>
1802
1802
  * @public
1803
1803
  */
1804
- RuleBasedMatching?: RuleBasedMatchingResponse;
1804
+ RuleBasedMatching?: RuleBasedMatchingResponse | undefined;
1805
1805
  /**
1806
1806
  * <p>The timestamp of when the domain was created.</p>
1807
1807
  * @public
@@ -1816,7 +1816,7 @@ export interface CreateDomainResponse {
1816
1816
  * <p>The tags used to organize, track, or control access for this resource.</p>
1817
1817
  * @public
1818
1818
  */
1819
- Tags?: Record<string, string>;
1819
+ Tags?: Record<string, string> | undefined;
1820
1820
  }
1821
1821
  /**
1822
1822
  * @public
@@ -1842,7 +1842,7 @@ export interface CreateEventStreamRequest {
1842
1842
  * <p>The tags used to organize, track, or control access for this resource.</p>
1843
1843
  * @public
1844
1844
  */
1845
- Tags?: Record<string, string>;
1845
+ Tags?: Record<string, string> | undefined;
1846
1846
  }
1847
1847
  /**
1848
1848
  * @public
@@ -1857,7 +1857,7 @@ export interface CreateEventStreamResponse {
1857
1857
  * <p>The tags used to organize, track, or control access for this resource.</p>
1858
1858
  * @public
1859
1859
  */
1860
- Tags?: Record<string, string>;
1860
+ Tags?: Record<string, string> | undefined;
1861
1861
  }
1862
1862
  /**
1863
1863
  * <p>Configuration data for integration workflow.</p>
@@ -1868,7 +1868,7 @@ export interface IntegrationConfig {
1868
1868
  * <p>Configuration data for <code>APPFLOW_INTEGRATION</code> workflow type.</p>
1869
1869
  * @public
1870
1870
  */
1871
- AppflowIntegration?: AppflowIntegration;
1871
+ AppflowIntegration?: AppflowIntegration | undefined;
1872
1872
  }
1873
1873
  /**
1874
1874
  * @public
@@ -1914,7 +1914,7 @@ export interface CreateIntegrationWorkflowRequest {
1914
1914
  * <p>The tags used to organize, track, or control access for this resource.</p>
1915
1915
  * @public
1916
1916
  */
1917
- Tags?: Record<string, string>;
1917
+ Tags?: Record<string, string> | undefined;
1918
1918
  }
1919
1919
  /**
1920
1920
  * @public
@@ -1970,124 +1970,124 @@ export interface CreateProfileRequest {
1970
1970
  * <p>An account number that you have given to the customer.</p>
1971
1971
  * @public
1972
1972
  */
1973
- AccountNumber?: string;
1973
+ AccountNumber?: string | undefined;
1974
1974
  /**
1975
1975
  * <p>Any additional information relevant to the customer’s profile.</p>
1976
1976
  * @public
1977
1977
  */
1978
- AdditionalInformation?: string;
1978
+ AdditionalInformation?: string | undefined;
1979
1979
  /**
1980
1980
  * @deprecated
1981
1981
  *
1982
1982
  * <p>The type of profile used to describe the customer.</p>
1983
1983
  * @public
1984
1984
  */
1985
- PartyType?: PartyType;
1985
+ PartyType?: PartyType | undefined;
1986
1986
  /**
1987
1987
  * <p>The name of the customer’s business.</p>
1988
1988
  * @public
1989
1989
  */
1990
- BusinessName?: string;
1990
+ BusinessName?: string | undefined;
1991
1991
  /**
1992
1992
  * <p>The customer’s first name.</p>
1993
1993
  * @public
1994
1994
  */
1995
- FirstName?: string;
1995
+ FirstName?: string | undefined;
1996
1996
  /**
1997
1997
  * <p>The customer’s middle name.</p>
1998
1998
  * @public
1999
1999
  */
2000
- MiddleName?: string;
2000
+ MiddleName?: string | undefined;
2001
2001
  /**
2002
2002
  * <p>The customer’s last name.</p>
2003
2003
  * @public
2004
2004
  */
2005
- LastName?: string;
2005
+ LastName?: string | undefined;
2006
2006
  /**
2007
2007
  * <p>The customer’s birth date. </p>
2008
2008
  * @public
2009
2009
  */
2010
- BirthDate?: string;
2010
+ BirthDate?: string | undefined;
2011
2011
  /**
2012
2012
  * @deprecated
2013
2013
  *
2014
2014
  * <p>The gender with which the customer identifies. </p>
2015
2015
  * @public
2016
2016
  */
2017
- Gender?: Gender;
2017
+ Gender?: Gender | undefined;
2018
2018
  /**
2019
2019
  * <p>The customer’s phone number, which has not been specified as a mobile, home, or business
2020
2020
  * number. </p>
2021
2021
  * @public
2022
2022
  */
2023
- PhoneNumber?: string;
2023
+ PhoneNumber?: string | undefined;
2024
2024
  /**
2025
2025
  * <p>The customer’s mobile phone number.</p>
2026
2026
  * @public
2027
2027
  */
2028
- MobilePhoneNumber?: string;
2028
+ MobilePhoneNumber?: string | undefined;
2029
2029
  /**
2030
2030
  * <p>The customer’s home phone number.</p>
2031
2031
  * @public
2032
2032
  */
2033
- HomePhoneNumber?: string;
2033
+ HomePhoneNumber?: string | undefined;
2034
2034
  /**
2035
2035
  * <p>The customer’s business phone number.</p>
2036
2036
  * @public
2037
2037
  */
2038
- BusinessPhoneNumber?: string;
2038
+ BusinessPhoneNumber?: string | undefined;
2039
2039
  /**
2040
2040
  * <p>The customer’s email address, which has not been specified as a personal or business
2041
2041
  * address. </p>
2042
2042
  * @public
2043
2043
  */
2044
- EmailAddress?: string;
2044
+ EmailAddress?: string | undefined;
2045
2045
  /**
2046
2046
  * <p>The customer’s personal email address.</p>
2047
2047
  * @public
2048
2048
  */
2049
- PersonalEmailAddress?: string;
2049
+ PersonalEmailAddress?: string | undefined;
2050
2050
  /**
2051
2051
  * <p>The customer’s business email address.</p>
2052
2052
  * @public
2053
2053
  */
2054
- BusinessEmailAddress?: string;
2054
+ BusinessEmailAddress?: string | undefined;
2055
2055
  /**
2056
2056
  * <p>A generic address associated with the customer that is not mailing, shipping, or
2057
2057
  * billing.</p>
2058
2058
  * @public
2059
2059
  */
2060
- Address?: Address;
2060
+ Address?: Address | undefined;
2061
2061
  /**
2062
2062
  * <p>The customer’s shipping address.</p>
2063
2063
  * @public
2064
2064
  */
2065
- ShippingAddress?: Address;
2065
+ ShippingAddress?: Address | undefined;
2066
2066
  /**
2067
2067
  * <p>The customer’s mailing address.</p>
2068
2068
  * @public
2069
2069
  */
2070
- MailingAddress?: Address;
2070
+ MailingAddress?: Address | undefined;
2071
2071
  /**
2072
2072
  * <p>The customer’s billing address.</p>
2073
2073
  * @public
2074
2074
  */
2075
- BillingAddress?: Address;
2075
+ BillingAddress?: Address | undefined;
2076
2076
  /**
2077
2077
  * <p>A key value pair of attributes of a customer profile.</p>
2078
2078
  * @public
2079
2079
  */
2080
- Attributes?: Record<string, string>;
2080
+ Attributes?: Record<string, string> | undefined;
2081
2081
  /**
2082
2082
  * <p>An alternative to <code>PartyType</code> which accepts any string as input.</p>
2083
2083
  * @public
2084
2084
  */
2085
- PartyTypeString?: string;
2085
+ PartyTypeString?: string | undefined;
2086
2086
  /**
2087
2087
  * <p>An alternative to <code>Gender</code> which accepts any string as input.</p>
2088
2088
  * @public
2089
2089
  */
2090
- GenderString?: string;
2090
+ GenderString?: string | undefined;
2091
2091
  }
2092
2092
  /**
2093
2093
  * @public
@@ -2207,7 +2207,7 @@ export interface DeleteProfileResponse {
2207
2207
  * <p>A message that indicates the delete request is done.</p>
2208
2208
  * @public
2209
2209
  */
2210
- Message?: string;
2210
+ Message?: string | undefined;
2211
2211
  }
2212
2212
  /**
2213
2213
  * @public
@@ -2242,7 +2242,7 @@ export interface DeleteProfileKeyResponse {
2242
2242
  * <p>A message that indicates the delete request is done.</p>
2243
2243
  * @public
2244
2244
  */
2245
- Message?: string;
2245
+ Message?: string | undefined;
2246
2246
  }
2247
2247
  /**
2248
2248
  * @public
@@ -2277,7 +2277,7 @@ export interface DeleteProfileObjectResponse {
2277
2277
  * <p>A message that indicates the delete request is done.</p>
2278
2278
  * @public
2279
2279
  */
2280
- Message?: string;
2280
+ Message?: string | undefined;
2281
2281
  }
2282
2282
  /**
2283
2283
  * @public
@@ -2364,18 +2364,18 @@ export interface ObjectTypeField {
2364
2364
  * ProfileObjectType of a Zendesk user and “FirstName” is a field in that ObjectType.</p>
2365
2365
  * @public
2366
2366
  */
2367
- Source?: string;
2367
+ Source?: string | undefined;
2368
2368
  /**
2369
2369
  * <p>The location of the data in the standard ProfileObject model. For example:
2370
2370
  * _profile.Address.PostalCode.</p>
2371
2371
  * @public
2372
2372
  */
2373
- Target?: string;
2373
+ Target?: string | undefined;
2374
2374
  /**
2375
2375
  * <p>The content type of the field. Used for determining equality when searching.</p>
2376
2376
  * @public
2377
2377
  */
2378
- ContentType?: FieldContentType;
2378
+ ContentType?: FieldContentType | undefined;
2379
2379
  }
2380
2380
  /**
2381
2381
  * @public
@@ -2413,12 +2413,12 @@ export interface ObjectTypeKey {
2413
2413
  * profiles.</p>
2414
2414
  * @public
2415
2415
  */
2416
- StandardIdentifiers?: StandardIdentifier[];
2416
+ StandardIdentifiers?: StandardIdentifier[] | undefined;
2417
2417
  /**
2418
2418
  * <p>The reference for the key name of the fields map.</p>
2419
2419
  * @public
2420
2420
  */
2421
- FieldNames?: string[];
2421
+ FieldNames?: string[] | undefined;
2422
2422
  }
2423
2423
  /**
2424
2424
  * <p>Contains <code>ProfileObjectType</code> mapping information from the model.</p>
@@ -2430,17 +2430,17 @@ export interface DetectedProfileObjectType {
2430
2430
  * fields.</p>
2431
2431
  * @public
2432
2432
  */
2433
- SourceLastUpdatedTimestampFormat?: string;
2433
+ SourceLastUpdatedTimestampFormat?: string | undefined;
2434
2434
  /**
2435
2435
  * <p>A map of the name and the <code>ObjectType</code> field.</p>
2436
2436
  * @public
2437
2437
  */
2438
- Fields?: Record<string, ObjectTypeField>;
2438
+ Fields?: Record<string, ObjectTypeField> | undefined;
2439
2439
  /**
2440
2440
  * <p>A list of unique keys that can be used to map data to a profile.</p>
2441
2441
  * @public
2442
2442
  */
2443
- Keys?: Record<string, ObjectTypeKey[]>;
2443
+ Keys?: Record<string, ObjectTypeKey[]> | undefined;
2444
2444
  }
2445
2445
  /**
2446
2446
  * @public
@@ -2451,7 +2451,7 @@ export interface DetectProfileObjectTypeResponse {
2451
2451
  * mapping is supported.</p>
2452
2452
  * @public
2453
2453
  */
2454
- DetectedProfileObjectTypes?: DetectedProfileObjectType[];
2454
+ DetectedProfileObjectTypes?: DetectedProfileObjectType[] | undefined;
2455
2455
  }
2456
2456
  /**
2457
2457
  * @public
@@ -2477,7 +2477,7 @@ export interface GetAutoMergingPreviewRequest {
2477
2477
  * during the auto-merge process.</p>
2478
2478
  * @public
2479
2479
  */
2480
- MinAllowedConfidenceScoreForMerging?: number;
2480
+ MinAllowedConfidenceScoreForMerging?: number | undefined;
2481
2481
  }
2482
2482
  /**
2483
2483
  * @public
@@ -2493,17 +2493,17 @@ export interface GetAutoMergingPreviewResponse {
2493
2493
  * run.</p>
2494
2494
  * @public
2495
2495
  */
2496
- NumberOfMatchesInSample?: number;
2496
+ NumberOfMatchesInSample?: number | undefined;
2497
2497
  /**
2498
2498
  * <p>The number of profiles found in this preview dry run.</p>
2499
2499
  * @public
2500
2500
  */
2501
- NumberOfProfilesInSample?: number;
2501
+ NumberOfProfilesInSample?: number | undefined;
2502
2502
  /**
2503
2503
  * <p>The number of profiles that would be merged if this wasn't a preview dry run.</p>
2504
2504
  * @public
2505
2505
  */
2506
- NumberOfProfilesWillBeMerged?: number;
2506
+ NumberOfProfilesWillBeMerged?: number | undefined;
2507
2507
  }
2508
2508
  /**
2509
2509
  * @public
@@ -2528,50 +2528,50 @@ export interface GetCalculatedAttributeDefinitionResponse {
2528
2528
  * <p>The unique name of the calculated attribute.</p>
2529
2529
  * @public
2530
2530
  */
2531
- CalculatedAttributeName?: string;
2531
+ CalculatedAttributeName?: string | undefined;
2532
2532
  /**
2533
2533
  * <p>The display name of the calculated attribute.</p>
2534
2534
  * @public
2535
2535
  */
2536
- DisplayName?: string;
2536
+ DisplayName?: string | undefined;
2537
2537
  /**
2538
2538
  * <p>The description of the calculated attribute.</p>
2539
2539
  * @public
2540
2540
  */
2541
- Description?: string;
2541
+ Description?: string | undefined;
2542
2542
  /**
2543
2543
  * <p>The timestamp of when the calculated attribute definition was created.</p>
2544
2544
  * @public
2545
2545
  */
2546
- CreatedAt?: Date;
2546
+ CreatedAt?: Date | undefined;
2547
2547
  /**
2548
2548
  * <p>The timestamp of when the calculated attribute definition was most recently
2549
2549
  * edited.</p>
2550
2550
  * @public
2551
2551
  */
2552
- LastUpdatedAt?: Date;
2552
+ LastUpdatedAt?: Date | undefined;
2553
2553
  /**
2554
2554
  * <p>The aggregation operation to perform for the calculated attribute.</p>
2555
2555
  * @public
2556
2556
  */
2557
- Statistic?: Statistic;
2557
+ Statistic?: Statistic | undefined;
2558
2558
  /**
2559
2559
  * <p>The conditions including range, object count, and threshold for the calculated
2560
2560
  * attribute.</p>
2561
2561
  * @public
2562
2562
  */
2563
- Conditions?: Conditions;
2563
+ Conditions?: Conditions | undefined;
2564
2564
  /**
2565
2565
  * <p>Mathematical expression and a list of attribute items specified in that
2566
2566
  * expression.</p>
2567
2567
  * @public
2568
2568
  */
2569
- AttributeDetails?: AttributeDetails;
2569
+ AttributeDetails?: AttributeDetails | undefined;
2570
2570
  /**
2571
2571
  * <p>The tags used to organize, track, or control access for this resource.</p>
2572
2572
  * @public
2573
2573
  */
2574
- Tags?: Record<string, string>;
2574
+ Tags?: Record<string, string> | undefined;
2575
2575
  }
2576
2576
  /**
2577
2577
  * @public
@@ -2601,23 +2601,23 @@ export interface GetCalculatedAttributeForProfileResponse {
2601
2601
  * <p>The unique name of the calculated attribute.</p>
2602
2602
  * @public
2603
2603
  */
2604
- CalculatedAttributeName?: string;
2604
+ CalculatedAttributeName?: string | undefined;
2605
2605
  /**
2606
2606
  * <p>The display name of the calculated attribute.</p>
2607
2607
  * @public
2608
2608
  */
2609
- DisplayName?: string;
2609
+ DisplayName?: string | undefined;
2610
2610
  /**
2611
2611
  * <p>Indicates whether the calculated attribute’s value is based on partial data. If data is
2612
2612
  * partial, it is set to true.</p>
2613
2613
  * @public
2614
2614
  */
2615
- IsDataPartial?: string;
2615
+ IsDataPartial?: string | undefined;
2616
2616
  /**
2617
2617
  * <p>The value of the calculated attribute.</p>
2618
2618
  * @public
2619
2619
  */
2620
- Value?: string;
2620
+ Value?: string | undefined;
2621
2621
  }
2622
2622
  /**
2623
2623
  * @public
@@ -2638,24 +2638,24 @@ export interface DomainStats {
2638
2638
  * <p>The total number of profiles currently in the domain.</p>
2639
2639
  * @public
2640
2640
  */
2641
- ProfileCount?: number;
2641
+ ProfileCount?: number | undefined;
2642
2642
  /**
2643
2643
  * <p>The number of profiles that you are currently paying for in the domain. If you have more
2644
2644
  * than 100 objects associated with a single profile, that profile counts as two profiles. If
2645
2645
  * you have more than 200 objects, that profile counts as three, and so on.</p>
2646
2646
  * @public
2647
2647
  */
2648
- MeteringProfileCount?: number;
2648
+ MeteringProfileCount?: number | undefined;
2649
2649
  /**
2650
2650
  * <p>The total number of objects in domain.</p>
2651
2651
  * @public
2652
2652
  */
2653
- ObjectCount?: number;
2653
+ ObjectCount?: number | undefined;
2654
2654
  /**
2655
2655
  * <p>The total size, in bytes, of all objects in the domain.</p>
2656
2656
  * @public
2657
2657
  */
2658
- TotalSize?: number;
2658
+ TotalSize?: number | undefined;
2659
2659
  }
2660
2660
  /**
2661
2661
  * @public
@@ -2670,25 +2670,25 @@ export interface GetDomainResponse {
2670
2670
  * <p>The default number of days until the data within the domain expires.</p>
2671
2671
  * @public
2672
2672
  */
2673
- DefaultExpirationDays?: number;
2673
+ DefaultExpirationDays?: number | undefined;
2674
2674
  /**
2675
2675
  * <p>The default encryption key, which is an AWS managed key, is used when no specific type
2676
2676
  * of encryption key is specified. It is used to encrypt all data before it is placed in
2677
2677
  * permanent or semi-permanent storage.</p>
2678
2678
  * @public
2679
2679
  */
2680
- DefaultEncryptionKey?: string;
2680
+ DefaultEncryptionKey?: string | undefined;
2681
2681
  /**
2682
2682
  * <p>The URL of the SQS dead letter queue, which is used for reporting errors associated with
2683
2683
  * ingesting data from third party applications.</p>
2684
2684
  * @public
2685
2685
  */
2686
- DeadLetterQueueUrl?: string;
2686
+ DeadLetterQueueUrl?: string | undefined;
2687
2687
  /**
2688
2688
  * <p>Usage-specific statistics about the domain.</p>
2689
2689
  * @public
2690
2690
  */
2691
- Stats?: DomainStats;
2691
+ Stats?: DomainStats | undefined;
2692
2692
  /**
2693
2693
  * <p>The process of matching duplicate profiles. If <code>Matching</code> = <code>true</code>, Amazon Connect Customer Profiles starts a weekly
2694
2694
  * batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every
@@ -2699,7 +2699,7 @@ export interface GetDomainResponse {
2699
2699
  * S3.</p>
2700
2700
  * @public
2701
2701
  */
2702
- Matching?: MatchingResponse;
2702
+ Matching?: MatchingResponse | undefined;
2703
2703
  /**
2704
2704
  * <p>The process of matching duplicate profiles using the Rule-Based matching. If
2705
2705
  * <code>RuleBasedMatching</code> = true, Amazon Connect Customer Profiles will start
@@ -2710,7 +2710,7 @@ export interface GetDomainResponse {
2710
2710
  * can download the results from S3.</p>
2711
2711
  * @public
2712
2712
  */
2713
- RuleBasedMatching?: RuleBasedMatchingResponse;
2713
+ RuleBasedMatching?: RuleBasedMatchingResponse | undefined;
2714
2714
  /**
2715
2715
  * <p>The timestamp of when the domain was created.</p>
2716
2716
  * @public
@@ -2725,7 +2725,7 @@ export interface GetDomainResponse {
2725
2725
  * <p>The tags used to organize, track, or control access for this resource.</p>
2726
2726
  * @public
2727
2727
  */
2728
- Tags?: Record<string, string>;
2728
+ Tags?: Record<string, string> | undefined;
2729
2729
  }
2730
2730
  /**
2731
2731
  * @public
@@ -2774,13 +2774,13 @@ export interface EventStreamDestinationDetails {
2774
2774
  * <p>The timestamp when the status last changed to <code>UNHEALHY</code>.</p>
2775
2775
  * @public
2776
2776
  */
2777
- UnhealthySince?: Date;
2777
+ UnhealthySince?: Date | undefined;
2778
2778
  /**
2779
2779
  * <p>The human-readable string that corresponds to the error or success while enabling the
2780
2780
  * streaming destination.</p>
2781
2781
  * @public
2782
2782
  */
2783
- Message?: string;
2783
+ Message?: string | undefined;
2784
2784
  }
2785
2785
  /**
2786
2786
  * @public
@@ -2822,7 +2822,7 @@ export interface GetEventStreamResponse {
2822
2822
  * <p>The timestamp when the <code>State</code> changed to <code>STOPPED</code>.</p>
2823
2823
  * @public
2824
2824
  */
2825
- StoppedSince?: Date;
2825
+ StoppedSince?: Date | undefined;
2826
2826
  /**
2827
2827
  * <p>Details regarding the Kinesis stream.</p>
2828
2828
  * @public
@@ -2832,7 +2832,7 @@ export interface GetEventStreamResponse {
2832
2832
  * <p>The tags used to organize, track, or control access for this resource.</p>
2833
2833
  * @public
2834
2834
  */
2835
- Tags?: Record<string, string>;
2835
+ Tags?: Record<string, string> | undefined;
2836
2836
  }
2837
2837
  /**
2838
2838
  * @public
@@ -2858,12 +2858,12 @@ export interface S3ExportingLocation {
2858
2858
  * <p>The name of the S3 bucket name where Identity Resolution Jobs write result files.</p>
2859
2859
  * @public
2860
2860
  */
2861
- S3BucketName?: string;
2861
+ S3BucketName?: string | undefined;
2862
2862
  /**
2863
2863
  * <p>The S3 key name of the location where Identity Resolution Jobs write result files.</p>
2864
2864
  * @public
2865
2865
  */
2866
- S3KeyName?: string;
2866
+ S3KeyName?: string | undefined;
2867
2867
  }
2868
2868
  /**
2869
2869
  * <p>The S3 location where Identity Resolution Jobs write result files.</p>
@@ -2874,7 +2874,7 @@ export interface ExportingLocation {
2874
2874
  * <p>Information about the S3 location where Identity Resolution Jobs write result files.</p>
2875
2875
  * @public
2876
2876
  */
2877
- S3Exporting?: S3ExportingLocation;
2877
+ S3Exporting?: S3ExportingLocation | undefined;
2878
2878
  }
2879
2879
  /**
2880
2880
  * <p>Statistics about the Identity Resolution Job.</p>
@@ -2885,17 +2885,17 @@ export interface JobStats {
2885
2885
  * <p>The number of profiles reviewed.</p>
2886
2886
  * @public
2887
2887
  */
2888
- NumberOfProfilesReviewed?: number;
2888
+ NumberOfProfilesReviewed?: number | undefined;
2889
2889
  /**
2890
2890
  * <p>The number of matches found.</p>
2891
2891
  * @public
2892
2892
  */
2893
- NumberOfMatchesFound?: number;
2893
+ NumberOfMatchesFound?: number | undefined;
2894
2894
  /**
2895
2895
  * <p>The number of merges completed.</p>
2896
2896
  * @public
2897
2897
  */
2898
- NumberOfMergesDone?: number;
2898
+ NumberOfMergesDone?: number | undefined;
2899
2899
  }
2900
2900
  /**
2901
2901
  * @public
@@ -2922,12 +2922,12 @@ export interface GetIdentityResolutionJobResponse {
2922
2922
  * <p>The unique name of the domain.</p>
2923
2923
  * @public
2924
2924
  */
2925
- DomainName?: string;
2925
+ DomainName?: string | undefined;
2926
2926
  /**
2927
2927
  * <p>The unique identifier of the Identity Resolution Job.</p>
2928
2928
  * @public
2929
2929
  */
2930
- JobId?: string;
2930
+ JobId?: string | undefined;
2931
2931
  /**
2932
2932
  * <p>The status of the Identity Resolution Job.</p>
2933
2933
  * <ul>
@@ -2967,47 +2967,47 @@ export interface GetIdentityResolutionJobResponse {
2967
2967
  * </ul>
2968
2968
  * @public
2969
2969
  */
2970
- Status?: IdentityResolutionJobStatus;
2970
+ Status?: IdentityResolutionJobStatus | undefined;
2971
2971
  /**
2972
2972
  * <p>The error messages that are generated when the Identity Resolution Job runs.</p>
2973
2973
  * @public
2974
2974
  */
2975
- Message?: string;
2975
+ Message?: string | undefined;
2976
2976
  /**
2977
2977
  * <p>The timestamp of when the Identity Resolution Job was started or will be started.</p>
2978
2978
  * @public
2979
2979
  */
2980
- JobStartTime?: Date;
2980
+ JobStartTime?: Date | undefined;
2981
2981
  /**
2982
2982
  * <p>The timestamp of when the Identity Resolution Job was completed.</p>
2983
2983
  * @public
2984
2984
  */
2985
- JobEndTime?: Date;
2985
+ JobEndTime?: Date | undefined;
2986
2986
  /**
2987
2987
  * <p>The timestamp of when the Identity Resolution Job was most recently edited.</p>
2988
2988
  * @public
2989
2989
  */
2990
- LastUpdatedAt?: Date;
2990
+ LastUpdatedAt?: Date | undefined;
2991
2991
  /**
2992
2992
  * <p>The timestamp of when the Identity Resolution Job will expire.</p>
2993
2993
  * @public
2994
2994
  */
2995
- JobExpirationTime?: Date;
2995
+ JobExpirationTime?: Date | undefined;
2996
2996
  /**
2997
2997
  * <p>Configuration settings for how to perform the auto-merging of profiles.</p>
2998
2998
  * @public
2999
2999
  */
3000
- AutoMerging?: AutoMerging;
3000
+ AutoMerging?: AutoMerging | undefined;
3001
3001
  /**
3002
3002
  * <p>The S3 location where the Identity Resolution Job writes result files.</p>
3003
3003
  * @public
3004
3004
  */
3005
- ExportingLocation?: ExportingLocation;
3005
+ ExportingLocation?: ExportingLocation | undefined;
3006
3006
  /**
3007
3007
  * <p>Statistics about the Identity Resolution Job.</p>
3008
3008
  * @public
3009
3009
  */
3010
- JobStats?: JobStats;
3010
+ JobStats?: JobStats | undefined;
3011
3011
  }
3012
3012
  /**
3013
3013
  * @public
@@ -3042,7 +3042,7 @@ export interface GetIntegrationResponse {
3042
3042
  * <p>The name of the profile object type.</p>
3043
3043
  * @public
3044
3044
  */
3045
- ObjectTypeName?: string;
3045
+ ObjectTypeName?: string | undefined;
3046
3046
  /**
3047
3047
  * <p>The timestamp of when the domain was created.</p>
3048
3048
  * @public
@@ -3057,32 +3057,32 @@ export interface GetIntegrationResponse {
3057
3057
  * <p>The tags used to organize, track, or control access for this resource.</p>
3058
3058
  * @public
3059
3059
  */
3060
- Tags?: Record<string, string>;
3060
+ Tags?: Record<string, string> | undefined;
3061
3061
  /**
3062
3062
  * <p>A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an <code>ObjectTypeName</code> (template) used to ingest the event.
3063
3063
  * It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>,
3064
3064
  * <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
3065
3065
  * @public
3066
3066
  */
3067
- ObjectTypeNames?: Record<string, string>;
3067
+ ObjectTypeNames?: Record<string, string> | undefined;
3068
3068
  /**
3069
3069
  * <p>Unique identifier for the workflow.</p>
3070
3070
  * @public
3071
3071
  */
3072
- WorkflowId?: string;
3072
+ WorkflowId?: string | undefined;
3073
3073
  /**
3074
3074
  * <p>Boolean that shows if the Flow that's associated with the Integration is created in
3075
3075
  * Amazon Appflow, or with ObjectTypeName equals _unstructured via API/CLI in
3076
3076
  * flowDefinition.</p>
3077
3077
  * @public
3078
3078
  */
3079
- IsUnstructured?: boolean;
3079
+ IsUnstructured?: boolean | undefined;
3080
3080
  /**
3081
3081
  * <p>The Amazon Resource Name (ARN) of the IAM role. The Integration uses this role to make
3082
3082
  * Customer Profiles requests on your behalf.</p>
3083
3083
  * @public
3084
3084
  */
3085
- RoleArn?: string;
3085
+ RoleArn?: string | undefined;
3086
3086
  }
3087
3087
  /**
3088
3088
  * @public
@@ -3093,12 +3093,12 @@ export interface GetMatchesRequest {
3093
3093
  * response in the next request to retrieve the next set of results.</p>
3094
3094
  * @public
3095
3095
  */
3096
- NextToken?: string;
3096
+ NextToken?: string | undefined;
3097
3097
  /**
3098
3098
  * <p>The maximum number of results to return per page.</p>
3099
3099
  * @public
3100
3100
  */
3101
- MaxResults?: number;
3101
+ MaxResults?: number | undefined;
3102
3102
  /**
3103
3103
  * <p>The unique name of the domain.</p>
3104
3104
  * @public
@@ -3114,12 +3114,12 @@ export interface MatchItem {
3114
3114
  * <p>The unique identifiers for this group of profiles that match.</p>
3115
3115
  * @public
3116
3116
  */
3117
- MatchId?: string;
3117
+ MatchId?: string | undefined;
3118
3118
  /**
3119
3119
  * <p>A list of identifiers for profiles that match.</p>
3120
3120
  * @public
3121
3121
  */
3122
- ProfileIds?: string[];
3122
+ ProfileIds?: string[] | undefined;
3123
3123
  /**
3124
3124
  * <p>A number between 0 and 1, where a higher score means higher similarity. Examining match
3125
3125
  * confidence scores lets you distinguish between groups of similar records in which the
@@ -3130,7 +3130,7 @@ export interface MatchItem {
3130
3130
  * absolute measure of matching quality.</p>
3131
3131
  * @public
3132
3132
  */
3133
- ConfidenceScore?: number;
3133
+ ConfidenceScore?: number | undefined;
3134
3134
  }
3135
3135
  /**
3136
3136
  * @public
@@ -3140,22 +3140,22 @@ export interface GetMatchesResponse {
3140
3140
  * <p>If there are additional results, this is the token for the next set of results.</p>
3141
3141
  * @public
3142
3142
  */
3143
- NextToken?: string;
3143
+ NextToken?: string | undefined;
3144
3144
  /**
3145
3145
  * <p>The timestamp this version of Match Result generated.</p>
3146
3146
  * @public
3147
3147
  */
3148
- MatchGenerationDate?: Date;
3148
+ MatchGenerationDate?: Date | undefined;
3149
3149
  /**
3150
3150
  * <p>The number of potential matches found.</p>
3151
3151
  * @public
3152
3152
  */
3153
- PotentialMatches?: number;
3153
+ PotentialMatches?: number | undefined;
3154
3154
  /**
3155
3155
  * <p>The list of matched profiles for this instance.</p>
3156
3156
  * @public
3157
3157
  */
3158
- Matches?: MatchItem[];
3158
+ Matches?: MatchItem[] | undefined;
3159
3159
  }
3160
3160
  /**
3161
3161
  * @public
@@ -3190,18 +3190,18 @@ export interface GetProfileObjectTypeResponse {
3190
3190
  * <p>A unique identifier for the object template.</p>
3191
3191
  * @public
3192
3192
  */
3193
- TemplateId?: string;
3193
+ TemplateId?: string | undefined;
3194
3194
  /**
3195
3195
  * <p>The number of days until the data in the object expires.</p>
3196
3196
  * @public
3197
3197
  */
3198
- ExpirationDays?: number;
3198
+ ExpirationDays?: number | undefined;
3199
3199
  /**
3200
3200
  * <p>The customer-provided key to encrypt the profile object that will be created in this
3201
3201
  * profile object type.</p>
3202
3202
  * @public
3203
3203
  */
3204
- EncryptionKey?: string;
3204
+ EncryptionKey?: string | undefined;
3205
3205
  /**
3206
3206
  * <p>Indicates whether a profile should be created when data is received if one doesn’t exist
3207
3207
  * for an object of this type. The default is <code>FALSE</code>. If the AllowProfileCreation
@@ -3210,48 +3210,48 @@ export interface GetProfileObjectTypeResponse {
3210
3210
  * is found, then the service creates a new standard profile.</p>
3211
3211
  * @public
3212
3212
  */
3213
- AllowProfileCreation?: boolean;
3213
+ AllowProfileCreation?: boolean | undefined;
3214
3214
  /**
3215
3215
  * <p>The format of your <code>sourceLastUpdatedTimestamp</code> that was previously set
3216
3216
  * up.</p>
3217
3217
  * @public
3218
3218
  */
3219
- SourceLastUpdatedTimestampFormat?: string;
3219
+ SourceLastUpdatedTimestampFormat?: string | undefined;
3220
3220
  /**
3221
3221
  * <p>The amount of provisioned profile object max count available.</p>
3222
3222
  * @public
3223
3223
  */
3224
- MaxAvailableProfileObjectCount?: number;
3224
+ MaxAvailableProfileObjectCount?: number | undefined;
3225
3225
  /**
3226
3226
  * <p>The amount of profile object max count assigned to the object type.</p>
3227
3227
  * @public
3228
3228
  */
3229
- MaxProfileObjectCount?: number;
3229
+ MaxProfileObjectCount?: number | undefined;
3230
3230
  /**
3231
3231
  * <p>A map of the name and ObjectType field.</p>
3232
3232
  * @public
3233
3233
  */
3234
- Fields?: Record<string, ObjectTypeField>;
3234
+ Fields?: Record<string, ObjectTypeField> | undefined;
3235
3235
  /**
3236
3236
  * <p>A list of unique keys that can be used to map data to the profile.</p>
3237
3237
  * @public
3238
3238
  */
3239
- Keys?: Record<string, ObjectTypeKey[]>;
3239
+ Keys?: Record<string, ObjectTypeKey[]> | undefined;
3240
3240
  /**
3241
3241
  * <p>The timestamp of when the domain was created.</p>
3242
3242
  * @public
3243
3243
  */
3244
- CreatedAt?: Date;
3244
+ CreatedAt?: Date | undefined;
3245
3245
  /**
3246
3246
  * <p>The timestamp of when the domain was most recently edited.</p>
3247
3247
  * @public
3248
3248
  */
3249
- LastUpdatedAt?: Date;
3249
+ LastUpdatedAt?: Date | undefined;
3250
3250
  /**
3251
3251
  * <p>The tags used to organize, track, or control access for this resource.</p>
3252
3252
  * @public
3253
3253
  */
3254
- Tags?: Record<string, string>;
3254
+ Tags?: Record<string, string> | undefined;
3255
3255
  }
3256
3256
  /**
3257
3257
  * @public
@@ -3271,17 +3271,17 @@ export interface GetProfileObjectTypeTemplateResponse {
3271
3271
  * <p>A unique identifier for the object template.</p>
3272
3272
  * @public
3273
3273
  */
3274
- TemplateId?: string;
3274
+ TemplateId?: string | undefined;
3275
3275
  /**
3276
3276
  * <p>The name of the source of the object template.</p>
3277
3277
  * @public
3278
3278
  */
3279
- SourceName?: string;
3279
+ SourceName?: string | undefined;
3280
3280
  /**
3281
3281
  * <p>The source of the object template.</p>
3282
3282
  * @public
3283
3283
  */
3284
- SourceObject?: string;
3284
+ SourceObject?: string | undefined;
3285
3285
  /**
3286
3286
  * <p>Indicates whether a profile should be created when data is received if one doesn’t exist
3287
3287
  * for an object of this type. The default is <code>FALSE</code>. If the AllowProfileCreation
@@ -3290,23 +3290,23 @@ export interface GetProfileObjectTypeTemplateResponse {
3290
3290
  * is found, then the service creates a new standard profile.</p>
3291
3291
  * @public
3292
3292
  */
3293
- AllowProfileCreation?: boolean;
3293
+ AllowProfileCreation?: boolean | undefined;
3294
3294
  /**
3295
3295
  * <p>The format of your <code>sourceLastUpdatedTimestamp</code> that was previously set
3296
3296
  * up.</p>
3297
3297
  * @public
3298
3298
  */
3299
- SourceLastUpdatedTimestampFormat?: string;
3299
+ SourceLastUpdatedTimestampFormat?: string | undefined;
3300
3300
  /**
3301
3301
  * <p>A map of the name and ObjectType field.</p>
3302
3302
  * @public
3303
3303
  */
3304
- Fields?: Record<string, ObjectTypeField>;
3304
+ Fields?: Record<string, ObjectTypeField> | undefined;
3305
3305
  /**
3306
3306
  * <p>A list of unique keys that can be used to map data to the profile.</p>
3307
3307
  * @public
3308
3308
  */
3309
- Keys?: Record<string, ObjectTypeKey[]>;
3309
+ Keys?: Record<string, ObjectTypeKey[]> | undefined;
3310
3310
  }
3311
3311
  /**
3312
3312
  * @public
@@ -3328,12 +3328,12 @@ export interface GetSimilarProfilesRequest {
3328
3328
  * <p>The pagination token from the previous <code>GetSimilarProfiles</code> API call.</p>
3329
3329
  * @public
3330
3330
  */
3331
- NextToken?: string;
3331
+ NextToken?: string | undefined;
3332
3332
  /**
3333
3333
  * <p>The maximum number of objects returned per page.</p>
3334
3334
  * @public
3335
3335
  */
3336
- MaxResults?: number;
3336
+ MaxResults?: number | undefined;
3337
3337
  /**
3338
3338
  * <p>The unique name of the domain.</p>
3339
3339
  * @public
@@ -3363,22 +3363,22 @@ export interface GetSimilarProfilesResponse {
3363
3363
  * <p>Set of <code>profileId</code>s that belong to the same matching group.</p>
3364
3364
  * @public
3365
3365
  */
3366
- ProfileIds?: string[];
3366
+ ProfileIds?: string[] | undefined;
3367
3367
  /**
3368
3368
  * <p>The string <code>matchId</code> that the similar profiles belong to.</p>
3369
3369
  * @public
3370
3370
  */
3371
- MatchId?: string;
3371
+ MatchId?: string | undefined;
3372
3372
  /**
3373
3373
  * <p>Specify the type of matching to get similar profiles for.</p>
3374
3374
  * @public
3375
3375
  */
3376
- MatchType?: MatchType;
3376
+ MatchType?: MatchType | undefined;
3377
3377
  /**
3378
3378
  * <p>The integer rule level that the profiles matched on.</p>
3379
3379
  * @public
3380
3380
  */
3381
- RuleLevel?: number;
3381
+ RuleLevel?: number | undefined;
3382
3382
  /**
3383
3383
  * <p>It only has value when the <code>MatchType</code> is <code>ML_BASED_MATCHING</code>.A
3384
3384
  * number between 0 and 1, where a higher score means higher similarity. Examining match
@@ -3390,12 +3390,12 @@ export interface GetSimilarProfilesResponse {
3390
3390
  * absolute measure of matching quality.</p>
3391
3391
  * @public
3392
3392
  */
3393
- ConfidenceScore?: number;
3393
+ ConfidenceScore?: number | undefined;
3394
3394
  /**
3395
3395
  * <p>The pagination token from the previous <code>GetSimilarProfiles</code> API call.</p>
3396
3396
  * @public
3397
3397
  */
3398
- NextToken?: string;
3398
+ NextToken?: string | undefined;
3399
3399
  }
3400
3400
  /**
3401
3401
  * @public
@@ -3421,7 +3421,7 @@ export interface WorkflowAttributes {
3421
3421
  * <p>Workflow attributes specific to <code>APPFLOW_INTEGRATION</code> workflow.</p>
3422
3422
  * @public
3423
3423
  */
3424
- AppflowIntegration?: AppflowIntegrationWorkflowAttributes;
3424
+ AppflowIntegration?: AppflowIntegrationWorkflowAttributes | undefined;
3425
3425
  }
3426
3426
  /**
3427
3427
  * <p>Generic object containing workflow execution metrics.</p>
@@ -3432,7 +3432,7 @@ export interface WorkflowMetrics {
3432
3432
  * <p>Workflow execution metrics for <code>APPFLOW_INTEGRATION</code> workflow.</p>
3433
3433
  * @public
3434
3434
  */
3435
- AppflowIntegration?: AppflowIntegrationWorkflowMetrics;
3435
+ AppflowIntegration?: AppflowIntegrationWorkflowMetrics | undefined;
3436
3436
  }
3437
3437
  /**
3438
3438
  * @public
@@ -3442,42 +3442,42 @@ export interface GetWorkflowResponse {
3442
3442
  * <p>Unique identifier for the workflow.</p>
3443
3443
  * @public
3444
3444
  */
3445
- WorkflowId?: string;
3445
+ WorkflowId?: string | undefined;
3446
3446
  /**
3447
3447
  * <p>The type of workflow. The only supported value is APPFLOW_INTEGRATION.</p>
3448
3448
  * @public
3449
3449
  */
3450
- WorkflowType?: WorkflowType;
3450
+ WorkflowType?: WorkflowType | undefined;
3451
3451
  /**
3452
3452
  * <p>Status of workflow execution.</p>
3453
3453
  * @public
3454
3454
  */
3455
- Status?: Status;
3455
+ Status?: Status | undefined;
3456
3456
  /**
3457
3457
  * <p>Workflow error messages during execution (if any).</p>
3458
3458
  * @public
3459
3459
  */
3460
- ErrorDescription?: string;
3460
+ ErrorDescription?: string | undefined;
3461
3461
  /**
3462
3462
  * <p>The timestamp that represents when workflow execution started.</p>
3463
3463
  * @public
3464
3464
  */
3465
- StartDate?: Date;
3465
+ StartDate?: Date | undefined;
3466
3466
  /**
3467
3467
  * <p>The timestamp that represents when workflow execution last updated.</p>
3468
3468
  * @public
3469
3469
  */
3470
- LastUpdatedAt?: Date;
3470
+ LastUpdatedAt?: Date | undefined;
3471
3471
  /**
3472
3472
  * <p>Attributes provided for workflow execution.</p>
3473
3473
  * @public
3474
3474
  */
3475
- Attributes?: WorkflowAttributes;
3475
+ Attributes?: WorkflowAttributes | undefined;
3476
3476
  /**
3477
3477
  * <p>Workflow specific execution metrics.</p>
3478
3478
  * @public
3479
3479
  */
3480
- Metrics?: WorkflowMetrics;
3480
+ Metrics?: WorkflowMetrics | undefined;
3481
3481
  }
3482
3482
  /**
3483
3483
  * @public
@@ -3498,12 +3498,12 @@ export interface GetWorkflowStepsRequest {
3498
3498
  * response in the next request to retrieve the next set of results.</p>
3499
3499
  * @public
3500
3500
  */
3501
- NextToken?: string;
3501
+ NextToken?: string | undefined;
3502
3502
  /**
3503
3503
  * <p>The maximum number of results to return per page.</p>
3504
3504
  * @public
3505
3505
  */
3506
- MaxResults?: number;
3506
+ MaxResults?: number | undefined;
3507
3507
  }
3508
3508
  /**
3509
3509
  * <p>List containing steps in workflow.</p>
@@ -3514,7 +3514,7 @@ export interface WorkflowStepItem {
3514
3514
  * <p>Workflow step information specific to <code>APPFLOW_INTEGRATION</code> workflow.</p>
3515
3515
  * @public
3516
3516
  */
3517
- AppflowIntegration?: AppflowIntegrationWorkflowStep;
3517
+ AppflowIntegration?: AppflowIntegrationWorkflowStep | undefined;
3518
3518
  }
3519
3519
  /**
3520
3520
  * @public
@@ -3524,22 +3524,22 @@ export interface GetWorkflowStepsResponse {
3524
3524
  * <p>Unique identifier for the workflow.</p>
3525
3525
  * @public
3526
3526
  */
3527
- WorkflowId?: string;
3527
+ WorkflowId?: string | undefined;
3528
3528
  /**
3529
3529
  * <p>The type of workflow. The only supported value is APPFLOW_INTEGRATION.</p>
3530
3530
  * @public
3531
3531
  */
3532
- WorkflowType?: WorkflowType;
3532
+ WorkflowType?: WorkflowType | undefined;
3533
3533
  /**
3534
3534
  * <p>List containing workflow step details.</p>
3535
3535
  * @public
3536
3536
  */
3537
- Items?: WorkflowStepItem[];
3537
+ Items?: WorkflowStepItem[] | undefined;
3538
3538
  /**
3539
3539
  * <p>If there are additional results, this is the token for the next set of results.</p>
3540
3540
  * @public
3541
3541
  */
3542
- NextToken?: string;
3542
+ NextToken?: string | undefined;
3543
3543
  }
3544
3544
  /**
3545
3545
  * @public
@@ -3554,17 +3554,17 @@ export interface ListAccountIntegrationsRequest {
3554
3554
  * <p>The pagination token from the previous ListAccountIntegrations API call.</p>
3555
3555
  * @public
3556
3556
  */
3557
- NextToken?: string;
3557
+ NextToken?: string | undefined;
3558
3558
  /**
3559
3559
  * <p>The maximum number of objects returned per page.</p>
3560
3560
  * @public
3561
3561
  */
3562
- MaxResults?: number;
3562
+ MaxResults?: number | undefined;
3563
3563
  /**
3564
3564
  * <p>Boolean to indicate if hidden integration should be returned. Defaults to <code>False</code>.</p>
3565
3565
  * @public
3566
3566
  */
3567
- IncludeHidden?: boolean;
3567
+ IncludeHidden?: boolean | undefined;
3568
3568
  }
3569
3569
  /**
3570
3570
  * <p>An integration in list of integrations.</p>
@@ -3585,7 +3585,7 @@ export interface ListIntegrationItem {
3585
3585
  * <p>The name of the profile object type.</p>
3586
3586
  * @public
3587
3587
  */
3588
- ObjectTypeName?: string;
3588
+ ObjectTypeName?: string | undefined;
3589
3589
  /**
3590
3590
  * <p>The timestamp of when the domain was created.</p>
3591
3591
  * @public
@@ -3600,32 +3600,32 @@ export interface ListIntegrationItem {
3600
3600
  * <p>The tags used to organize, track, or control access for this resource.</p>
3601
3601
  * @public
3602
3602
  */
3603
- Tags?: Record<string, string>;
3603
+ Tags?: Record<string, string> | undefined;
3604
3604
  /**
3605
3605
  * <p>A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an <code>ObjectTypeName</code> (template) used to ingest the event.
3606
3606
  * It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>,
3607
3607
  * <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
3608
3608
  * @public
3609
3609
  */
3610
- ObjectTypeNames?: Record<string, string>;
3610
+ ObjectTypeNames?: Record<string, string> | undefined;
3611
3611
  /**
3612
3612
  * <p>Unique identifier for the workflow.</p>
3613
3613
  * @public
3614
3614
  */
3615
- WorkflowId?: string;
3615
+ WorkflowId?: string | undefined;
3616
3616
  /**
3617
3617
  * <p>Boolean that shows if the Flow that's associated with the Integration is created in
3618
3618
  * Amazon Appflow, or with ObjectTypeName equals _unstructured via API/CLI in
3619
3619
  * flowDefinition.</p>
3620
3620
  * @public
3621
3621
  */
3622
- IsUnstructured?: boolean;
3622
+ IsUnstructured?: boolean | undefined;
3623
3623
  /**
3624
3624
  * <p>The Amazon Resource Name (ARN) of the IAM role. The Integration uses this role to make
3625
3625
  * Customer Profiles requests on your behalf.</p>
3626
3626
  * @public
3627
3627
  */
3628
- RoleArn?: string;
3628
+ RoleArn?: string | undefined;
3629
3629
  }
3630
3630
  /**
3631
3631
  * @public
@@ -3635,12 +3635,12 @@ export interface ListAccountIntegrationsResponse {
3635
3635
  * <p>The list of ListAccountIntegration instances.</p>
3636
3636
  * @public
3637
3637
  */
3638
- Items?: ListIntegrationItem[];
3638
+ Items?: ListIntegrationItem[] | undefined;
3639
3639
  /**
3640
3640
  * <p>The pagination token from the previous ListAccountIntegrations API call.</p>
3641
3641
  * @public
3642
3642
  */
3643
- NextToken?: string;
3643
+ NextToken?: string | undefined;
3644
3644
  }
3645
3645
  /**
3646
3646
  * @public
@@ -3656,12 +3656,12 @@ export interface ListCalculatedAttributeDefinitionsRequest {
3656
3656
  * ListCalculatedAttributeDefinitions.</p>
3657
3657
  * @public
3658
3658
  */
3659
- NextToken?: string;
3659
+ NextToken?: string | undefined;
3660
3660
  /**
3661
3661
  * <p>The maximum number of calculated attribute definitions returned per page.</p>
3662
3662
  * @public
3663
3663
  */
3664
- MaxResults?: number;
3664
+ MaxResults?: number | undefined;
3665
3665
  }
3666
3666
  /**
3667
3667
  * @public
@@ -3671,13 +3671,13 @@ export interface ListCalculatedAttributeDefinitionsResponse {
3671
3671
  * <p>The list of calculated attribute definitions.</p>
3672
3672
  * @public
3673
3673
  */
3674
- Items?: ListCalculatedAttributeDefinitionItem[];
3674
+ Items?: ListCalculatedAttributeDefinitionItem[] | undefined;
3675
3675
  /**
3676
3676
  * <p>The pagination token from the previous call to
3677
3677
  * ListCalculatedAttributeDefinitions.</p>
3678
3678
  * @public
3679
3679
  */
3680
- NextToken?: string;
3680
+ NextToken?: string | undefined;
3681
3681
  }
3682
3682
  /**
3683
3683
  * @public
@@ -3688,12 +3688,12 @@ export interface ListCalculatedAttributesForProfileRequest {
3688
3688
  * ListCalculatedAttributesForProfile.</p>
3689
3689
  * @public
3690
3690
  */
3691
- NextToken?: string;
3691
+ NextToken?: string | undefined;
3692
3692
  /**
3693
3693
  * <p>The maximum number of calculated attributes returned per page.</p>
3694
3694
  * @public
3695
3695
  */
3696
- MaxResults?: number;
3696
+ MaxResults?: number | undefined;
3697
3697
  /**
3698
3698
  * <p>The unique name of the domain.</p>
3699
3699
  * @public
@@ -3713,13 +3713,13 @@ export interface ListCalculatedAttributesForProfileResponse {
3713
3713
  * <p>The list of calculated attributes.</p>
3714
3714
  * @public
3715
3715
  */
3716
- Items?: ListCalculatedAttributeForProfileItem[];
3716
+ Items?: ListCalculatedAttributeForProfileItem[] | undefined;
3717
3717
  /**
3718
3718
  * <p>The pagination token from the previous call to
3719
3719
  * ListCalculatedAttributesForProfile.</p>
3720
3720
  * @public
3721
3721
  */
3722
- NextToken?: string;
3722
+ NextToken?: string | undefined;
3723
3723
  }
3724
3724
  /**
3725
3725
  * @public
@@ -3729,12 +3729,12 @@ export interface ListDomainsRequest {
3729
3729
  * <p>The pagination token from the previous ListDomain API call.</p>
3730
3730
  * @public
3731
3731
  */
3732
- NextToken?: string;
3732
+ NextToken?: string | undefined;
3733
3733
  /**
3734
3734
  * <p>The maximum number of objects returned per page.</p>
3735
3735
  * @public
3736
3736
  */
3737
- MaxResults?: number;
3737
+ MaxResults?: number | undefined;
3738
3738
  }
3739
3739
  /**
3740
3740
  * <p>An object in a list that represents a domain.</p>
@@ -3760,7 +3760,7 @@ export interface ListDomainItem {
3760
3760
  * <p>The tags used to organize, track, or control access for this resource.</p>
3761
3761
  * @public
3762
3762
  */
3763
- Tags?: Record<string, string>;
3763
+ Tags?: Record<string, string> | undefined;
3764
3764
  }
3765
3765
  /**
3766
3766
  * @public
@@ -3770,12 +3770,12 @@ export interface ListDomainsResponse {
3770
3770
  * <p>The list of ListDomains instances.</p>
3771
3771
  * @public
3772
3772
  */
3773
- Items?: ListDomainItem[];
3773
+ Items?: ListDomainItem[] | undefined;
3774
3774
  /**
3775
3775
  * <p>The pagination token from the previous ListDomains API call.</p>
3776
3776
  * @public
3777
3777
  */
3778
- NextToken?: string;
3778
+ NextToken?: string | undefined;
3779
3779
  }
3780
3780
  /**
3781
3781
  * @public
@@ -3790,12 +3790,12 @@ export interface ListEventStreamsRequest {
3790
3790
  * <p>Identifies the next page of results to return.</p>
3791
3791
  * @public
3792
3792
  */
3793
- NextToken?: string;
3793
+ NextToken?: string | undefined;
3794
3794
  /**
3795
3795
  * <p>The maximum number of objects returned per page.</p>
3796
3796
  * @public
3797
3797
  */
3798
- MaxResults?: number;
3798
+ MaxResults?: number | undefined;
3799
3799
  }
3800
3800
  /**
3801
3801
  * <p>Summary information about the Kinesis data stream</p>
@@ -3817,7 +3817,7 @@ export interface DestinationSummary {
3817
3817
  * <p>The timestamp when the status last changed to <code>UNHEALHY</code>.</p>
3818
3818
  * @public
3819
3819
  */
3820
- UnhealthySince?: Date;
3820
+ UnhealthySince?: Date | undefined;
3821
3821
  }
3822
3822
  /**
3823
3823
  * <p>An instance of EventStream in a list of EventStreams.</p>
@@ -3848,17 +3848,17 @@ export interface EventStreamSummary {
3848
3848
  * <p>The timestamp when the <code>State</code> changed to <code>STOPPED</code>.</p>
3849
3849
  * @public
3850
3850
  */
3851
- StoppedSince?: Date;
3851
+ StoppedSince?: Date | undefined;
3852
3852
  /**
3853
3853
  * <p>Summary information about the Kinesis data stream.</p>
3854
3854
  * @public
3855
3855
  */
3856
- DestinationSummary?: DestinationSummary;
3856
+ DestinationSummary?: DestinationSummary | undefined;
3857
3857
  /**
3858
3858
  * <p>The tags used to organize, track, or control access for this resource.</p>
3859
3859
  * @public
3860
3860
  */
3861
- Tags?: Record<string, string>;
3861
+ Tags?: Record<string, string> | undefined;
3862
3862
  }
3863
3863
  /**
3864
3864
  * @public
@@ -3868,12 +3868,12 @@ export interface ListEventStreamsResponse {
3868
3868
  * <p>Contains summary information about an EventStream.</p>
3869
3869
  * @public
3870
3870
  */
3871
- Items?: EventStreamSummary[];
3871
+ Items?: EventStreamSummary[] | undefined;
3872
3872
  /**
3873
3873
  * <p>Identifies the next page of results to return.</p>
3874
3874
  * @public
3875
3875
  */
3876
- NextToken?: string;
3876
+ NextToken?: string | undefined;
3877
3877
  }
3878
3878
  /**
3879
3879
  * @public
@@ -3889,12 +3889,12 @@ export interface ListIdentityResolutionJobsRequest {
3889
3889
  * response in the next request to retrieve the next set of results.</p>
3890
3890
  * @public
3891
3891
  */
3892
- NextToken?: string;
3892
+ NextToken?: string | undefined;
3893
3893
  /**
3894
3894
  * <p>The maximum number of results to return per page.</p>
3895
3895
  * @public
3896
3896
  */
3897
- MaxResults?: number;
3897
+ MaxResults?: number | undefined;
3898
3898
  }
3899
3899
  /**
3900
3900
  * <p>Information about the Identity Resolution Job.</p>
@@ -3905,12 +3905,12 @@ export interface IdentityResolutionJob {
3905
3905
  * <p>The unique name of the domain.</p>
3906
3906
  * @public
3907
3907
  */
3908
- DomainName?: string;
3908
+ DomainName?: string | undefined;
3909
3909
  /**
3910
3910
  * <p>The unique identifier of the Identity Resolution Job.</p>
3911
3911
  * @public
3912
3912
  */
3913
- JobId?: string;
3913
+ JobId?: string | undefined;
3914
3914
  /**
3915
3915
  * <p>The status of the Identity Resolution Job.</p>
3916
3916
  * <ul>
@@ -3950,32 +3950,32 @@ export interface IdentityResolutionJob {
3950
3950
  * </ul>
3951
3951
  * @public
3952
3952
  */
3953
- Status?: IdentityResolutionJobStatus;
3953
+ Status?: IdentityResolutionJobStatus | undefined;
3954
3954
  /**
3955
3955
  * <p>The timestamp of when the job was started or will be started.</p>
3956
3956
  * @public
3957
3957
  */
3958
- JobStartTime?: Date;
3958
+ JobStartTime?: Date | undefined;
3959
3959
  /**
3960
3960
  * <p>The timestamp of when the job was completed.</p>
3961
3961
  * @public
3962
3962
  */
3963
- JobEndTime?: Date;
3963
+ JobEndTime?: Date | undefined;
3964
3964
  /**
3965
3965
  * <p>Statistics about an Identity Resolution Job.</p>
3966
3966
  * @public
3967
3967
  */
3968
- JobStats?: JobStats;
3968
+ JobStats?: JobStats | undefined;
3969
3969
  /**
3970
3970
  * <p>The S3 location where the Identity Resolution Job writes result files.</p>
3971
3971
  * @public
3972
3972
  */
3973
- ExportingLocation?: ExportingLocation;
3973
+ ExportingLocation?: ExportingLocation | undefined;
3974
3974
  /**
3975
3975
  * <p>The error messages that are generated when the Identity Resolution Job runs.</p>
3976
3976
  * @public
3977
3977
  */
3978
- Message?: string;
3978
+ Message?: string | undefined;
3979
3979
  }
3980
3980
  /**
3981
3981
  * @public
@@ -3985,12 +3985,12 @@ export interface ListIdentityResolutionJobsResponse {
3985
3985
  * <p>A list of Identity Resolution Jobs.</p>
3986
3986
  * @public
3987
3987
  */
3988
- IdentityResolutionJobsList?: IdentityResolutionJob[];
3988
+ IdentityResolutionJobsList?: IdentityResolutionJob[] | undefined;
3989
3989
  /**
3990
3990
  * <p>If there are additional results, this is the token for the next set of results.</p>
3991
3991
  * @public
3992
3992
  */
3993
- NextToken?: string;
3993
+ NextToken?: string | undefined;
3994
3994
  }
3995
3995
  /**
3996
3996
  * @public
@@ -4005,17 +4005,17 @@ export interface ListIntegrationsRequest {
4005
4005
  * <p>The pagination token from the previous ListIntegrations API call.</p>
4006
4006
  * @public
4007
4007
  */
4008
- NextToken?: string;
4008
+ NextToken?: string | undefined;
4009
4009
  /**
4010
4010
  * <p>The maximum number of objects returned per page.</p>
4011
4011
  * @public
4012
4012
  */
4013
- MaxResults?: number;
4013
+ MaxResults?: number | undefined;
4014
4014
  /**
4015
4015
  * <p>Boolean to indicate if hidden integration should be returned. Defaults to <code>False</code>.</p>
4016
4016
  * @public
4017
4017
  */
4018
- IncludeHidden?: boolean;
4018
+ IncludeHidden?: boolean | undefined;
4019
4019
  }
4020
4020
  /**
4021
4021
  * @public
@@ -4025,12 +4025,12 @@ export interface ListIntegrationsResponse {
4025
4025
  * <p>The list of ListIntegrations instances.</p>
4026
4026
  * @public
4027
4027
  */
4028
- Items?: ListIntegrationItem[];
4028
+ Items?: ListIntegrationItem[] | undefined;
4029
4029
  /**
4030
4030
  * <p>The pagination token from the previous ListIntegrations API call.</p>
4031
4031
  * @public
4032
4032
  */
4033
- NextToken?: string;
4033
+ NextToken?: string | undefined;
4034
4034
  }
4035
4035
  /**
4036
4036
  * <p>The filter applied to <code>ListProfileObjects</code> response to include profile
@@ -4061,12 +4061,12 @@ export interface ListProfileObjectsRequest {
4061
4061
  * <p>The pagination token from the previous call to ListProfileObjects.</p>
4062
4062
  * @public
4063
4063
  */
4064
- NextToken?: string;
4064
+ NextToken?: string | undefined;
4065
4065
  /**
4066
4066
  * <p>The maximum number of objects returned per page.</p>
4067
4067
  * @public
4068
4068
  */
4069
- MaxResults?: number;
4069
+ MaxResults?: number | undefined;
4070
4070
  /**
4071
4071
  * <p>The unique name of the domain.</p>
4072
4072
  * @public
@@ -4087,7 +4087,7 @@ export interface ListProfileObjectsRequest {
4087
4087
  * values.</p>
4088
4088
  * @public
4089
4089
  */
4090
- ObjectFilter?: ObjectFilter;
4090
+ ObjectFilter?: ObjectFilter | undefined;
4091
4091
  }
4092
4092
  /**
4093
4093
  * <p>A ProfileObject in a list of ProfileObjects.</p>
@@ -4099,17 +4099,17 @@ export interface ListProfileObjectsItem {
4099
4099
  * "Salesforce-Account."</p>
4100
4100
  * @public
4101
4101
  */
4102
- ObjectTypeName?: string;
4102
+ ObjectTypeName?: string | undefined;
4103
4103
  /**
4104
4104
  * <p>The unique identifier of the ProfileObject generated by the service.</p>
4105
4105
  * @public
4106
4106
  */
4107
- ProfileObjectUniqueKey?: string;
4107
+ ProfileObjectUniqueKey?: string | undefined;
4108
4108
  /**
4109
4109
  * <p>A JSON representation of a ProfileObject that belongs to a profile.</p>
4110
4110
  * @public
4111
4111
  */
4112
- Object?: string;
4112
+ Object?: string | undefined;
4113
4113
  }
4114
4114
  /**
4115
4115
  * @public
@@ -4119,12 +4119,12 @@ export interface ListProfileObjectsResponse {
4119
4119
  * <p>The list of ListProfileObject instances.</p>
4120
4120
  * @public
4121
4121
  */
4122
- Items?: ListProfileObjectsItem[];
4122
+ Items?: ListProfileObjectsItem[] | undefined;
4123
4123
  /**
4124
4124
  * <p>The pagination token from the previous call to ListProfileObjects.</p>
4125
4125
  * @public
4126
4126
  */
4127
- NextToken?: string;
4127
+ NextToken?: string | undefined;
4128
4128
  }
4129
4129
  /**
4130
4130
  * @public
@@ -4139,12 +4139,12 @@ export interface ListProfileObjectTypesRequest {
4139
4139
  * <p>Identifies the next page of results to return.</p>
4140
4140
  * @public
4141
4141
  */
4142
- NextToken?: string;
4142
+ NextToken?: string | undefined;
4143
4143
  /**
4144
4144
  * <p>The maximum number of objects returned per page.</p>
4145
4145
  * @public
4146
4146
  */
4147
- MaxResults?: number;
4147
+ MaxResults?: number | undefined;
4148
4148
  }
4149
4149
  /**
4150
4150
  * <p>A ProfileObjectType instance.</p>
@@ -4165,27 +4165,27 @@ export interface ListProfileObjectTypeItem {
4165
4165
  * <p>The timestamp of when the domain was created.</p>
4166
4166
  * @public
4167
4167
  */
4168
- CreatedAt?: Date;
4168
+ CreatedAt?: Date | undefined;
4169
4169
  /**
4170
4170
  * <p>The timestamp of when the domain was most recently edited.</p>
4171
4171
  * @public
4172
4172
  */
4173
- LastUpdatedAt?: Date;
4173
+ LastUpdatedAt?: Date | undefined;
4174
4174
  /**
4175
4175
  * <p>The amount of profile object max count assigned to the object type.</p>
4176
4176
  * @public
4177
4177
  */
4178
- MaxProfileObjectCount?: number;
4178
+ MaxProfileObjectCount?: number | undefined;
4179
4179
  /**
4180
4180
  * <p>The amount of provisioned profile object max count available.</p>
4181
4181
  * @public
4182
4182
  */
4183
- MaxAvailableProfileObjectCount?: number;
4183
+ MaxAvailableProfileObjectCount?: number | undefined;
4184
4184
  /**
4185
4185
  * <p>The tags used to organize, track, or control access for this resource.</p>
4186
4186
  * @public
4187
4187
  */
4188
- Tags?: Record<string, string>;
4188
+ Tags?: Record<string, string> | undefined;
4189
4189
  }
4190
4190
  /**
4191
4191
  * @public
@@ -4195,12 +4195,12 @@ export interface ListProfileObjectTypesResponse {
4195
4195
  * <p>The list of ListProfileObjectTypes instances.</p>
4196
4196
  * @public
4197
4197
  */
4198
- Items?: ListProfileObjectTypeItem[];
4198
+ Items?: ListProfileObjectTypeItem[] | undefined;
4199
4199
  /**
4200
4200
  * <p>Identifies the next page of results to return.</p>
4201
4201
  * @public
4202
4202
  */
4203
- NextToken?: string;
4203
+ NextToken?: string | undefined;
4204
4204
  }
4205
4205
  /**
4206
4206
  * @public
@@ -4210,12 +4210,12 @@ export interface ListProfileObjectTypeTemplatesRequest {
4210
4210
  * <p>The pagination token from the previous ListObjectTypeTemplates API call.</p>
4211
4211
  * @public
4212
4212
  */
4213
- NextToken?: string;
4213
+ NextToken?: string | undefined;
4214
4214
  /**
4215
4215
  * <p>The maximum number of objects returned per page.</p>
4216
4216
  * @public
4217
4217
  */
4218
- MaxResults?: number;
4218
+ MaxResults?: number | undefined;
4219
4219
  }
4220
4220
  /**
4221
4221
  * <p>A ProfileObjectTypeTemplate in a list of ProfileObjectTypeTemplates.</p>
@@ -4226,17 +4226,17 @@ export interface ListProfileObjectTypeTemplateItem {
4226
4226
  * <p>A unique identifier for the object template.</p>
4227
4227
  * @public
4228
4228
  */
4229
- TemplateId?: string;
4229
+ TemplateId?: string | undefined;
4230
4230
  /**
4231
4231
  * <p>The name of the source of the object template.</p>
4232
4232
  * @public
4233
4233
  */
4234
- SourceName?: string;
4234
+ SourceName?: string | undefined;
4235
4235
  /**
4236
4236
  * <p>The source of the object template.</p>
4237
4237
  * @public
4238
4238
  */
4239
- SourceObject?: string;
4239
+ SourceObject?: string | undefined;
4240
4240
  }
4241
4241
  /**
4242
4242
  * @public
@@ -4246,12 +4246,12 @@ export interface ListProfileObjectTypeTemplatesResponse {
4246
4246
  * <p>The list of ListProfileObjectType template instances.</p>
4247
4247
  * @public
4248
4248
  */
4249
- Items?: ListProfileObjectTypeTemplateItem[];
4249
+ Items?: ListProfileObjectTypeTemplateItem[] | undefined;
4250
4250
  /**
4251
4251
  * <p>The pagination token from the previous ListObjectTypeTemplates API call. </p>
4252
4252
  * @public
4253
4253
  */
4254
- NextToken?: string;
4254
+ NextToken?: string | undefined;
4255
4255
  }
4256
4256
  /**
4257
4257
  * @public
@@ -4262,12 +4262,12 @@ export interface ListRuleBasedMatchesRequest {
4262
4262
  * call.</p>
4263
4263
  * @public
4264
4264
  */
4265
- NextToken?: string;
4265
+ NextToken?: string | undefined;
4266
4266
  /**
4267
4267
  * <p>The maximum number of <code>MatchIds</code> returned per page.</p>
4268
4268
  * @public
4269
4269
  */
4270
- MaxResults?: number;
4270
+ MaxResults?: number | undefined;
4271
4271
  /**
4272
4272
  * <p>The unique name of the domain.</p>
4273
4273
  * @public
@@ -4282,13 +4282,13 @@ export interface ListRuleBasedMatchesResponse {
4282
4282
  * <p>The list of <code>MatchIds</code> for the given domain.</p>
4283
4283
  * @public
4284
4284
  */
4285
- MatchIds?: string[];
4285
+ MatchIds?: string[] | undefined;
4286
4286
  /**
4287
4287
  * <p>The pagination token from the previous <code>ListRuleBasedMatches</code> API
4288
4288
  * call.</p>
4289
4289
  * @public
4290
4290
  */
4291
- NextToken?: string;
4291
+ NextToken?: string | undefined;
4292
4292
  }
4293
4293
  /**
4294
4294
  * @public
@@ -4308,7 +4308,7 @@ export interface ListTagsForResourceResponse {
4308
4308
  * <p>The tags used to organize, track, or control access for this resource.</p>
4309
4309
  * @public
4310
4310
  */
4311
- tags?: Record<string, string>;
4311
+ tags?: Record<string, string> | undefined;
4312
4312
  }
4313
4313
  /**
4314
4314
  * @public
@@ -4323,33 +4323,33 @@ export interface ListWorkflowsRequest {
4323
4323
  * <p>The type of workflow. The only supported value is APPFLOW_INTEGRATION.</p>
4324
4324
  * @public
4325
4325
  */
4326
- WorkflowType?: WorkflowType;
4326
+ WorkflowType?: WorkflowType | undefined;
4327
4327
  /**
4328
4328
  * <p>Status of workflow execution.</p>
4329
4329
  * @public
4330
4330
  */
4331
- Status?: Status;
4331
+ Status?: Status | undefined;
4332
4332
  /**
4333
4333
  * <p>Retrieve workflows started after timestamp.</p>
4334
4334
  * @public
4335
4335
  */
4336
- QueryStartDate?: Date;
4336
+ QueryStartDate?: Date | undefined;
4337
4337
  /**
4338
4338
  * <p>Retrieve workflows ended after timestamp.</p>
4339
4339
  * @public
4340
4340
  */
4341
- QueryEndDate?: Date;
4341
+ QueryEndDate?: Date | undefined;
4342
4342
  /**
4343
4343
  * <p>The token for the next set of results. Use the value returned in the previous
4344
4344
  * response in the next request to retrieve the next set of results.</p>
4345
4345
  * @public
4346
4346
  */
4347
- NextToken?: string;
4347
+ NextToken?: string | undefined;
4348
4348
  /**
4349
4349
  * <p>The maximum number of results to return per page.</p>
4350
4350
  * @public
4351
4351
  */
4352
- MaxResults?: number;
4352
+ MaxResults?: number | undefined;
4353
4353
  }
4354
4354
  /**
4355
4355
  * <p>A workflow in list of workflows.</p>
@@ -4395,12 +4395,12 @@ export interface ListWorkflowsResponse {
4395
4395
  * <p>List containing workflow details.</p>
4396
4396
  * @public
4397
4397
  */
4398
- Items?: ListWorkflowsItem[];
4398
+ Items?: ListWorkflowsItem[] | undefined;
4399
4399
  /**
4400
4400
  * <p>If there are additional results, this is the token for the next set of results.</p>
4401
4401
  * @public
4402
4402
  */
4403
- NextToken?: string;
4403
+ NextToken?: string | undefined;
4404
4404
  }
4405
4405
  /**
4406
4406
  * <p>A duplicate customer profile that is to be merged into a main profile. </p>
@@ -4411,107 +4411,107 @@ export interface FieldSourceProfileIds {
4411
4411
  * <p>A unique identifier for the account number field to be merged. </p>
4412
4412
  * @public
4413
4413
  */
4414
- AccountNumber?: string;
4414
+ AccountNumber?: string | undefined;
4415
4415
  /**
4416
4416
  * <p>A unique identifier for the additional information field to be merged.</p>
4417
4417
  * @public
4418
4418
  */
4419
- AdditionalInformation?: string;
4419
+ AdditionalInformation?: string | undefined;
4420
4420
  /**
4421
4421
  * <p>A unique identifier for the party type field to be merged.</p>
4422
4422
  * @public
4423
4423
  */
4424
- PartyType?: string;
4424
+ PartyType?: string | undefined;
4425
4425
  /**
4426
4426
  * <p>A unique identifier for the business name field to be merged.</p>
4427
4427
  * @public
4428
4428
  */
4429
- BusinessName?: string;
4429
+ BusinessName?: string | undefined;
4430
4430
  /**
4431
4431
  * <p>A unique identifier for the first name field to be merged.</p>
4432
4432
  * @public
4433
4433
  */
4434
- FirstName?: string;
4434
+ FirstName?: string | undefined;
4435
4435
  /**
4436
4436
  * <p>A unique identifier for the middle name field to be merged.</p>
4437
4437
  * @public
4438
4438
  */
4439
- MiddleName?: string;
4439
+ MiddleName?: string | undefined;
4440
4440
  /**
4441
4441
  * <p>A unique identifier for the last name field to be merged.</p>
4442
4442
  * @public
4443
4443
  */
4444
- LastName?: string;
4444
+ LastName?: string | undefined;
4445
4445
  /**
4446
4446
  * <p>A unique identifier for the birthdate field to be merged.</p>
4447
4447
  * @public
4448
4448
  */
4449
- BirthDate?: string;
4449
+ BirthDate?: string | undefined;
4450
4450
  /**
4451
4451
  * <p>A unique identifier for the gender field to be merged.</p>
4452
4452
  * @public
4453
4453
  */
4454
- Gender?: string;
4454
+ Gender?: string | undefined;
4455
4455
  /**
4456
4456
  * <p>A unique identifier for the phone number field to be merged.</p>
4457
4457
  * @public
4458
4458
  */
4459
- PhoneNumber?: string;
4459
+ PhoneNumber?: string | undefined;
4460
4460
  /**
4461
4461
  * <p>A unique identifier for the mobile phone number field to be merged.</p>
4462
4462
  * @public
4463
4463
  */
4464
- MobilePhoneNumber?: string;
4464
+ MobilePhoneNumber?: string | undefined;
4465
4465
  /**
4466
4466
  * <p>A unique identifier for the home phone number field to be merged.</p>
4467
4467
  * @public
4468
4468
  */
4469
- HomePhoneNumber?: string;
4469
+ HomePhoneNumber?: string | undefined;
4470
4470
  /**
4471
4471
  * <p>A unique identifier for the business phone number field to be merged.</p>
4472
4472
  * @public
4473
4473
  */
4474
- BusinessPhoneNumber?: string;
4474
+ BusinessPhoneNumber?: string | undefined;
4475
4475
  /**
4476
4476
  * <p>A unique identifier for the email address field to be merged.</p>
4477
4477
  * @public
4478
4478
  */
4479
- EmailAddress?: string;
4479
+ EmailAddress?: string | undefined;
4480
4480
  /**
4481
4481
  * <p>A unique identifier for the personal email address field to be merged.</p>
4482
4482
  * @public
4483
4483
  */
4484
- PersonalEmailAddress?: string;
4484
+ PersonalEmailAddress?: string | undefined;
4485
4485
  /**
4486
4486
  * <p>A unique identifier for the party type field to be merged.</p>
4487
4487
  * @public
4488
4488
  */
4489
- BusinessEmailAddress?: string;
4489
+ BusinessEmailAddress?: string | undefined;
4490
4490
  /**
4491
4491
  * <p>A unique identifier for the party type field to be merged.</p>
4492
4492
  * @public
4493
4493
  */
4494
- Address?: string;
4494
+ Address?: string | undefined;
4495
4495
  /**
4496
4496
  * <p>A unique identifier for the shipping address field to be merged.</p>
4497
4497
  * @public
4498
4498
  */
4499
- ShippingAddress?: string;
4499
+ ShippingAddress?: string | undefined;
4500
4500
  /**
4501
4501
  * <p>A unique identifier for the mailing address field to be merged.</p>
4502
4502
  * @public
4503
4503
  */
4504
- MailingAddress?: string;
4504
+ MailingAddress?: string | undefined;
4505
4505
  /**
4506
4506
  * <p>A unique identifier for the billing type field to be merged.</p>
4507
4507
  * @public
4508
4508
  */
4509
- BillingAddress?: string;
4509
+ BillingAddress?: string | undefined;
4510
4510
  /**
4511
4511
  * <p>A unique identifier for the attributes field to be merged.</p>
4512
4512
  * @public
4513
4513
  */
4514
- Attributes?: Record<string, string>;
4514
+ Attributes?: Record<string, string> | undefined;
4515
4515
  }
4516
4516
  /**
4517
4517
  * @public
@@ -4538,7 +4538,7 @@ export interface MergeProfilesRequest {
4538
4538
  * MainProfile. This would be the identifier of the EmailAddress field in Profile1. </p>
4539
4539
  * @public
4540
4540
  */
4541
- FieldSourceProfileIds?: FieldSourceProfileIds;
4541
+ FieldSourceProfileIds?: FieldSourceProfileIds | undefined;
4542
4542
  }
4543
4543
  /**
4544
4544
  * @public
@@ -4548,7 +4548,7 @@ export interface MergeProfilesResponse {
4548
4548
  * <p>A message that indicates the merge request is complete.</p>
4549
4549
  * @public
4550
4550
  */
4551
- Message?: string;
4551
+ Message?: string | undefined;
4552
4552
  }
4553
4553
  /**
4554
4554
  * @public
@@ -4563,36 +4563,36 @@ export interface PutIntegrationRequest {
4563
4563
  * <p>The URI of the S3 bucket or any other type of data source.</p>
4564
4564
  * @public
4565
4565
  */
4566
- Uri?: string;
4566
+ Uri?: string | undefined;
4567
4567
  /**
4568
4568
  * <p>The name of the profile object type.</p>
4569
4569
  * @public
4570
4570
  */
4571
- ObjectTypeName?: string;
4571
+ ObjectTypeName?: string | undefined;
4572
4572
  /**
4573
4573
  * <p>The tags used to organize, track, or control access for this resource.</p>
4574
4574
  * @public
4575
4575
  */
4576
- Tags?: Record<string, string>;
4576
+ Tags?: Record<string, string> | undefined;
4577
4577
  /**
4578
4578
  * <p>The configuration that controls how Customer Profiles retrieves data from the
4579
4579
  * source.</p>
4580
4580
  * @public
4581
4581
  */
4582
- FlowDefinition?: FlowDefinition;
4582
+ FlowDefinition?: FlowDefinition | undefined;
4583
4583
  /**
4584
4584
  * <p>A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an <code>ObjectTypeName</code> (template) used to ingest the event.
4585
4585
  * It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>,
4586
4586
  * <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
4587
4587
  * @public
4588
4588
  */
4589
- ObjectTypeNames?: Record<string, string>;
4589
+ ObjectTypeNames?: Record<string, string> | undefined;
4590
4590
  /**
4591
4591
  * <p>The Amazon Resource Name (ARN) of the IAM role. The Integration uses this role to make
4592
4592
  * Customer Profiles requests on your behalf.</p>
4593
4593
  * @public
4594
4594
  */
4595
- RoleArn?: string;
4595
+ RoleArn?: string | undefined;
4596
4596
  }
4597
4597
  /**
4598
4598
  * @public
@@ -4612,7 +4612,7 @@ export interface PutIntegrationResponse {
4612
4612
  * <p>The name of the profile object type.</p>
4613
4613
  * @public
4614
4614
  */
4615
- ObjectTypeName?: string;
4615
+ ObjectTypeName?: string | undefined;
4616
4616
  /**
4617
4617
  * <p>The timestamp of when the domain was created.</p>
4618
4618
  * @public
@@ -4627,32 +4627,32 @@ export interface PutIntegrationResponse {
4627
4627
  * <p>The tags used to organize, track, or control access for this resource.</p>
4628
4628
  * @public
4629
4629
  */
4630
- Tags?: Record<string, string>;
4630
+ Tags?: Record<string, string> | undefined;
4631
4631
  /**
4632
4632
  * <p>A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an <code>ObjectTypeName</code> (template) used to ingest the event.
4633
4633
  * It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>,
4634
4634
  * <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
4635
4635
  * @public
4636
4636
  */
4637
- ObjectTypeNames?: Record<string, string>;
4637
+ ObjectTypeNames?: Record<string, string> | undefined;
4638
4638
  /**
4639
4639
  * <p>Unique identifier for the workflow.</p>
4640
4640
  * @public
4641
4641
  */
4642
- WorkflowId?: string;
4642
+ WorkflowId?: string | undefined;
4643
4643
  /**
4644
4644
  * <p>Boolean that shows if the Flow that's associated with the Integration is created in
4645
4645
  * Amazon Appflow, or with ObjectTypeName equals _unstructured via API/CLI in
4646
4646
  * flowDefinition.</p>
4647
4647
  * @public
4648
4648
  */
4649
- IsUnstructured?: boolean;
4649
+ IsUnstructured?: boolean | undefined;
4650
4650
  /**
4651
4651
  * <p>The Amazon Resource Name (ARN) of the IAM role. The Integration uses this role to make
4652
4652
  * Customer Profiles requests on your behalf.</p>
4653
4653
  * @public
4654
4654
  */
4655
- RoleArn?: string;
4655
+ RoleArn?: string | undefined;
4656
4656
  }
4657
4657
  /**
4658
4658
  * @public
@@ -4682,7 +4682,7 @@ export interface PutProfileObjectResponse {
4682
4682
  * <p>The unique identifier of the profile object generated by the service.</p>
4683
4683
  * @public
4684
4684
  */
4685
- ProfileObjectUniqueKey?: string;
4685
+ ProfileObjectUniqueKey?: string | undefined;
4686
4686
  }
4687
4687
  /**
4688
4688
  * @public
@@ -4713,18 +4713,18 @@ export interface PutProfileObjectTypeRequest {
4713
4713
  * <code>BadRequestException</code>.</p>
4714
4714
  * @public
4715
4715
  */
4716
- TemplateId?: string;
4716
+ TemplateId?: string | undefined;
4717
4717
  /**
4718
4718
  * <p>The number of days until the data in the object expires.</p>
4719
4719
  * @public
4720
4720
  */
4721
- ExpirationDays?: number;
4721
+ ExpirationDays?: number | undefined;
4722
4722
  /**
4723
4723
  * <p>The customer-provided key to encrypt the profile object that will be created in this
4724
4724
  * profile object type.</p>
4725
4725
  * @public
4726
4726
  */
4727
- EncryptionKey?: string;
4727
+ EncryptionKey?: string | undefined;
4728
4728
  /**
4729
4729
  * <p>Indicates whether a profile should be created when data is received if one doesn’t exist
4730
4730
  * for an object of this type. The default is <code>FALSE</code>. If the AllowProfileCreation
@@ -4733,33 +4733,33 @@ export interface PutProfileObjectTypeRequest {
4733
4733
  * is found, then the service creates a new standard profile.</p>
4734
4734
  * @public
4735
4735
  */
4736
- AllowProfileCreation?: boolean;
4736
+ AllowProfileCreation?: boolean | undefined;
4737
4737
  /**
4738
4738
  * <p>The format of your <code>sourceLastUpdatedTimestamp</code> that was previously set up.
4739
4739
  * </p>
4740
4740
  * @public
4741
4741
  */
4742
- SourceLastUpdatedTimestampFormat?: string;
4742
+ SourceLastUpdatedTimestampFormat?: string | undefined;
4743
4743
  /**
4744
4744
  * <p>The amount of profile object max count assigned to the object type</p>
4745
4745
  * @public
4746
4746
  */
4747
- MaxProfileObjectCount?: number;
4747
+ MaxProfileObjectCount?: number | undefined;
4748
4748
  /**
4749
4749
  * <p>A map of the name and ObjectType field.</p>
4750
4750
  * @public
4751
4751
  */
4752
- Fields?: Record<string, ObjectTypeField>;
4752
+ Fields?: Record<string, ObjectTypeField> | undefined;
4753
4753
  /**
4754
4754
  * <p>A list of unique keys that can be used to map data to the profile.</p>
4755
4755
  * @public
4756
4756
  */
4757
- Keys?: Record<string, ObjectTypeKey[]>;
4757
+ Keys?: Record<string, ObjectTypeKey[]> | undefined;
4758
4758
  /**
4759
4759
  * <p>The tags used to organize, track, or control access for this resource.</p>
4760
4760
  * @public
4761
4761
  */
4762
- Tags?: Record<string, string>;
4762
+ Tags?: Record<string, string> | undefined;
4763
4763
  }
4764
4764
  /**
4765
4765
  * @public
@@ -4779,18 +4779,18 @@ export interface PutProfileObjectTypeResponse {
4779
4779
  * <p>A unique identifier for the object template.</p>
4780
4780
  * @public
4781
4781
  */
4782
- TemplateId?: string;
4782
+ TemplateId?: string | undefined;
4783
4783
  /**
4784
4784
  * <p>The number of days until the data in the object expires.</p>
4785
4785
  * @public
4786
4786
  */
4787
- ExpirationDays?: number;
4787
+ ExpirationDays?: number | undefined;
4788
4788
  /**
4789
4789
  * <p>The customer-provided key to encrypt the profile object that will be created in this
4790
4790
  * profile object type.</p>
4791
4791
  * @public
4792
4792
  */
4793
- EncryptionKey?: string;
4793
+ EncryptionKey?: string | undefined;
4794
4794
  /**
4795
4795
  * <p>Indicates whether a profile should be created when data is received if one doesn’t exist
4796
4796
  * for an object of this type. The default is <code>FALSE</code>. If the AllowProfileCreation
@@ -4799,49 +4799,49 @@ export interface PutProfileObjectTypeResponse {
4799
4799
  * is found, then the service creates a new standard profile.</p>
4800
4800
  * @public
4801
4801
  */
4802
- AllowProfileCreation?: boolean;
4802
+ AllowProfileCreation?: boolean | undefined;
4803
4803
  /**
4804
4804
  * <p>The format of your <code>sourceLastUpdatedTimestamp</code> that was previously set up in
4805
4805
  * fields that were parsed using <a href="https://docs.oracle.com/javase/10/docs/api/java/text/SimpleDateFormat.html">SimpleDateFormat</a>. If you have <code>sourceLastUpdatedTimestamp</code> in your
4806
4806
  * field, you must set up <code>sourceLastUpdatedTimestampFormat</code>.</p>
4807
4807
  * @public
4808
4808
  */
4809
- SourceLastUpdatedTimestampFormat?: string;
4809
+ SourceLastUpdatedTimestampFormat?: string | undefined;
4810
4810
  /**
4811
4811
  * <p>The amount of profile object max count assigned to the object type.</p>
4812
4812
  * @public
4813
4813
  */
4814
- MaxProfileObjectCount?: number;
4814
+ MaxProfileObjectCount?: number | undefined;
4815
4815
  /**
4816
4816
  * <p>The amount of provisioned profile object max count available.</p>
4817
4817
  * @public
4818
4818
  */
4819
- MaxAvailableProfileObjectCount?: number;
4819
+ MaxAvailableProfileObjectCount?: number | undefined;
4820
4820
  /**
4821
4821
  * <p>A map of the name and ObjectType field.</p>
4822
4822
  * @public
4823
4823
  */
4824
- Fields?: Record<string, ObjectTypeField>;
4824
+ Fields?: Record<string, ObjectTypeField> | undefined;
4825
4825
  /**
4826
4826
  * <p>A list of unique keys that can be used to map data to the profile.</p>
4827
4827
  * @public
4828
4828
  */
4829
- Keys?: Record<string, ObjectTypeKey[]>;
4829
+ Keys?: Record<string, ObjectTypeKey[]> | undefined;
4830
4830
  /**
4831
4831
  * <p>The timestamp of when the domain was created.</p>
4832
4832
  * @public
4833
4833
  */
4834
- CreatedAt?: Date;
4834
+ CreatedAt?: Date | undefined;
4835
4835
  /**
4836
4836
  * <p>The timestamp of when the domain was most recently edited.</p>
4837
4837
  * @public
4838
4838
  */
4839
- LastUpdatedAt?: Date;
4839
+ LastUpdatedAt?: Date | undefined;
4840
4840
  /**
4841
4841
  * <p>The tags used to organize, track, or control access for this resource.</p>
4842
4842
  * @public
4843
4843
  */
4844
- Tags?: Record<string, string>;
4844
+ Tags?: Record<string, string> | undefined;
4845
4845
  }
4846
4846
  /**
4847
4847
  * @public
@@ -4863,13 +4863,13 @@ export interface SearchProfilesRequest {
4863
4863
  * <p>The pagination token from the previous SearchProfiles API call.</p>
4864
4864
  * @public
4865
4865
  */
4866
- NextToken?: string;
4866
+ NextToken?: string | undefined;
4867
4867
  /**
4868
4868
  * <p>The maximum number of objects returned per page.</p>
4869
4869
  * <p>The default is 20 if this parameter is not included in the request.</p>
4870
4870
  * @public
4871
4871
  */
4872
- MaxResults?: number;
4872
+ MaxResults?: number | undefined;
4873
4873
  /**
4874
4874
  * <p>The unique name of the domain.</p>
4875
4875
  * @public
@@ -4899,7 +4899,7 @@ export interface SearchProfilesRequest {
4899
4899
  * </p>
4900
4900
  * @public
4901
4901
  */
4902
- AdditionalSearchKeys?: AdditionalSearchKey[];
4902
+ AdditionalSearchKeys?: AdditionalSearchKey[] | undefined;
4903
4903
  /**
4904
4904
  * <p>Relationship between all specified search keys that will be used to search for profiles.
4905
4905
  * This includes the required <code>KeyName</code> and <code>Values</code> parameters as well
@@ -4922,7 +4922,7 @@ export interface SearchProfilesRequest {
4922
4922
  * included in the request.</p>
4923
4923
  * @public
4924
4924
  */
4925
- LogicalOperator?: LogicalOperator;
4925
+ LogicalOperator?: LogicalOperator | undefined;
4926
4926
  }
4927
4927
  /**
4928
4928
  * <p>A data type pair that consists of a <code>KeyName</code> and <code>Values</code> list
@@ -4935,12 +4935,12 @@ export interface FoundByKeyValue {
4935
4935
  * <p>A searchable identifier of a customer profile.</p>
4936
4936
  * @public
4937
4937
  */
4938
- KeyName?: string;
4938
+ KeyName?: string | undefined;
4939
4939
  /**
4940
4940
  * <p>A list of key values.</p>
4941
4941
  * @public
4942
4942
  */
4943
- Values?: string[];
4943
+ Values?: string[] | undefined;
4944
4944
  }
4945
4945
  /**
4946
4946
  * <p>The standard profile of a customer.</p>
@@ -4951,119 +4951,119 @@ export interface Profile {
4951
4951
  * <p>The unique identifier of a customer profile.</p>
4952
4952
  * @public
4953
4953
  */
4954
- ProfileId?: string;
4954
+ ProfileId?: string | undefined;
4955
4955
  /**
4956
4956
  * <p>An account number that you have given to the customer.</p>
4957
4957
  * @public
4958
4958
  */
4959
- AccountNumber?: string;
4959
+ AccountNumber?: string | undefined;
4960
4960
  /**
4961
4961
  * <p>Any additional information relevant to the customer’s profile.</p>
4962
4962
  * @public
4963
4963
  */
4964
- AdditionalInformation?: string;
4964
+ AdditionalInformation?: string | undefined;
4965
4965
  /**
4966
4966
  * @deprecated
4967
4967
  *
4968
4968
  * <p>The type of profile used to describe the customer.</p>
4969
4969
  * @public
4970
4970
  */
4971
- PartyType?: PartyType;
4971
+ PartyType?: PartyType | undefined;
4972
4972
  /**
4973
4973
  * <p>The name of the customer’s business.</p>
4974
4974
  * @public
4975
4975
  */
4976
- BusinessName?: string;
4976
+ BusinessName?: string | undefined;
4977
4977
  /**
4978
4978
  * <p>The customer’s first name.</p>
4979
4979
  * @public
4980
4980
  */
4981
- FirstName?: string;
4981
+ FirstName?: string | undefined;
4982
4982
  /**
4983
4983
  * <p>The customer’s middle name.</p>
4984
4984
  * @public
4985
4985
  */
4986
- MiddleName?: string;
4986
+ MiddleName?: string | undefined;
4987
4987
  /**
4988
4988
  * <p>The customer’s last name.</p>
4989
4989
  * @public
4990
4990
  */
4991
- LastName?: string;
4991
+ LastName?: string | undefined;
4992
4992
  /**
4993
4993
  * <p>The customer’s birth date. </p>
4994
4994
  * @public
4995
4995
  */
4996
- BirthDate?: string;
4996
+ BirthDate?: string | undefined;
4997
4997
  /**
4998
4998
  * @deprecated
4999
4999
  *
5000
5000
  * <p>The gender with which the customer identifies. </p>
5001
5001
  * @public
5002
5002
  */
5003
- Gender?: Gender;
5003
+ Gender?: Gender | undefined;
5004
5004
  /**
5005
5005
  * <p>The customer's phone number, which has not been specified as a mobile, home, or business
5006
5006
  * number.</p>
5007
5007
  * @public
5008
5008
  */
5009
- PhoneNumber?: string;
5009
+ PhoneNumber?: string | undefined;
5010
5010
  /**
5011
5011
  * <p>The customer’s mobile phone number.</p>
5012
5012
  * @public
5013
5013
  */
5014
- MobilePhoneNumber?: string;
5014
+ MobilePhoneNumber?: string | undefined;
5015
5015
  /**
5016
5016
  * <p>The customer’s home phone number.</p>
5017
5017
  * @public
5018
5018
  */
5019
- HomePhoneNumber?: string;
5019
+ HomePhoneNumber?: string | undefined;
5020
5020
  /**
5021
5021
  * <p>The customer’s home phone number.</p>
5022
5022
  * @public
5023
5023
  */
5024
- BusinessPhoneNumber?: string;
5024
+ BusinessPhoneNumber?: string | undefined;
5025
5025
  /**
5026
5026
  * <p>The customer’s email address, which has not been specified as a personal or business
5027
5027
  * address. </p>
5028
5028
  * @public
5029
5029
  */
5030
- EmailAddress?: string;
5030
+ EmailAddress?: string | undefined;
5031
5031
  /**
5032
5032
  * <p>The customer’s personal email address.</p>
5033
5033
  * @public
5034
5034
  */
5035
- PersonalEmailAddress?: string;
5035
+ PersonalEmailAddress?: string | undefined;
5036
5036
  /**
5037
5037
  * <p>The customer’s business email address.</p>
5038
5038
  * @public
5039
5039
  */
5040
- BusinessEmailAddress?: string;
5040
+ BusinessEmailAddress?: string | undefined;
5041
5041
  /**
5042
5042
  * <p>A generic address associated with the customer that is not mailing, shipping, or
5043
5043
  * billing.</p>
5044
5044
  * @public
5045
5045
  */
5046
- Address?: Address;
5046
+ Address?: Address | undefined;
5047
5047
  /**
5048
5048
  * <p>The customer’s shipping address.</p>
5049
5049
  * @public
5050
5050
  */
5051
- ShippingAddress?: Address;
5051
+ ShippingAddress?: Address | undefined;
5052
5052
  /**
5053
5053
  * <p>The customer’s mailing address.</p>
5054
5054
  * @public
5055
5055
  */
5056
- MailingAddress?: Address;
5056
+ MailingAddress?: Address | undefined;
5057
5057
  /**
5058
5058
  * <p>The customer’s billing address.</p>
5059
5059
  * @public
5060
5060
  */
5061
- BillingAddress?: Address;
5061
+ BillingAddress?: Address | undefined;
5062
5062
  /**
5063
5063
  * <p>A key value pair of attributes of a customer profile.</p>
5064
5064
  * @public
5065
5065
  */
5066
- Attributes?: Record<string, string>;
5066
+ Attributes?: Record<string, string> | undefined;
5067
5067
  /**
5068
5068
  * <p>A list of items used to find a profile returned in a <a href="https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_SearchProfiles.html">SearchProfiles</a> response.
5069
5069
  * An item is a key-value(s) pair that matches an attribute in the profile.</p>
@@ -5090,17 +5090,17 @@ export interface Profile {
5090
5090
  * request.</p>
5091
5091
  * @public
5092
5092
  */
5093
- FoundByItems?: FoundByKeyValue[];
5093
+ FoundByItems?: FoundByKeyValue[] | undefined;
5094
5094
  /**
5095
5095
  * <p>An alternative to PartyType which accepts any string as input.</p>
5096
5096
  * @public
5097
5097
  */
5098
- PartyTypeString?: string;
5098
+ PartyTypeString?: string | undefined;
5099
5099
  /**
5100
5100
  * <p>An alternative to Gender which accepts any string as input.</p>
5101
5101
  * @public
5102
5102
  */
5103
- GenderString?: string;
5103
+ GenderString?: string | undefined;
5104
5104
  }
5105
5105
  /**
5106
5106
  * @public
@@ -5110,12 +5110,12 @@ export interface SearchProfilesResponse {
5110
5110
  * <p>The list of Profiles matching the search criteria.</p>
5111
5111
  * @public
5112
5112
  */
5113
- Items?: Profile[];
5113
+ Items?: Profile[] | undefined;
5114
5114
  /**
5115
5115
  * <p>The pagination token from the previous SearchProfiles API call.</p>
5116
5116
  * @public
5117
5117
  */
5118
- NextToken?: string;
5118
+ NextToken?: string | undefined;
5119
5119
  }
5120
5120
  /**
5121
5121
  * @public
@@ -5175,18 +5175,18 @@ export interface UpdateCalculatedAttributeDefinitionRequest {
5175
5175
  * <p>The display name of the calculated attribute.</p>
5176
5176
  * @public
5177
5177
  */
5178
- DisplayName?: string;
5178
+ DisplayName?: string | undefined;
5179
5179
  /**
5180
5180
  * <p>The description of the calculated attribute.</p>
5181
5181
  * @public
5182
5182
  */
5183
- Description?: string;
5183
+ Description?: string | undefined;
5184
5184
  /**
5185
5185
  * <p>The conditions including range, object count, and threshold for the calculated
5186
5186
  * attribute.</p>
5187
5187
  * @public
5188
5188
  */
5189
- Conditions?: Conditions;
5189
+ Conditions?: Conditions | undefined;
5190
5190
  }
5191
5191
  /**
5192
5192
  * @public
@@ -5196,50 +5196,50 @@ export interface UpdateCalculatedAttributeDefinitionResponse {
5196
5196
  * <p>The unique name of the calculated attribute.</p>
5197
5197
  * @public
5198
5198
  */
5199
- CalculatedAttributeName?: string;
5199
+ CalculatedAttributeName?: string | undefined;
5200
5200
  /**
5201
5201
  * <p>The display name of the calculated attribute.</p>
5202
5202
  * @public
5203
5203
  */
5204
- DisplayName?: string;
5204
+ DisplayName?: string | undefined;
5205
5205
  /**
5206
5206
  * <p>The description of the calculated attribute.</p>
5207
5207
  * @public
5208
5208
  */
5209
- Description?: string;
5209
+ Description?: string | undefined;
5210
5210
  /**
5211
5211
  * <p>The timestamp of when the calculated attribute definition was created.</p>
5212
5212
  * @public
5213
5213
  */
5214
- CreatedAt?: Date;
5214
+ CreatedAt?: Date | undefined;
5215
5215
  /**
5216
5216
  * <p>The timestamp of when the calculated attribute definition was most recently
5217
5217
  * edited.</p>
5218
5218
  * @public
5219
5219
  */
5220
- LastUpdatedAt?: Date;
5220
+ LastUpdatedAt?: Date | undefined;
5221
5221
  /**
5222
5222
  * <p>The aggregation operation to perform for the calculated attribute.</p>
5223
5223
  * @public
5224
5224
  */
5225
- Statistic?: Statistic;
5225
+ Statistic?: Statistic | undefined;
5226
5226
  /**
5227
5227
  * <p>The conditions including range, object count, and threshold for the calculated
5228
5228
  * attribute.</p>
5229
5229
  * @public
5230
5230
  */
5231
- Conditions?: Conditions;
5231
+ Conditions?: Conditions | undefined;
5232
5232
  /**
5233
5233
  * <p>The mathematical expression and a list of attribute items specified in that
5234
5234
  * expression.</p>
5235
5235
  * @public
5236
5236
  */
5237
- AttributeDetails?: AttributeDetails;
5237
+ AttributeDetails?: AttributeDetails | undefined;
5238
5238
  /**
5239
5239
  * <p>The tags used to organize, track, or control access for this resource.</p>
5240
5240
  * @public
5241
5241
  */
5242
- Tags?: Record<string, string>;
5242
+ Tags?: Record<string, string> | undefined;
5243
5243
  }
5244
5244
  /**
5245
5245
  * @public
@@ -5254,7 +5254,7 @@ export interface UpdateDomainRequest {
5254
5254
  * <p>The default number of days until the data within the domain expires.</p>
5255
5255
  * @public
5256
5256
  */
5257
- DefaultExpirationDays?: number;
5257
+ DefaultExpirationDays?: number | undefined;
5258
5258
  /**
5259
5259
  * <p>The default encryption key, which is an AWS managed key, is used when no specific type
5260
5260
  * of encryption key is specified. It is used to encrypt all data before it is placed in
@@ -5262,7 +5262,7 @@ export interface UpdateDomainRequest {
5262
5262
  * existing value.</p>
5263
5263
  * @public
5264
5264
  */
5265
- DefaultEncryptionKey?: string;
5265
+ DefaultEncryptionKey?: string | undefined;
5266
5266
  /**
5267
5267
  * <p>The URL of the SQS dead letter queue, which is used for reporting errors associated with
5268
5268
  * ingesting data from third party applications. If specified as an empty string, it will
@@ -5271,7 +5271,7 @@ export interface UpdateDomainRequest {
5271
5271
  * DeadLetterQueue.</p>
5272
5272
  * @public
5273
5273
  */
5274
- DeadLetterQueueUrl?: string;
5274
+ DeadLetterQueueUrl?: string | undefined;
5275
5275
  /**
5276
5276
  * <p>The process of matching duplicate profiles. If <code>Matching</code> = <code>true</code>, Amazon Connect Customer Profiles starts a weekly
5277
5277
  * batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every
@@ -5282,7 +5282,7 @@ export interface UpdateDomainRequest {
5282
5282
  * S3.</p>
5283
5283
  * @public
5284
5284
  */
5285
- Matching?: MatchingRequest;
5285
+ Matching?: MatchingRequest | undefined;
5286
5286
  /**
5287
5287
  * <p>The process of matching duplicate profiles using the rule-Based matching. If
5288
5288
  * <code>RuleBasedMatching</code> = true, Amazon Connect Customer Profiles will start
@@ -5293,12 +5293,12 @@ export interface UpdateDomainRequest {
5293
5293
  * can download the results from S3.</p>
5294
5294
  * @public
5295
5295
  */
5296
- RuleBasedMatching?: RuleBasedMatchingRequest;
5296
+ RuleBasedMatching?: RuleBasedMatchingRequest | undefined;
5297
5297
  /**
5298
5298
  * <p>The tags used to organize, track, or control access for this resource.</p>
5299
5299
  * @public
5300
5300
  */
5301
- Tags?: Record<string, string>;
5301
+ Tags?: Record<string, string> | undefined;
5302
5302
  }
5303
5303
  /**
5304
5304
  * @public
@@ -5313,20 +5313,20 @@ export interface UpdateDomainResponse {
5313
5313
  * <p>The default number of days until the data within the domain expires.</p>
5314
5314
  * @public
5315
5315
  */
5316
- DefaultExpirationDays?: number;
5316
+ DefaultExpirationDays?: number | undefined;
5317
5317
  /**
5318
5318
  * <p>The default encryption key, which is an AWS managed key, is used when no specific type
5319
5319
  * of encryption key is specified. It is used to encrypt all data before it is placed in
5320
5320
  * permanent or semi-permanent storage.</p>
5321
5321
  * @public
5322
5322
  */
5323
- DefaultEncryptionKey?: string;
5323
+ DefaultEncryptionKey?: string | undefined;
5324
5324
  /**
5325
5325
  * <p>The URL of the SQS dead letter queue, which is used for reporting errors associated with
5326
5326
  * ingesting data from third party applications.</p>
5327
5327
  * @public
5328
5328
  */
5329
- DeadLetterQueueUrl?: string;
5329
+ DeadLetterQueueUrl?: string | undefined;
5330
5330
  /**
5331
5331
  * <p>The process of matching duplicate profiles. If <code>Matching</code> = <code>true</code>, Amazon Connect Customer Profiles starts a weekly
5332
5332
  * batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every
@@ -5337,7 +5337,7 @@ export interface UpdateDomainResponse {
5337
5337
  * S3.</p>
5338
5338
  * @public
5339
5339
  */
5340
- Matching?: MatchingResponse;
5340
+ Matching?: MatchingResponse | undefined;
5341
5341
  /**
5342
5342
  * <p>The process of matching duplicate profiles using the rule-Based matching. If
5343
5343
  * <code>RuleBasedMatching</code> = true, Amazon Connect Customer Profiles will start
@@ -5348,7 +5348,7 @@ export interface UpdateDomainResponse {
5348
5348
  * can download the results from S3.</p>
5349
5349
  * @public
5350
5350
  */
5351
- RuleBasedMatching?: RuleBasedMatchingResponse;
5351
+ RuleBasedMatching?: RuleBasedMatchingResponse | undefined;
5352
5352
  /**
5353
5353
  * <p>The timestamp of when the domain was created.</p>
5354
5354
  * @public
@@ -5363,7 +5363,7 @@ export interface UpdateDomainResponse {
5363
5363
  * <p>The tags used to organize, track, or control access for this resource.</p>
5364
5364
  * @public
5365
5365
  */
5366
- Tags?: Record<string, string>;
5366
+ Tags?: Record<string, string> | undefined;
5367
5367
  }
5368
5368
  /**
5369
5369
  * <p>Updates associated with the address properties of a customer profile.</p>
@@ -5374,52 +5374,52 @@ export interface UpdateAddress {
5374
5374
  * <p>The first line of a customer address.</p>
5375
5375
  * @public
5376
5376
  */
5377
- Address1?: string;
5377
+ Address1?: string | undefined;
5378
5378
  /**
5379
5379
  * <p>The second line of a customer address.</p>
5380
5380
  * @public
5381
5381
  */
5382
- Address2?: string;
5382
+ Address2?: string | undefined;
5383
5383
  /**
5384
5384
  * <p>The third line of a customer address.</p>
5385
5385
  * @public
5386
5386
  */
5387
- Address3?: string;
5387
+ Address3?: string | undefined;
5388
5388
  /**
5389
5389
  * <p>The fourth line of a customer address.</p>
5390
5390
  * @public
5391
5391
  */
5392
- Address4?: string;
5392
+ Address4?: string | undefined;
5393
5393
  /**
5394
5394
  * <p>The city in which a customer lives.</p>
5395
5395
  * @public
5396
5396
  */
5397
- City?: string;
5397
+ City?: string | undefined;
5398
5398
  /**
5399
5399
  * <p>The county in which a customer lives.</p>
5400
5400
  * @public
5401
5401
  */
5402
- County?: string;
5402
+ County?: string | undefined;
5403
5403
  /**
5404
5404
  * <p>The state in which a customer lives.</p>
5405
5405
  * @public
5406
5406
  */
5407
- State?: string;
5407
+ State?: string | undefined;
5408
5408
  /**
5409
5409
  * <p>The province in which a customer lives.</p>
5410
5410
  * @public
5411
5411
  */
5412
- Province?: string;
5412
+ Province?: string | undefined;
5413
5413
  /**
5414
5414
  * <p>The country in which a customer lives.</p>
5415
5415
  * @public
5416
5416
  */
5417
- Country?: string;
5417
+ Country?: string | undefined;
5418
5418
  /**
5419
5419
  * <p>The postal code of a customer address.</p>
5420
5420
  * @public
5421
5421
  */
5422
- PostalCode?: string;
5422
+ PostalCode?: string | undefined;
5423
5423
  }
5424
5424
  /**
5425
5425
  * @public
@@ -5439,124 +5439,124 @@ export interface UpdateProfileRequest {
5439
5439
  * <p>Any additional information relevant to the customer’s profile.</p>
5440
5440
  * @public
5441
5441
  */
5442
- AdditionalInformation?: string;
5442
+ AdditionalInformation?: string | undefined;
5443
5443
  /**
5444
5444
  * <p>An account number that you have given to the customer.</p>
5445
5445
  * @public
5446
5446
  */
5447
- AccountNumber?: string;
5447
+ AccountNumber?: string | undefined;
5448
5448
  /**
5449
5449
  * @deprecated
5450
5450
  *
5451
5451
  * <p>The type of profile used to describe the customer.</p>
5452
5452
  * @public
5453
5453
  */
5454
- PartyType?: PartyType;
5454
+ PartyType?: PartyType | undefined;
5455
5455
  /**
5456
5456
  * <p>The name of the customer’s business.</p>
5457
5457
  * @public
5458
5458
  */
5459
- BusinessName?: string;
5459
+ BusinessName?: string | undefined;
5460
5460
  /**
5461
5461
  * <p>The customer’s first name.</p>
5462
5462
  * @public
5463
5463
  */
5464
- FirstName?: string;
5464
+ FirstName?: string | undefined;
5465
5465
  /**
5466
5466
  * <p>The customer’s middle name.</p>
5467
5467
  * @public
5468
5468
  */
5469
- MiddleName?: string;
5469
+ MiddleName?: string | undefined;
5470
5470
  /**
5471
5471
  * <p>The customer’s last name.</p>
5472
5472
  * @public
5473
5473
  */
5474
- LastName?: string;
5474
+ LastName?: string | undefined;
5475
5475
  /**
5476
5476
  * <p>The customer’s birth date. </p>
5477
5477
  * @public
5478
5478
  */
5479
- BirthDate?: string;
5479
+ BirthDate?: string | undefined;
5480
5480
  /**
5481
5481
  * @deprecated
5482
5482
  *
5483
5483
  * <p>The gender with which the customer identifies. </p>
5484
5484
  * @public
5485
5485
  */
5486
- Gender?: Gender;
5486
+ Gender?: Gender | undefined;
5487
5487
  /**
5488
5488
  * <p>The customer’s phone number, which has not been specified as a mobile, home, or business
5489
5489
  * number. </p>
5490
5490
  * @public
5491
5491
  */
5492
- PhoneNumber?: string;
5492
+ PhoneNumber?: string | undefined;
5493
5493
  /**
5494
5494
  * <p>The customer’s mobile phone number.</p>
5495
5495
  * @public
5496
5496
  */
5497
- MobilePhoneNumber?: string;
5497
+ MobilePhoneNumber?: string | undefined;
5498
5498
  /**
5499
5499
  * <p>The customer’s home phone number.</p>
5500
5500
  * @public
5501
5501
  */
5502
- HomePhoneNumber?: string;
5502
+ HomePhoneNumber?: string | undefined;
5503
5503
  /**
5504
5504
  * <p>The customer’s business phone number.</p>
5505
5505
  * @public
5506
5506
  */
5507
- BusinessPhoneNumber?: string;
5507
+ BusinessPhoneNumber?: string | undefined;
5508
5508
  /**
5509
5509
  * <p>The customer’s email address, which has not been specified as a personal or business
5510
5510
  * address. </p>
5511
5511
  * @public
5512
5512
  */
5513
- EmailAddress?: string;
5513
+ EmailAddress?: string | undefined;
5514
5514
  /**
5515
5515
  * <p>The customer’s personal email address.</p>
5516
5516
  * @public
5517
5517
  */
5518
- PersonalEmailAddress?: string;
5518
+ PersonalEmailAddress?: string | undefined;
5519
5519
  /**
5520
5520
  * <p>The customer’s business email address.</p>
5521
5521
  * @public
5522
5522
  */
5523
- BusinessEmailAddress?: string;
5523
+ BusinessEmailAddress?: string | undefined;
5524
5524
  /**
5525
5525
  * <p>A generic address associated with the customer that is not mailing, shipping, or
5526
5526
  * billing.</p>
5527
5527
  * @public
5528
5528
  */
5529
- Address?: UpdateAddress;
5529
+ Address?: UpdateAddress | undefined;
5530
5530
  /**
5531
5531
  * <p>The customer’s shipping address.</p>
5532
5532
  * @public
5533
5533
  */
5534
- ShippingAddress?: UpdateAddress;
5534
+ ShippingAddress?: UpdateAddress | undefined;
5535
5535
  /**
5536
5536
  * <p>The customer’s mailing address.</p>
5537
5537
  * @public
5538
5538
  */
5539
- MailingAddress?: UpdateAddress;
5539
+ MailingAddress?: UpdateAddress | undefined;
5540
5540
  /**
5541
5541
  * <p>The customer’s billing address.</p>
5542
5542
  * @public
5543
5543
  */
5544
- BillingAddress?: UpdateAddress;
5544
+ BillingAddress?: UpdateAddress | undefined;
5545
5545
  /**
5546
5546
  * <p>A key value pair of attributes of a customer profile.</p>
5547
5547
  * @public
5548
5548
  */
5549
- Attributes?: Record<string, string>;
5549
+ Attributes?: Record<string, string> | undefined;
5550
5550
  /**
5551
5551
  * <p>An alternative to <code>PartyType</code> which accepts any string as input.</p>
5552
5552
  * @public
5553
5553
  */
5554
- PartyTypeString?: string;
5554
+ PartyTypeString?: string | undefined;
5555
5555
  /**
5556
5556
  * <p>An alternative to <code>Gender</code> which accepts any string as input.</p>
5557
5557
  * @public
5558
5558
  */
5559
- GenderString?: string;
5559
+ GenderString?: string | undefined;
5560
5560
  }
5561
5561
  /**
5562
5562
  * @public