@aws-sdk/client-mailmanager 3.687.0 → 3.692.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.
@@ -19,7 +19,7 @@ export type AcceptAction = (typeof AcceptAction)[keyof typeof AcceptAction];
19
19
  export declare class AccessDeniedException extends __BaseException {
20
20
  readonly name: "AccessDeniedException";
21
21
  readonly $fault: "client";
22
- Message?: string;
22
+ Message?: string | undefined;
23
23
  /**
24
24
  * @internal
25
25
  */
@@ -65,27 +65,27 @@ export interface AddonInstance {
65
65
  * <p>The unique ID of the Add On instance.</p>
66
66
  * @public
67
67
  */
68
- AddonInstanceId?: string;
68
+ AddonInstanceId?: string | undefined;
69
69
  /**
70
70
  * <p>The subscription ID for the instance.</p>
71
71
  * @public
72
72
  */
73
- AddonSubscriptionId?: string;
73
+ AddonSubscriptionId?: string | undefined;
74
74
  /**
75
75
  * <p>The name of the Add On for the instance.</p>
76
76
  * @public
77
77
  */
78
- AddonName?: string;
78
+ AddonName?: string | undefined;
79
79
  /**
80
80
  * <p>The Amazon Resource Name (ARN) of the Add On instance.</p>
81
81
  * @public
82
82
  */
83
- AddonInstanceArn?: string;
83
+ AddonInstanceArn?: string | undefined;
84
84
  /**
85
85
  * <p>The timestamp of when the Add On instance was created.</p>
86
86
  * @public
87
87
  */
88
- CreatedTimestamp?: Date;
88
+ CreatedTimestamp?: Date | undefined;
89
89
  }
90
90
  /**
91
91
  * <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
@@ -94,7 +94,7 @@ export interface AddonInstance {
94
94
  export declare class ConflictException extends __BaseException {
95
95
  readonly name: "ConflictException";
96
96
  readonly $fault: "client";
97
- Message?: string;
97
+ Message?: string | undefined;
98
98
  /**
99
99
  * @internal
100
100
  */
@@ -125,7 +125,7 @@ export interface CreateAddonInstanceRequest {
125
125
  * request.</p>
126
126
  * @public
127
127
  */
128
- ClientToken?: string;
128
+ ClientToken?: string | undefined;
129
129
  /**
130
130
  * <p>The unique ID of a previously created subscription that an Add On instance is created
131
131
  * for. You can only have one instance per subscription.</p>
@@ -136,7 +136,7 @@ export interface CreateAddonInstanceRequest {
136
136
  * <p>The tags used to organize, track, or control access for the resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
137
137
  * @public
138
138
  */
139
- Tags?: Tag[];
139
+ Tags?: Tag[] | undefined;
140
140
  }
141
141
  /**
142
142
  * @public
@@ -155,7 +155,7 @@ export interface CreateAddonInstanceResponse {
155
155
  export declare class ResourceNotFoundException extends __BaseException {
156
156
  readonly name: "ResourceNotFoundException";
157
157
  readonly $fault: "client";
158
- Message?: string;
158
+ Message?: string | undefined;
159
159
  /**
160
160
  * @internal
161
161
  */
@@ -168,7 +168,7 @@ export declare class ResourceNotFoundException extends __BaseException {
168
168
  export declare class ServiceQuotaExceededException extends __BaseException {
169
169
  readonly name: "ServiceQuotaExceededException";
170
170
  readonly $fault: "client";
171
- Message?: string;
171
+ Message?: string | undefined;
172
172
  /**
173
173
  * @internal
174
174
  */
@@ -181,7 +181,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
181
181
  export declare class ValidationException extends __BaseException {
182
182
  readonly name: "ValidationException";
183
183
  readonly $fault: "client";
184
- Message?: string;
184
+ Message?: string | undefined;
185
185
  /**
186
186
  * @internal
187
187
  */
@@ -220,22 +220,22 @@ export interface GetAddonInstanceResponse {
220
220
  * <p>The subscription ID associated to the instance.</p>
221
221
  * @public
222
222
  */
223
- AddonSubscriptionId?: string;
223
+ AddonSubscriptionId?: string | undefined;
224
224
  /**
225
225
  * <p>The name of the Add On provider associated to the subscription of the instance.</p>
226
226
  * @public
227
227
  */
228
- AddonName?: string;
228
+ AddonName?: string | undefined;
229
229
  /**
230
230
  * <p>The Amazon Resource Name (ARN) of the Add On instance.</p>
231
231
  * @public
232
232
  */
233
- AddonInstanceArn?: string;
233
+ AddonInstanceArn?: string | undefined;
234
234
  /**
235
235
  * <p>The timestamp of when the Add On instance was created.</p>
236
236
  * @public
237
237
  */
238
- CreatedTimestamp?: Date;
238
+ CreatedTimestamp?: Date | undefined;
239
239
  }
240
240
  /**
241
241
  * @public
@@ -245,13 +245,13 @@ export interface ListAddonInstancesRequest {
245
245
  * <p>If you received a pagination token from a previous call to this API, you can provide it here to continue paginating through the next page of results.</p>
246
246
  * @public
247
247
  */
248
- NextToken?: string;
248
+ NextToken?: string | undefined;
249
249
  /**
250
250
  * <p>The maximum number of ingress endpoint resources that are returned per call. You can
251
251
  * use NextToken to obtain further ingress endpoints. </p>
252
252
  * @public
253
253
  */
254
- PageSize?: number;
254
+ PageSize?: number | undefined;
255
255
  }
256
256
  /**
257
257
  * @public
@@ -261,12 +261,12 @@ export interface ListAddonInstancesResponse {
261
261
  * <p>The list of ingress endpoints.</p>
262
262
  * @public
263
263
  */
264
- AddonInstances?: AddonInstance[];
264
+ AddonInstances?: AddonInstance[] | undefined;
265
265
  /**
266
266
  * <p>If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.</p>
267
267
  * @public
268
268
  */
269
- NextToken?: string;
269
+ NextToken?: string | undefined;
270
270
  }
271
271
  /**
272
272
  * <p>A subscription for an Add On representing the acceptance of its terms of use and
@@ -278,22 +278,22 @@ export interface AddonSubscription {
278
278
  * <p>The unique ID of the Add On subscription.</p>
279
279
  * @public
280
280
  */
281
- AddonSubscriptionId?: string;
281
+ AddonSubscriptionId?: string | undefined;
282
282
  /**
283
283
  * <p>The name of the Add On.</p>
284
284
  * @public
285
285
  */
286
- AddonName?: string;
286
+ AddonName?: string | undefined;
287
287
  /**
288
288
  * <p>The Amazon Resource Name (ARN) of the Add On subscription.</p>
289
289
  * @public
290
290
  */
291
- AddonSubscriptionArn?: string;
291
+ AddonSubscriptionArn?: string | undefined;
292
292
  /**
293
293
  * <p>The timestamp of when the Add On subscription was created.</p>
294
294
  * @public
295
295
  */
296
- CreatedTimestamp?: Date;
296
+ CreatedTimestamp?: Date | undefined;
297
297
  }
298
298
  /**
299
299
  * @public
@@ -304,7 +304,7 @@ export interface CreateAddonSubscriptionRequest {
304
304
  * request.</p>
305
305
  * @public
306
306
  */
307
- ClientToken?: string;
307
+ ClientToken?: string | undefined;
308
308
  /**
309
309
  * <p>The name of the Add On to subscribe to. You can only have one subscription for each
310
310
  * Add On name.</p>
@@ -315,7 +315,7 @@ export interface CreateAddonSubscriptionRequest {
315
315
  * <p>The tags used to organize, track, or control access for the resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
316
316
  * @public
317
317
  */
318
- Tags?: Tag[];
318
+ Tags?: Tag[] | undefined;
319
319
  }
320
320
  /**
321
321
  * @public
@@ -360,17 +360,17 @@ export interface GetAddonSubscriptionResponse {
360
360
  * <p>The name of the Add On for the subscription.</p>
361
361
  * @public
362
362
  */
363
- AddonName?: string;
363
+ AddonName?: string | undefined;
364
364
  /**
365
365
  * <p>Amazon Resource Name (ARN) for the subscription.</p>
366
366
  * @public
367
367
  */
368
- AddonSubscriptionArn?: string;
368
+ AddonSubscriptionArn?: string | undefined;
369
369
  /**
370
370
  * <p>The timestamp of when the Add On subscription was created.</p>
371
371
  * @public
372
372
  */
373
- CreatedTimestamp?: Date;
373
+ CreatedTimestamp?: Date | undefined;
374
374
  }
375
375
  /**
376
376
  * @public
@@ -380,13 +380,13 @@ export interface ListAddonSubscriptionsRequest {
380
380
  * <p>If you received a pagination token from a previous call to this API, you can provide it here to continue paginating through the next page of results.</p>
381
381
  * @public
382
382
  */
383
- NextToken?: string;
383
+ NextToken?: string | undefined;
384
384
  /**
385
385
  * <p>The maximum number of ingress endpoint resources that are returned per call. You can
386
386
  * use NextToken to obtain further ingress endpoints. </p>
387
387
  * @public
388
388
  */
389
- PageSize?: number;
389
+ PageSize?: number | undefined;
390
390
  }
391
391
  /**
392
392
  * @public
@@ -396,12 +396,12 @@ export interface ListAddonSubscriptionsResponse {
396
396
  * <p>The list of ingress endpoints.</p>
397
397
  * @public
398
398
  */
399
- AddonSubscriptions?: AddonSubscription[];
399
+ AddonSubscriptions?: AddonSubscription[] | undefined;
400
400
  /**
401
401
  * <p>If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.</p>
402
402
  * @public
403
403
  */
404
- NextToken?: string;
404
+ NextToken?: string | undefined;
405
405
  }
406
406
  /**
407
407
  * <p>The result of an analysis can be used in conditions to trigger actions. Analyses can
@@ -446,7 +446,7 @@ export interface Archive {
446
446
  * <p>The unique name assigned to the archive.</p>
447
447
  * @public
448
448
  */
449
- ArchiveName?: string;
449
+ ArchiveName?: string | undefined;
450
450
  /**
451
451
  * <p>The current state of the archive:</p>
452
452
  * <ul>
@@ -463,12 +463,12 @@ export interface Archive {
463
463
  * </ul>
464
464
  * @public
465
465
  */
466
- ArchiveState?: ArchiveState;
466
+ ArchiveState?: ArchiveState | undefined;
467
467
  /**
468
468
  * <p>The timestamp of when the archive was last updated.</p>
469
469
  * @public
470
470
  */
471
- LastUpdatedTimestamp?: Date;
471
+ LastUpdatedTimestamp?: Date | undefined;
472
472
  }
473
473
  /**
474
474
  * <p>The action to archive the email by delivering the email to an Amazon SES archive.</p>
@@ -480,7 +480,7 @@ export interface ArchiveAction {
480
480
  * are configuration errors. For example, the specified archive has been deleted.</p>
481
481
  * @public
482
482
  */
483
- ActionFailurePolicy?: ActionFailurePolicy;
483
+ ActionFailurePolicy?: ActionFailurePolicy | undefined;
484
484
  /**
485
485
  * <p>The identifier of the archive to send the email to.</p>
486
486
  * @public
@@ -685,12 +685,12 @@ export interface ArchiveFilters {
685
685
  * <p>The filter conditions for emails to include.</p>
686
686
  * @public
687
687
  */
688
- Include?: ArchiveFilterCondition[];
688
+ Include?: ArchiveFilterCondition[] | undefined;
689
689
  /**
690
690
  * <p>The filter conditions for emails to exclude.</p>
691
691
  * @public
692
692
  */
693
- Unless?: ArchiveFilterCondition[];
693
+ Unless?: ArchiveFilterCondition[] | undefined;
694
694
  }
695
695
  /**
696
696
  * @public
@@ -758,7 +758,7 @@ export interface CreateArchiveRequest {
758
758
  * <p>A unique token Amazon SES uses to recognize retries of this request.</p>
759
759
  * @public
760
760
  */
761
- ClientToken?: string;
761
+ ClientToken?: string | undefined;
762
762
  /**
763
763
  * <p>A unique name for the new archive.</p>
764
764
  * @public
@@ -768,17 +768,17 @@ export interface CreateArchiveRequest {
768
768
  * <p>The period for retaining emails in the archive before automatic deletion.</p>
769
769
  * @public
770
770
  */
771
- Retention?: ArchiveRetention;
771
+ Retention?: ArchiveRetention | undefined;
772
772
  /**
773
773
  * <p>The Amazon Resource Name (ARN) of the KMS key for encrypting emails in the archive.</p>
774
774
  * @public
775
775
  */
776
- KmsKeyArn?: string;
776
+ KmsKeyArn?: string | undefined;
777
777
  /**
778
778
  * <p>The tags used to organize, track, or control access for the resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
779
779
  * @public
780
780
  */
781
- Tags?: Tag[];
781
+ Tags?: Tag[] | undefined;
782
782
  }
783
783
  /**
784
784
  * <p>The response from creating a new email archive.</p>
@@ -798,7 +798,7 @@ export interface CreateArchiveResponse {
798
798
  export declare class ThrottlingException extends __BaseException {
799
799
  readonly name: "ThrottlingException";
800
800
  readonly $fault: "client";
801
- Message?: string;
801
+ Message?: string | undefined;
802
802
  /**
803
803
  * @internal
804
804
  */
@@ -880,17 +880,17 @@ export interface GetArchiveResponse {
880
880
  * <p>The timestamp of when the archive was created.</p>
881
881
  * @public
882
882
  */
883
- CreatedTimestamp?: Date;
883
+ CreatedTimestamp?: Date | undefined;
884
884
  /**
885
885
  * <p>The timestamp of when the archive was modified.</p>
886
886
  * @public
887
887
  */
888
- LastUpdatedTimestamp?: Date;
888
+ LastUpdatedTimestamp?: Date | undefined;
889
889
  /**
890
890
  * <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt the archive.</p>
891
891
  * @public
892
892
  */
893
- KmsKeyArn?: string;
893
+ KmsKeyArn?: string | undefined;
894
894
  }
895
895
  /**
896
896
  * <p>The request to list email archives in your account.</p>
@@ -903,13 +903,13 @@ export interface ListArchivesRequest {
903
903
  * retrieve the next page. </p>
904
904
  * @public
905
905
  */
906
- NextToken?: string;
906
+ NextToken?: string | undefined;
907
907
  /**
908
908
  * <p>The maximum number of archives that are returned per call. You can use NextToken to
909
909
  * obtain further pages of archives. </p>
910
910
  * @public
911
911
  */
912
- PageSize?: number;
912
+ PageSize?: number | undefined;
913
913
  }
914
914
  /**
915
915
  * <p>The response containing a list of your email archives.</p>
@@ -925,7 +925,7 @@ export interface ListArchivesResponse {
925
925
  * <p>If present, use to retrieve the next page of results.</p>
926
926
  * @public
927
927
  */
928
- NextToken?: string;
928
+ NextToken?: string | undefined;
929
929
  }
930
930
  /**
931
931
  * <p>The request to update properties of an existing email archive.</p>
@@ -941,12 +941,12 @@ export interface UpdateArchiveRequest {
941
941
  * <p>A new, unique name for the archive.</p>
942
942
  * @public
943
943
  */
944
- ArchiveName?: string;
944
+ ArchiveName?: string | undefined;
945
945
  /**
946
946
  * <p>A new retention period for emails in the archive.</p>
947
947
  * @public
948
948
  */
949
- Retention?: ArchiveRetention;
949
+ Retention?: ArchiveRetention | undefined;
950
950
  }
951
951
  /**
952
952
  * <p>The response indicating if the archive update succeeded or failed.</p>
@@ -1019,7 +1019,7 @@ export interface CreateIngressPointRequest {
1019
1019
  * request.</p>
1020
1020
  * @public
1021
1021
  */
1022
- ClientToken?: string;
1022
+ ClientToken?: string | undefined;
1023
1023
  /**
1024
1024
  * <p>A user friendly name for an ingress endpoint resource.</p>
1025
1025
  * @public
@@ -1047,12 +1047,12 @@ export interface CreateIngressPointRequest {
1047
1047
  * ARN.</p>
1048
1048
  * @public
1049
1049
  */
1050
- IngressPointConfiguration?: IngressPointConfiguration;
1050
+ IngressPointConfiguration?: IngressPointConfiguration | undefined;
1051
1051
  /**
1052
1052
  * <p>The tags used to organize, track, or control access for the resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1053
1053
  * @public
1054
1054
  */
1055
- Tags?: Tag[];
1055
+ Tags?: Tag[] | undefined;
1056
1056
  }
1057
1057
  /**
1058
1058
  * @public
@@ -1122,7 +1122,7 @@ export interface CreateRelayRequest {
1122
1122
  * request.</p>
1123
1123
  * @public
1124
1124
  */
1125
- ClientToken?: string;
1125
+ ClientToken?: string | undefined;
1126
1126
  /**
1127
1127
  * <p>The unique name of the relay resource.</p>
1128
1128
  * @public
@@ -1148,7 +1148,7 @@ export interface CreateRelayRequest {
1148
1148
  * <p>The tags used to organize, track, or control access for the resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1149
1149
  * @public
1150
1150
  */
1151
- Tags?: Tag[];
1151
+ Tags?: Tag[] | undefined;
1152
1152
  }
1153
1153
  /**
1154
1154
  * @public
@@ -1170,7 +1170,7 @@ export interface DeliverToMailboxAction {
1170
1170
  * are configuration errors. For example, the mailbox ARN is no longer valid.</p>
1171
1171
  * @public
1172
1172
  */
1173
- ActionFailurePolicy?: ActionFailurePolicy;
1173
+ ActionFailurePolicy?: ActionFailurePolicy | undefined;
1174
1174
  /**
1175
1175
  * <p>The Amazon Resource Name (ARN) of a WorkMail organization to deliver the email to.</p>
1176
1176
  * @public
@@ -1213,7 +1213,7 @@ export interface RelayAction {
1213
1213
  * are configuration errors. For example, the specified relay has been deleted.</p>
1214
1214
  * @public
1215
1215
  */
1216
- ActionFailurePolicy?: ActionFailurePolicy;
1216
+ ActionFailurePolicy?: ActionFailurePolicy | undefined;
1217
1217
  /**
1218
1218
  * <p>The identifier of the relay resource to be used when relaying an email.</p>
1219
1219
  * @public
@@ -1224,7 +1224,7 @@ export interface RelayAction {
1224
1224
  * relaying received emails to a destination server.</p>
1225
1225
  * @public
1226
1226
  */
1227
- MailFrom?: MailFrom;
1227
+ MailFrom?: MailFrom | undefined;
1228
1228
  }
1229
1229
  /**
1230
1230
  * <p>This action replaces the email envelope recipients with the given list of recipients.
@@ -1239,7 +1239,7 @@ export interface ReplaceRecipientAction {
1239
1239
  * <p>This action specifies the replacement recipient email addresses to insert.</p>
1240
1240
  * @public
1241
1241
  */
1242
- ReplaceWith?: string[];
1242
+ ReplaceWith?: string[] | undefined;
1243
1243
  }
1244
1244
  /**
1245
1245
  * <p>Sends the email to the internet using the ses:SendRawEmail API.</p>
@@ -1252,7 +1252,7 @@ export interface SendAction {
1252
1252
  * the sendRawEmail API.</p>
1253
1253
  * @public
1254
1254
  */
1255
- ActionFailurePolicy?: ActionFailurePolicy;
1255
+ ActionFailurePolicy?: ActionFailurePolicy | undefined;
1256
1256
  /**
1257
1257
  * <p>The Amazon Resource Name (ARN) of the role to use for this action. This role must have access to the
1258
1258
  * ses:SendRawEmail API.</p>
@@ -1270,7 +1270,7 @@ export interface S3Action {
1270
1270
  * are configuration errors. For example, the specified the bucket has been deleted.</p>
1271
1271
  * @public
1272
1272
  */
1273
- ActionFailurePolicy?: ActionFailurePolicy;
1273
+ ActionFailurePolicy?: ActionFailurePolicy | undefined;
1274
1274
  /**
1275
1275
  * <p>The Amazon Resource Name (ARN) of the IAM Role to use while writing to S3. This role must have access to
1276
1276
  * the s3:PutObject, kms:Encrypt, and kms:GenerateDataKey APIs for the given bucket.</p>
@@ -1286,12 +1286,12 @@ export interface S3Action {
1286
1286
  * <p>The S3 prefix to use for the write to the s3 bucket.</p>
1287
1287
  * @public
1288
1288
  */
1289
- S3Prefix?: string;
1289
+ S3Prefix?: string | undefined;
1290
1290
  /**
1291
1291
  * <p>The KMS Key ID to use to encrypt the message in S3.</p>
1292
1292
  * @public
1293
1293
  */
1294
- S3SseKmsKeyId?: string;
1294
+ S3SseKmsKeyId?: string | undefined;
1295
1295
  }
1296
1296
  /**
1297
1297
  * <p>The action for a rule to take. Only one of the contained actions can be set.</p>
@@ -2060,21 +2060,21 @@ export interface Rule {
2060
2060
  * <p>The user-friendly name of the rule.</p>
2061
2061
  * @public
2062
2062
  */
2063
- Name?: string;
2063
+ Name?: string | undefined;
2064
2064
  /**
2065
2065
  * <p>The conditions of this rule. All conditions must match the email for the actions to be
2066
2066
  * executed. An empty list of conditions means that all emails match, but are still subject
2067
2067
  * to any "unless conditions"</p>
2068
2068
  * @public
2069
2069
  */
2070
- Conditions?: RuleCondition[];
2070
+ Conditions?: RuleCondition[] | undefined;
2071
2071
  /**
2072
2072
  * <p>The "unless conditions" of this rule. None of the conditions can match the
2073
2073
  * email for the actions to be executed. If any of these conditions do match the email,
2074
2074
  * then the actions are not executed.</p>
2075
2075
  * @public
2076
2076
  */
2077
- Unless?: RuleCondition[];
2077
+ Unless?: RuleCondition[] | undefined;
2078
2078
  /**
2079
2079
  * <p>The list of actions to execute when the conditions match the incoming email, and none
2080
2080
  * of the "unless conditions" match.</p>
@@ -2091,7 +2091,7 @@ export interface CreateRuleSetRequest {
2091
2091
  * request.</p>
2092
2092
  * @public
2093
2093
  */
2094
- ClientToken?: string;
2094
+ ClientToken?: string | undefined;
2095
2095
  /**
2096
2096
  * <p>A user-friendly name for the rule set.</p>
2097
2097
  * @public
@@ -2106,7 +2106,7 @@ export interface CreateRuleSetRequest {
2106
2106
  * <p>The tags used to organize, track, or control access for the resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2107
2107
  * @public
2108
2108
  */
2109
- Tags?: Tag[];
2109
+ Tags?: Tag[] | undefined;
2110
2110
  }
2111
2111
  /**
2112
2112
  * @public
@@ -2543,7 +2543,7 @@ export interface CreateTrafficPolicyRequest {
2543
2543
  * request.</p>
2544
2544
  * @public
2545
2545
  */
2546
- ClientToken?: string;
2546
+ ClientToken?: string | undefined;
2547
2547
  /**
2548
2548
  * <p>A user-friendly name for the traffic policy resource.</p>
2549
2549
  * @public
@@ -2564,12 +2564,12 @@ export interface CreateTrafficPolicyRequest {
2564
2564
  * policy—anything larger will be blocked.</p>
2565
2565
  * @public
2566
2566
  */
2567
- MaxMessageSizeBytes?: number;
2567
+ MaxMessageSizeBytes?: number | undefined;
2568
2568
  /**
2569
2569
  * <p>The tags used to organize, track, or control access for the resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2570
2570
  * @public
2571
2571
  */
2572
- Tags?: Tag[];
2572
+ Tags?: Tag[] | undefined;
2573
2573
  }
2574
2574
  /**
2575
2575
  * @public
@@ -2650,17 +2650,17 @@ export interface Envelope {
2650
2650
  * <p>The HELO used by the host from which the email was received.</p>
2651
2651
  * @public
2652
2652
  */
2653
- Helo?: string;
2653
+ Helo?: string | undefined;
2654
2654
  /**
2655
2655
  * <p>The RCPT FROM given by the host from which the email was received.</p>
2656
2656
  * @public
2657
2657
  */
2658
- From?: string;
2658
+ From?: string | undefined;
2659
2659
  /**
2660
2660
  * <p>All SMTP TO entries given by the host from which the email was received.</p>
2661
2661
  * @public
2662
2662
  */
2663
- To?: string[];
2663
+ To?: string[] | undefined;
2664
2664
  }
2665
2665
  /**
2666
2666
  * <p>The configuration for exporting email data to an Amazon S3 bucket.</p>
@@ -2671,7 +2671,7 @@ export interface S3ExportDestinationConfiguration {
2671
2671
  * <p>The S3 location to deliver the exported email data.</p>
2672
2672
  * @public
2673
2673
  */
2674
- S3Location?: string;
2674
+ S3Location?: string | undefined;
2675
2675
  }
2676
2676
  /**
2677
2677
  * <p>The destination configuration for delivering exported email data.</p>
@@ -2728,22 +2728,22 @@ export interface ExportStatus {
2728
2728
  * <p>The timestamp of when the export job was submitted.</p>
2729
2729
  * @public
2730
2730
  */
2731
- SubmissionTimestamp?: Date;
2731
+ SubmissionTimestamp?: Date | undefined;
2732
2732
  /**
2733
2733
  * <p>The timestamp of when the export job completed (if finished).</p>
2734
2734
  * @public
2735
2735
  */
2736
- CompletionTimestamp?: Date;
2736
+ CompletionTimestamp?: Date | undefined;
2737
2737
  /**
2738
2738
  * <p>The current state of the export job.</p>
2739
2739
  * @public
2740
2740
  */
2741
- State?: ExportState;
2741
+ State?: ExportState | undefined;
2742
2742
  /**
2743
2743
  * <p>An error message if the export job failed.</p>
2744
2744
  * @public
2745
2745
  */
2746
- ErrorMessage?: string;
2746
+ ErrorMessage?: string | undefined;
2747
2747
  }
2748
2748
  /**
2749
2749
  * <p>Summary statuses of an archive export job.</p>
@@ -2754,12 +2754,12 @@ export interface ExportSummary {
2754
2754
  * <p>The unique identifier of the export job.</p>
2755
2755
  * @public
2756
2756
  */
2757
- ExportId?: string;
2757
+ ExportId?: string | undefined;
2758
2758
  /**
2759
2759
  * <p>The current status of the export job.</p>
2760
2760
  * @public
2761
2761
  */
2762
- Status?: ExportStatus;
2762
+ Status?: ExportStatus | undefined;
2763
2763
  }
2764
2764
  /**
2765
2765
  * <p>The request to retrieve details of a specific archive export job.</p>
@@ -2781,37 +2781,37 @@ export interface GetArchiveExportResponse {
2781
2781
  * <p>The identifier of the archive the email export was performed from.</p>
2782
2782
  * @public
2783
2783
  */
2784
- ArchiveId?: string;
2784
+ ArchiveId?: string | undefined;
2785
2785
  /**
2786
2786
  * <p>The criteria used to filter emails included in the export.</p>
2787
2787
  * @public
2788
2788
  */
2789
- Filters?: ArchiveFilters;
2789
+ Filters?: ArchiveFilters | undefined;
2790
2790
  /**
2791
2791
  * <p>The start of the timestamp range the exported emails cover.</p>
2792
2792
  * @public
2793
2793
  */
2794
- FromTimestamp?: Date;
2794
+ FromTimestamp?: Date | undefined;
2795
2795
  /**
2796
2796
  * <p>The end of the date range the exported emails cover.</p>
2797
2797
  * @public
2798
2798
  */
2799
- ToTimestamp?: Date;
2799
+ ToTimestamp?: Date | undefined;
2800
2800
  /**
2801
2801
  * <p>The maximum number of email items included in the export.</p>
2802
2802
  * @public
2803
2803
  */
2804
- MaxResults?: number;
2804
+ MaxResults?: number | undefined;
2805
2805
  /**
2806
2806
  * <p>Where the exported emails are being delivered.</p>
2807
2807
  * @public
2808
2808
  */
2809
- ExportDestinationConfiguration?: ExportDestinationConfiguration;
2809
+ ExportDestinationConfiguration?: ExportDestinationConfiguration | undefined;
2810
2810
  /**
2811
2811
  * <p>The current status of the export job.</p>
2812
2812
  * @public
2813
2813
  */
2814
- Status?: ExportStatus;
2814
+ Status?: ExportStatus | undefined;
2815
2815
  }
2816
2816
  /**
2817
2817
  * <p>The request to get details of a specific email message stored in an archive.</p>
@@ -2833,42 +2833,42 @@ export interface Metadata {
2833
2833
  * <p>The timestamp of when the email was received.</p>
2834
2834
  * @public
2835
2835
  */
2836
- Timestamp?: Date;
2836
+ Timestamp?: Date | undefined;
2837
2837
  /**
2838
2838
  * <p>The ID of the ingress endpoint through which the email was received.</p>
2839
2839
  * @public
2840
2840
  */
2841
- IngressPointId?: string;
2841
+ IngressPointId?: string | undefined;
2842
2842
  /**
2843
2843
  * <p>The ID of the traffic policy that was in effect when the email was received.</p>
2844
2844
  * @public
2845
2845
  */
2846
- TrafficPolicyId?: string;
2846
+ TrafficPolicyId?: string | undefined;
2847
2847
  /**
2848
2848
  * <p>The ID of the rule set that processed the email.</p>
2849
2849
  * @public
2850
2850
  */
2851
- RuleSetId?: string;
2851
+ RuleSetId?: string | undefined;
2852
2852
  /**
2853
2853
  * <p>The name of the host from which the email was received.</p>
2854
2854
  * @public
2855
2855
  */
2856
- SenderHostname?: string;
2856
+ SenderHostname?: string | undefined;
2857
2857
  /**
2858
2858
  * <p>The IP address of the host from which the email was received.</p>
2859
2859
  * @public
2860
2860
  */
2861
- SenderIpAddress?: string;
2861
+ SenderIpAddress?: string | undefined;
2862
2862
  /**
2863
2863
  * <p>The TLS cipher suite used to communicate with the host from which the email was received.</p>
2864
2864
  * @public
2865
2865
  */
2866
- TlsCipherSuite?: string;
2866
+ TlsCipherSuite?: string | undefined;
2867
2867
  /**
2868
2868
  * <p>The TLS protocol used to communicate with the host from which the email was received.</p>
2869
2869
  * @public
2870
2870
  */
2871
- TlsProtocol?: string;
2871
+ TlsProtocol?: string | undefined;
2872
2872
  }
2873
2873
  /**
2874
2874
  * <p>The response containing details about the requested archived email message.</p>
@@ -2879,17 +2879,17 @@ export interface GetArchiveMessageResponse {
2879
2879
  * <p>A pre-signed URL to temporarily download the full message content.</p>
2880
2880
  * @public
2881
2881
  */
2882
- MessageDownloadLink?: string;
2882
+ MessageDownloadLink?: string | undefined;
2883
2883
  /**
2884
2884
  * <p>The metadata about the email.</p>
2885
2885
  * @public
2886
2886
  */
2887
- Metadata?: Metadata;
2887
+ Metadata?: Metadata | undefined;
2888
2888
  /**
2889
2889
  * <p>The SMTP envelope information of the email.</p>
2890
2890
  * @public
2891
2891
  */
2892
- Envelope?: Envelope;
2892
+ Envelope?: Envelope | undefined;
2893
2893
  }
2894
2894
  /**
2895
2895
  * <p>The request to get the textual content of a specific email message stored in an archive.</p>
@@ -2911,17 +2911,17 @@ export interface MessageBody {
2911
2911
  * <p>The plain text body content of the message.</p>
2912
2912
  * @public
2913
2913
  */
2914
- Text?: string;
2914
+ Text?: string | undefined;
2915
2915
  /**
2916
2916
  * <p>The HTML body content of the message.</p>
2917
2917
  * @public
2918
2918
  */
2919
- Html?: string;
2919
+ Html?: string | undefined;
2920
2920
  /**
2921
2921
  * <p>A flag indicating if the email was malformed.</p>
2922
2922
  * @public
2923
2923
  */
2924
- MessageMalformed?: boolean;
2924
+ MessageMalformed?: boolean | undefined;
2925
2925
  }
2926
2926
  /**
2927
2927
  * <p>The response containing the textual content of the requested archived email message.</p>
@@ -2932,7 +2932,7 @@ export interface GetArchiveMessageContentResponse {
2932
2932
  * <p>The textual body content of the email message.</p>
2933
2933
  * @public
2934
2934
  */
2935
- Body?: MessageBody;
2935
+ Body?: MessageBody | undefined;
2936
2936
  }
2937
2937
  /**
2938
2938
  * <p>The request to retrieve details of a specific archive search job.</p>
@@ -2969,22 +2969,22 @@ export interface SearchStatus {
2969
2969
  * <p>The timestamp of when the search was submitted.</p>
2970
2970
  * @public
2971
2971
  */
2972
- SubmissionTimestamp?: Date;
2972
+ SubmissionTimestamp?: Date | undefined;
2973
2973
  /**
2974
2974
  * <p>The timestamp of when the search completed (if finished).</p>
2975
2975
  * @public
2976
2976
  */
2977
- CompletionTimestamp?: Date;
2977
+ CompletionTimestamp?: Date | undefined;
2978
2978
  /**
2979
2979
  * <p>The current state of the search job.</p>
2980
2980
  * @public
2981
2981
  */
2982
- State?: SearchState;
2982
+ State?: SearchState | undefined;
2983
2983
  /**
2984
2984
  * <p>An error message if the search failed.</p>
2985
2985
  * @public
2986
2986
  */
2987
- ErrorMessage?: string;
2987
+ ErrorMessage?: string | undefined;
2988
2988
  }
2989
2989
  /**
2990
2990
  * <p>The response containing details of the specified archive search job.</p>
@@ -2995,32 +2995,32 @@ export interface GetArchiveSearchResponse {
2995
2995
  * <p>The identifier of the archive the email search was performed in.</p>
2996
2996
  * @public
2997
2997
  */
2998
- ArchiveId?: string;
2998
+ ArchiveId?: string | undefined;
2999
2999
  /**
3000
3000
  * <p>The criteria used to filter emails included in the search.</p>
3001
3001
  * @public
3002
3002
  */
3003
- Filters?: ArchiveFilters;
3003
+ Filters?: ArchiveFilters | undefined;
3004
3004
  /**
3005
3005
  * <p>The start timestamp of the range the searched emails cover.</p>
3006
3006
  * @public
3007
3007
  */
3008
- FromTimestamp?: Date;
3008
+ FromTimestamp?: Date | undefined;
3009
3009
  /**
3010
3010
  * <p>The end timestamp of the range the searched emails cover.</p>
3011
3011
  * @public
3012
3012
  */
3013
- ToTimestamp?: Date;
3013
+ ToTimestamp?: Date | undefined;
3014
3014
  /**
3015
3015
  * <p>The maximum number of search results to return.</p>
3016
3016
  * @public
3017
3017
  */
3018
- MaxResults?: number;
3018
+ MaxResults?: number | undefined;
3019
3019
  /**
3020
3020
  * <p>The current status of the search job.</p>
3021
3021
  * @public
3022
3022
  */
3023
- Status?: SearchStatus;
3023
+ Status?: SearchStatus | undefined;
3024
3024
  }
3025
3025
  /**
3026
3026
  * <p>The request to retrieve results from a completed archive search job.</p>
@@ -3042,92 +3042,92 @@ export interface Row {
3042
3042
  * <p>The unique identifier of the archived message.</p>
3043
3043
  * @public
3044
3044
  */
3045
- ArchivedMessageId?: string;
3045
+ ArchivedMessageId?: string | undefined;
3046
3046
  /**
3047
3047
  * <p>The timestamp of when the email was received.</p>
3048
3048
  * @public
3049
3049
  */
3050
- ReceivedTimestamp?: Date;
3050
+ ReceivedTimestamp?: Date | undefined;
3051
3051
  /**
3052
3052
  * <p>The date the email was sent.</p>
3053
3053
  * @public
3054
3054
  */
3055
- Date?: string;
3055
+ Date?: string | undefined;
3056
3056
  /**
3057
3057
  * <p>The email addresses in the To header.</p>
3058
3058
  * @public
3059
3059
  */
3060
- To?: string;
3060
+ To?: string | undefined;
3061
3061
  /**
3062
3062
  * <p>The email address of the sender.</p>
3063
3063
  * @public
3064
3064
  */
3065
- From?: string;
3065
+ From?: string | undefined;
3066
3066
  /**
3067
3067
  * <p>The email addresses in the CC header.</p>
3068
3068
  * @public
3069
3069
  */
3070
- Cc?: string;
3070
+ Cc?: string | undefined;
3071
3071
  /**
3072
3072
  * <p>The subject header value of the email.</p>
3073
3073
  * @public
3074
3074
  */
3075
- Subject?: string;
3075
+ Subject?: string | undefined;
3076
3076
  /**
3077
3077
  * <p>The unique message ID of the email.</p>
3078
3078
  * @public
3079
3079
  */
3080
- MessageId?: string;
3080
+ MessageId?: string | undefined;
3081
3081
  /**
3082
3082
  * <p>A flag indicating if the email has attachments.</p>
3083
3083
  * @public
3084
3084
  */
3085
- HasAttachments?: boolean;
3085
+ HasAttachments?: boolean | undefined;
3086
3086
  /**
3087
3087
  * <p>The received headers from the email delivery path.</p>
3088
3088
  * @public
3089
3089
  */
3090
- ReceivedHeaders?: string[];
3090
+ ReceivedHeaders?: string[] | undefined;
3091
3091
  /**
3092
3092
  * <p>The email message ID this is a reply to.</p>
3093
3093
  * @public
3094
3094
  */
3095
- InReplyTo?: string;
3095
+ InReplyTo?: string | undefined;
3096
3096
  /**
3097
3097
  * <p>The user agent that sent the email.</p>
3098
3098
  * @public
3099
3099
  */
3100
- XMailer?: string;
3100
+ XMailer?: string | undefined;
3101
3101
  /**
3102
3102
  * <p>The original user agent that sent the email.</p>
3103
3103
  * @public
3104
3104
  */
3105
- XOriginalMailer?: string;
3105
+ XOriginalMailer?: string | undefined;
3106
3106
  /**
3107
3107
  * <p>The priority level of the email.</p>
3108
3108
  * @public
3109
3109
  */
3110
- XPriority?: string;
3110
+ XPriority?: string | undefined;
3111
3111
  /**
3112
3112
  * <p>The ID of the ingress endpoint through which the email was received.</p>
3113
3113
  * @public
3114
3114
  */
3115
- IngressPointId?: string;
3115
+ IngressPointId?: string | undefined;
3116
3116
  /**
3117
3117
  * <p>The name of the host from which the email was received.</p>
3118
3118
  * @public
3119
3119
  */
3120
- SenderHostname?: string;
3120
+ SenderHostname?: string | undefined;
3121
3121
  /**
3122
3122
  * <p>The IP address of the host from which the email was received.</p>
3123
3123
  * @public
3124
3124
  */
3125
- SenderIpAddress?: string;
3125
+ SenderIpAddress?: string | undefined;
3126
3126
  /**
3127
3127
  * <p>The SMTP envelope information of the email.</p>
3128
3128
  * @public
3129
3129
  */
3130
- Envelope?: Envelope;
3130
+ Envelope?: Envelope | undefined;
3131
3131
  }
3132
3132
  /**
3133
3133
  * <p>The response containing search results from a completed archive search.</p>
@@ -3138,7 +3138,7 @@ export interface GetArchiveSearchResultsResponse {
3138
3138
  * <p>The list of email result objects matching the search criteria.</p>
3139
3139
  * @public
3140
3140
  */
3141
- Rows?: Row[];
3141
+ Rows?: Row[] | undefined;
3142
3142
  }
3143
3143
  /**
3144
3144
  * @public
@@ -3159,17 +3159,17 @@ export interface IngressPointPasswordConfiguration {
3159
3159
  * <p>The current password expiry timestamp of the ingress endpoint resource.</p>
3160
3160
  * @public
3161
3161
  */
3162
- SmtpPasswordVersion?: string;
3162
+ SmtpPasswordVersion?: string | undefined;
3163
3163
  /**
3164
3164
  * <p>The previous password version of the ingress endpoint resource.</p>
3165
3165
  * @public
3166
3166
  */
3167
- PreviousSmtpPasswordVersion?: string;
3167
+ PreviousSmtpPasswordVersion?: string | undefined;
3168
3168
  /**
3169
3169
  * <p>The previous password expiry timestamp of the ingress endpoint resource.</p>
3170
3170
  * @public
3171
3171
  */
3172
- PreviousSmtpPasswordExpiryTimestamp?: Date;
3172
+ PreviousSmtpPasswordExpiryTimestamp?: Date | undefined;
3173
3173
  }
3174
3174
  /**
3175
3175
  * <p>The authentication configuration for the ingress endpoint resource.</p>
@@ -3180,13 +3180,13 @@ export interface IngressPointAuthConfiguration {
3180
3180
  * <p>The ingress endpoint password configuration for the ingress endpoint resource.</p>
3181
3181
  * @public
3182
3182
  */
3183
- IngressPointPasswordConfiguration?: IngressPointPasswordConfiguration;
3183
+ IngressPointPasswordConfiguration?: IngressPointPasswordConfiguration | undefined;
3184
3184
  /**
3185
3185
  * <p>The ingress endpoint SecretsManager::Secret ARN configuration for the ingress endpoint
3186
3186
  * resource.</p>
3187
3187
  * @public
3188
3188
  */
3189
- SecretArn?: string;
3189
+ SecretArn?: string | undefined;
3190
3190
  }
3191
3191
  /**
3192
3192
  * @public
@@ -3222,50 +3222,50 @@ export interface GetIngressPointResponse {
3222
3222
  * <p>The Amazon Resource Name (ARN) of the ingress endpoint resource.</p>
3223
3223
  * @public
3224
3224
  */
3225
- IngressPointArn?: string;
3225
+ IngressPointArn?: string | undefined;
3226
3226
  /**
3227
3227
  * <p>The status of the ingress endpoint resource.</p>
3228
3228
  * @public
3229
3229
  */
3230
- Status?: IngressPointStatus;
3230
+ Status?: IngressPointStatus | undefined;
3231
3231
  /**
3232
3232
  * <p>The type of ingress endpoint.</p>
3233
3233
  * @public
3234
3234
  */
3235
- Type?: IngressPointType;
3235
+ Type?: IngressPointType | undefined;
3236
3236
  /**
3237
3237
  * <p>
3238
3238
  * The DNS A Record that identifies your ingress endpoint. Configure your DNS Mail Exchange (MX) record with this value to route emails to Mail Manager.
3239
3239
  * </p>
3240
3240
  * @public
3241
3241
  */
3242
- ARecord?: string;
3242
+ ARecord?: string | undefined;
3243
3243
  /**
3244
3244
  * <p>The identifier of a rule set resource associated with the ingress endpoint.</p>
3245
3245
  * @public
3246
3246
  */
3247
- RuleSetId?: string;
3247
+ RuleSetId?: string | undefined;
3248
3248
  /**
3249
3249
  * <p>The identifier of the traffic policy resource associated with the ingress
3250
3250
  * endpoint.</p>
3251
3251
  * @public
3252
3252
  */
3253
- TrafficPolicyId?: string;
3253
+ TrafficPolicyId?: string | undefined;
3254
3254
  /**
3255
3255
  * <p>The authentication configuration of the ingress endpoint resource.</p>
3256
3256
  * @public
3257
3257
  */
3258
- IngressPointAuthConfiguration?: IngressPointAuthConfiguration;
3258
+ IngressPointAuthConfiguration?: IngressPointAuthConfiguration | undefined;
3259
3259
  /**
3260
3260
  * <p>The timestamp of when the ingress endpoint was created.</p>
3261
3261
  * @public
3262
3262
  */
3263
- CreatedTimestamp?: Date;
3263
+ CreatedTimestamp?: Date | undefined;
3264
3264
  /**
3265
3265
  * <p>The timestamp of when the ingress endpoint was last updated.</p>
3266
3266
  * @public
3267
3267
  */
3268
- LastUpdatedTimestamp?: Date;
3268
+ LastUpdatedTimestamp?: Date | undefined;
3269
3269
  }
3270
3270
  /**
3271
3271
  * @public
@@ -3290,38 +3290,38 @@ export interface GetRelayResponse {
3290
3290
  * <p>The Amazon Resource Name (ARN) of the relay.</p>
3291
3291
  * @public
3292
3292
  */
3293
- RelayArn?: string;
3293
+ RelayArn?: string | undefined;
3294
3294
  /**
3295
3295
  * <p>The unique name of the relay.</p>
3296
3296
  * @public
3297
3297
  */
3298
- RelayName?: string;
3298
+ RelayName?: string | undefined;
3299
3299
  /**
3300
3300
  * <p>The destination relay server address.</p>
3301
3301
  * @public
3302
3302
  */
3303
- ServerName?: string;
3303
+ ServerName?: string | undefined;
3304
3304
  /**
3305
3305
  * <p>The destination relay server port.</p>
3306
3306
  * @public
3307
3307
  */
3308
- ServerPort?: number;
3308
+ ServerPort?: number | undefined;
3309
3309
  /**
3310
3310
  * <p>The authentication attribute—contains the secret ARN where the customer relay
3311
3311
  * server credentials are stored. </p>
3312
3312
  * @public
3313
3313
  */
3314
- Authentication?: RelayAuthentication;
3314
+ Authentication?: RelayAuthentication | undefined;
3315
3315
  /**
3316
3316
  * <p>The timestamp of when the relay was created.</p>
3317
3317
  * @public
3318
3318
  */
3319
- CreatedTimestamp?: Date;
3319
+ CreatedTimestamp?: Date | undefined;
3320
3320
  /**
3321
3321
  * <p>The timestamp of when relay was last updated.</p>
3322
3322
  * @public
3323
3323
  */
3324
- LastModifiedTimestamp?: Date;
3324
+ LastModifiedTimestamp?: Date | undefined;
3325
3325
  }
3326
3326
  /**
3327
3327
  * @public
@@ -3396,33 +3396,33 @@ export interface GetTrafficPolicyResponse {
3396
3396
  * <p>The Amazon Resource Name (ARN) of the traffic policy resource.</p>
3397
3397
  * @public
3398
3398
  */
3399
- TrafficPolicyArn?: string;
3399
+ TrafficPolicyArn?: string | undefined;
3400
3400
  /**
3401
3401
  * <p>The list of conditions which are in the traffic policy resource.</p>
3402
3402
  * @public
3403
3403
  */
3404
- PolicyStatements?: PolicyStatement[];
3404
+ PolicyStatements?: PolicyStatement[] | undefined;
3405
3405
  /**
3406
3406
  * <p>The maximum message size in bytes of email which is allowed in by this traffic
3407
3407
  * policy—anything larger will be blocked.</p>
3408
3408
  * @public
3409
3409
  */
3410
- MaxMessageSizeBytes?: number;
3410
+ MaxMessageSizeBytes?: number | undefined;
3411
3411
  /**
3412
3412
  * <p>The default action of the traffic policy.</p>
3413
3413
  * @public
3414
3414
  */
3415
- DefaultAction?: AcceptAction;
3415
+ DefaultAction?: AcceptAction | undefined;
3416
3416
  /**
3417
3417
  * <p>The timestamp of when the traffic policy was created.</p>
3418
3418
  * @public
3419
3419
  */
3420
- CreatedTimestamp?: Date;
3420
+ CreatedTimestamp?: Date | undefined;
3421
3421
  /**
3422
3422
  * <p>The timestamp of when the traffic policy was last updated.</p>
3423
3423
  * @public
3424
3424
  */
3425
- LastUpdatedTimestamp?: Date;
3425
+ LastUpdatedTimestamp?: Date | undefined;
3426
3426
  }
3427
3427
  /**
3428
3428
  * <p>The structure of an ingress endpoint resource.</p>
@@ -3455,7 +3455,7 @@ export interface IngressPoint {
3455
3455
  * </p>
3456
3456
  * @public
3457
3457
  */
3458
- ARecord?: string;
3458
+ ARecord?: string | undefined;
3459
3459
  }
3460
3460
  /**
3461
3461
  * @public
@@ -3466,12 +3466,12 @@ export interface ListIngressPointsRequest {
3466
3466
  * use NextToken to obtain further ingress endpoints.</p>
3467
3467
  * @public
3468
3468
  */
3469
- PageSize?: number;
3469
+ PageSize?: number | undefined;
3470
3470
  /**
3471
3471
  * <p>If you received a pagination token from a previous call to this API, you can provide it here to continue paginating through the next page of results.</p>
3472
3472
  * @public
3473
3473
  */
3474
- NextToken?: string;
3474
+ NextToken?: string | undefined;
3475
3475
  }
3476
3476
  /**
3477
3477
  * @public
@@ -3481,12 +3481,12 @@ export interface ListIngressPointsResponse {
3481
3481
  * <p>The list of ingress endpoints.</p>
3482
3482
  * @public
3483
3483
  */
3484
- IngressPoints?: IngressPoint[];
3484
+ IngressPoints?: IngressPoint[] | undefined;
3485
3485
  /**
3486
3486
  * <p>If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.</p>
3487
3487
  * @public
3488
3488
  */
3489
- NextToken?: string;
3489
+ NextToken?: string | undefined;
3490
3490
  }
3491
3491
  /**
3492
3492
  * @public
@@ -3513,30 +3513,30 @@ export interface UpdateIngressPointRequest {
3513
3513
  * <p>A user friendly name for the ingress endpoint resource.</p>
3514
3514
  * @public
3515
3515
  */
3516
- IngressPointName?: string;
3516
+ IngressPointName?: string | undefined;
3517
3517
  /**
3518
3518
  * <p>The update status of an ingress endpoint.</p>
3519
3519
  * @public
3520
3520
  */
3521
- StatusToUpdate?: IngressPointStatusToUpdate;
3521
+ StatusToUpdate?: IngressPointStatusToUpdate | undefined;
3522
3522
  /**
3523
3523
  * <p>The identifier of an existing rule set that you attach to an ingress endpoint
3524
3524
  * resource.</p>
3525
3525
  * @public
3526
3526
  */
3527
- RuleSetId?: string;
3527
+ RuleSetId?: string | undefined;
3528
3528
  /**
3529
3529
  * <p>The identifier of an existing traffic policy that you attach to an ingress endpoint
3530
3530
  * resource.</p>
3531
3531
  * @public
3532
3532
  */
3533
- TrafficPolicyId?: string;
3533
+ TrafficPolicyId?: string | undefined;
3534
3534
  /**
3535
3535
  * <p>If you choose an Authenticated ingress endpoint, you must configure either an SMTP password or a secret
3536
3536
  * ARN.</p>
3537
3537
  * @public
3538
3538
  */
3539
- IngressPointConfiguration?: IngressPointConfiguration;
3539
+ IngressPointConfiguration?: IngressPointConfiguration | undefined;
3540
3540
  }
3541
3541
  /**
3542
3542
  * @public
@@ -3559,14 +3559,14 @@ export interface ListArchiveExportsRequest {
3559
3559
  * </p>
3560
3560
  * @public
3561
3561
  */
3562
- NextToken?: string;
3562
+ NextToken?: string | undefined;
3563
3563
  /**
3564
3564
  * <p>The maximum number of archive export jobs that are returned per call. You can use NextToken to obtain
3565
3565
  * further pages of archives.
3566
3566
  * </p>
3567
3567
  * @public
3568
3568
  */
3569
- PageSize?: number;
3569
+ PageSize?: number | undefined;
3570
3570
  }
3571
3571
  /**
3572
3572
  * <p>The response containing a list of archive export jobs and their statuses.</p>
@@ -3577,12 +3577,12 @@ export interface ListArchiveExportsResponse {
3577
3577
  * <p>The list of export job identifiers and statuses.</p>
3578
3578
  * @public
3579
3579
  */
3580
- Exports?: ExportSummary[];
3580
+ Exports?: ExportSummary[] | undefined;
3581
3581
  /**
3582
3582
  * <p>If present, use to retrieve the next page of results.</p>
3583
3583
  * @public
3584
3584
  */
3585
- NextToken?: string;
3585
+ NextToken?: string | undefined;
3586
3586
  }
3587
3587
  /**
3588
3588
  * <p>The request to list archive search jobs in your account.</p>
@@ -3600,14 +3600,14 @@ export interface ListArchiveSearchesRequest {
3600
3600
  * </p>
3601
3601
  * @public
3602
3602
  */
3603
- NextToken?: string;
3603
+ NextToken?: string | undefined;
3604
3604
  /**
3605
3605
  * <p>The maximum number of archive search jobs that are returned per call. You can use NextToken to obtain
3606
3606
  * further pages of archives.
3607
3607
  * </p>
3608
3608
  * @public
3609
3609
  */
3610
- PageSize?: number;
3610
+ PageSize?: number | undefined;
3611
3611
  }
3612
3612
  /**
3613
3613
  * <p>Summary details of an archive search job.</p>
@@ -3618,12 +3618,12 @@ export interface SearchSummary {
3618
3618
  * <p>The unique identifier of the search job.</p>
3619
3619
  * @public
3620
3620
  */
3621
- SearchId?: string;
3621
+ SearchId?: string | undefined;
3622
3622
  /**
3623
3623
  * <p>The current status of the search job.</p>
3624
3624
  * @public
3625
3625
  */
3626
- Status?: SearchStatus;
3626
+ Status?: SearchStatus | undefined;
3627
3627
  }
3628
3628
  /**
3629
3629
  * <p>The response containing a list of archive search jobs and their statuses.</p>
@@ -3634,12 +3634,12 @@ export interface ListArchiveSearchesResponse {
3634
3634
  * <p>The list of search job identifiers and statuses.</p>
3635
3635
  * @public
3636
3636
  */
3637
- Searches?: SearchSummary[];
3637
+ Searches?: SearchSummary[] | undefined;
3638
3638
  /**
3639
3639
  * <p>If present, use to retrieve the next page of results.</p>
3640
3640
  * @public
3641
3641
  */
3642
- NextToken?: string;
3642
+ NextToken?: string | undefined;
3643
3643
  }
3644
3644
  /**
3645
3645
  * @public
@@ -3649,12 +3649,12 @@ export interface ListRelaysRequest {
3649
3649
  * <p>The number of relays to be returned in one request.</p>
3650
3650
  * @public
3651
3651
  */
3652
- PageSize?: number;
3652
+ PageSize?: number | undefined;
3653
3653
  /**
3654
3654
  * <p>If you received a pagination token from a previous call to this API, you can provide it here to continue paginating through the next page of results.</p>
3655
3655
  * @public
3656
3656
  */
3657
- NextToken?: string;
3657
+ NextToken?: string | undefined;
3658
3658
  }
3659
3659
  /**
3660
3660
  * <p>The relay resource that can be used as a rule to relay receiving emails to the destination
@@ -3666,17 +3666,17 @@ export interface Relay {
3666
3666
  * <p>The unique relay identifier.</p>
3667
3667
  * @public
3668
3668
  */
3669
- RelayId?: string;
3669
+ RelayId?: string | undefined;
3670
3670
  /**
3671
3671
  * <p>The unique relay name.</p>
3672
3672
  * @public
3673
3673
  */
3674
- RelayName?: string;
3674
+ RelayName?: string | undefined;
3675
3675
  /**
3676
3676
  * <p>The timestamp of when the relay was last modified.</p>
3677
3677
  * @public
3678
3678
  */
3679
- LastModifiedTimestamp?: Date;
3679
+ LastModifiedTimestamp?: Date | undefined;
3680
3680
  }
3681
3681
  /**
3682
3682
  * @public
@@ -3691,7 +3691,7 @@ export interface ListRelaysResponse {
3691
3691
  * <p>If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.</p>
3692
3692
  * @public
3693
3693
  */
3694
- NextToken?: string;
3694
+ NextToken?: string | undefined;
3695
3695
  }
3696
3696
  /**
3697
3697
  * @public
@@ -3701,13 +3701,13 @@ export interface ListRuleSetsRequest {
3701
3701
  * <p>If you received a pagination token from a previous call to this API, you can provide it here to continue paginating through the next page of results.</p>
3702
3702
  * @public
3703
3703
  */
3704
- NextToken?: string;
3704
+ NextToken?: string | undefined;
3705
3705
  /**
3706
3706
  * <p>The maximum number of rule set resources that are returned per call. You can use
3707
3707
  * NextToken to obtain further rule sets.</p>
3708
3708
  * @public
3709
3709
  */
3710
- PageSize?: number;
3710
+ PageSize?: number | undefined;
3711
3711
  }
3712
3712
  /**
3713
3713
  * <p>A rule set contains a list of rules that are evaluated in order. Each rule is
@@ -3719,17 +3719,17 @@ export interface RuleSet {
3719
3719
  * <p>The identifier of the rule set.</p>
3720
3720
  * @public
3721
3721
  */
3722
- RuleSetId?: string;
3722
+ RuleSetId?: string | undefined;
3723
3723
  /**
3724
3724
  * <p>A user-friendly name for the rule set.</p>
3725
3725
  * @public
3726
3726
  */
3727
- RuleSetName?: string;
3727
+ RuleSetName?: string | undefined;
3728
3728
  /**
3729
3729
  * <p>The last modification date of the rule set.</p>
3730
3730
  * @public
3731
3731
  */
3732
- LastModificationDate?: Date;
3732
+ LastModificationDate?: Date | undefined;
3733
3733
  }
3734
3734
  /**
3735
3735
  * @public
@@ -3744,7 +3744,7 @@ export interface ListRuleSetsResponse {
3744
3744
  * <p>If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.</p>
3745
3745
  * @public
3746
3746
  */
3747
- NextToken?: string;
3747
+ NextToken?: string | undefined;
3748
3748
  }
3749
3749
  /**
3750
3750
  * @public
@@ -3775,12 +3775,12 @@ export interface ListTrafficPoliciesRequest {
3775
3775
  * NextToken to obtain further traffic policies.</p>
3776
3776
  * @public
3777
3777
  */
3778
- PageSize?: number;
3778
+ PageSize?: number | undefined;
3779
3779
  /**
3780
3780
  * <p>If you received a pagination token from a previous call to this API, you can provide it here to continue paginating through the next page of results.</p>
3781
3781
  * @public
3782
3782
  */
3783
- NextToken?: string;
3783
+ NextToken?: string | undefined;
3784
3784
  }
3785
3785
  /**
3786
3786
  * <p>The structure of a traffic policy resource which is a container for policy
@@ -3812,12 +3812,12 @@ export interface ListTrafficPoliciesResponse {
3812
3812
  * <p>The list of traffic policies.</p>
3813
3813
  * @public
3814
3814
  */
3815
- TrafficPolicies?: TrafficPolicy[];
3815
+ TrafficPolicies?: TrafficPolicy[] | undefined;
3816
3816
  /**
3817
3817
  * <p>If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.</p>
3818
3818
  * @public
3819
3819
  */
3820
- NextToken?: string;
3820
+ NextToken?: string | undefined;
3821
3821
  }
3822
3822
  /**
3823
3823
  * @public
@@ -3832,23 +3832,23 @@ export interface UpdateRelayRequest {
3832
3832
  * <p>The name of the relay resource.</p>
3833
3833
  * @public
3834
3834
  */
3835
- RelayName?: string;
3835
+ RelayName?: string | undefined;
3836
3836
  /**
3837
3837
  * <p>The destination relay server address.</p>
3838
3838
  * @public
3839
3839
  */
3840
- ServerName?: string;
3840
+ ServerName?: string | undefined;
3841
3841
  /**
3842
3842
  * <p>The destination relay server port.</p>
3843
3843
  * @public
3844
3844
  */
3845
- ServerPort?: number;
3845
+ ServerPort?: number | undefined;
3846
3846
  /**
3847
3847
  * <p>Authentication for the relay destination server—specify the secretARN where
3848
3848
  * the SMTP credentials are stored.</p>
3849
3849
  * @public
3850
3850
  */
3851
- Authentication?: RelayAuthentication;
3851
+ Authentication?: RelayAuthentication | undefined;
3852
3852
  }
3853
3853
  /**
3854
3854
  * @public
@@ -3868,13 +3868,13 @@ export interface UpdateRuleSetRequest {
3868
3868
  * <p>A user-friendly name for the rule set resource.</p>
3869
3869
  * @public
3870
3870
  */
3871
- RuleSetName?: string;
3871
+ RuleSetName?: string | undefined;
3872
3872
  /**
3873
3873
  * <p>A new set of rules to replace the current rules of the rule set—these rules will
3874
3874
  * override all the rules of the rule set.</p>
3875
3875
  * @public
3876
3876
  */
3877
- Rules?: Rule[];
3877
+ Rules?: Rule[] | undefined;
3878
3878
  }
3879
3879
  /**
3880
3880
  * @public
@@ -3895,7 +3895,7 @@ export interface StartArchiveExportRequest {
3895
3895
  * <p>Criteria to filter which emails are included in the export.</p>
3896
3896
  * @public
3897
3897
  */
3898
- Filters?: ArchiveFilters;
3898
+ Filters?: ArchiveFilters | undefined;
3899
3899
  /**
3900
3900
  * <p>The start of the timestamp range to include emails from.</p>
3901
3901
  * @public
@@ -3910,7 +3910,7 @@ export interface StartArchiveExportRequest {
3910
3910
  * <p>The maximum number of email items to include in the export.</p>
3911
3911
  * @public
3912
3912
  */
3913
- MaxResults?: number;
3913
+ MaxResults?: number | undefined;
3914
3914
  /**
3915
3915
  * <p>Details on where to deliver the exported email data.</p>
3916
3916
  * @public
@@ -3920,7 +3920,7 @@ export interface StartArchiveExportRequest {
3920
3920
  * <p>Whether to include message metadata as JSON files in the export.</p>
3921
3921
  * @public
3922
3922
  */
3923
- IncludeMetadata?: boolean;
3923
+ IncludeMetadata?: boolean | undefined;
3924
3924
  }
3925
3925
  /**
3926
3926
  * <p>The response from initiating an archive export.</p>
@@ -3931,7 +3931,7 @@ export interface StartArchiveExportResponse {
3931
3931
  * <p>The unique identifier for the initiated export job.</p>
3932
3932
  * @public
3933
3933
  */
3934
- ExportId?: string;
3934
+ ExportId?: string | undefined;
3935
3935
  }
3936
3936
  /**
3937
3937
  * <p>The request to initiate a search across emails in an archive.</p>
@@ -3947,7 +3947,7 @@ export interface StartArchiveSearchRequest {
3947
3947
  * <p>Criteria to filter which emails are included in the search results.</p>
3948
3948
  * @public
3949
3949
  */
3950
- Filters?: ArchiveFilters;
3950
+ Filters?: ArchiveFilters | undefined;
3951
3951
  /**
3952
3952
  * <p>The start timestamp of the range to search emails from.</p>
3953
3953
  * @public
@@ -3973,7 +3973,7 @@ export interface StartArchiveSearchResponse {
3973
3973
  * <p>The unique identifier for the initiated search job.</p>
3974
3974
  * @public
3975
3975
  */
3976
- SearchId?: string;
3976
+ SearchId?: string | undefined;
3977
3977
  }
3978
3978
  /**
3979
3979
  * <p>The request to stop an in-progress archive export job.</p>
@@ -4044,23 +4044,23 @@ export interface UpdateTrafficPolicyRequest {
4044
4044
  * <p>A user-friendly name for the traffic policy resource.</p>
4045
4045
  * @public
4046
4046
  */
4047
- TrafficPolicyName?: string;
4047
+ TrafficPolicyName?: string | undefined;
4048
4048
  /**
4049
4049
  * <p>The list of conditions to be updated for filtering email traffic.</p>
4050
4050
  * @public
4051
4051
  */
4052
- PolicyStatements?: PolicyStatement[];
4052
+ PolicyStatements?: PolicyStatement[] | undefined;
4053
4053
  /**
4054
4054
  * <p>Default action instructs the traffic policy to either Allow or Deny (block) messages that fall outside of (or not addressed by) the conditions of your policy statements</p>
4055
4055
  * @public
4056
4056
  */
4057
- DefaultAction?: AcceptAction;
4057
+ DefaultAction?: AcceptAction | undefined;
4058
4058
  /**
4059
4059
  * <p>The maximum message size in bytes of email which is allowed in by this traffic
4060
4060
  * policy—anything larger will be blocked.</p>
4061
4061
  * @public
4062
4062
  */
4063
- MaxMessageSizeBytes?: number;
4063
+ MaxMessageSizeBytes?: number | undefined;
4064
4064
  }
4065
4065
  /**
4066
4066
  * @public