@aws-sdk/client-mailmanager 3.687.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.
- package/dist-types/models/models_0.d.ts +213 -213
- package/dist-types/ts3.4/models/models_0.d.ts +215 -213
- package/package.json +7 -7
|
@@ -8,7 +8,7 @@ export type AcceptAction = (typeof AcceptAction)[keyof typeof AcceptAction];
|
|
|
8
8
|
export declare class AccessDeniedException extends __BaseException {
|
|
9
9
|
readonly name: "AccessDeniedException";
|
|
10
10
|
readonly $fault: "client";
|
|
11
|
-
Message?: string;
|
|
11
|
+
Message?: string | undefined;
|
|
12
12
|
constructor(
|
|
13
13
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
14
14
|
);
|
|
@@ -24,16 +24,16 @@ export interface AddHeaderAction {
|
|
|
24
24
|
HeaderValue: string | undefined;
|
|
25
25
|
}
|
|
26
26
|
export interface AddonInstance {
|
|
27
|
-
AddonInstanceId?: string;
|
|
28
|
-
AddonSubscriptionId?: string;
|
|
29
|
-
AddonName?: string;
|
|
30
|
-
AddonInstanceArn?: string;
|
|
31
|
-
CreatedTimestamp?: Date;
|
|
27
|
+
AddonInstanceId?: string | undefined;
|
|
28
|
+
AddonSubscriptionId?: string | undefined;
|
|
29
|
+
AddonName?: string | undefined;
|
|
30
|
+
AddonInstanceArn?: string | undefined;
|
|
31
|
+
CreatedTimestamp?: Date | undefined;
|
|
32
32
|
}
|
|
33
33
|
export declare class ConflictException extends __BaseException {
|
|
34
34
|
readonly name: "ConflictException";
|
|
35
35
|
readonly $fault: "client";
|
|
36
|
-
Message?: string;
|
|
36
|
+
Message?: string | undefined;
|
|
37
37
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
38
38
|
}
|
|
39
39
|
export interface Tag {
|
|
@@ -41,9 +41,9 @@ export interface Tag {
|
|
|
41
41
|
Value: string | undefined;
|
|
42
42
|
}
|
|
43
43
|
export interface CreateAddonInstanceRequest {
|
|
44
|
-
ClientToken?: string;
|
|
44
|
+
ClientToken?: string | undefined;
|
|
45
45
|
AddonSubscriptionId: string | undefined;
|
|
46
|
-
Tags?: Tag[];
|
|
46
|
+
Tags?: Tag[] | undefined;
|
|
47
47
|
}
|
|
48
48
|
export interface CreateAddonInstanceResponse {
|
|
49
49
|
AddonInstanceId: string | undefined;
|
|
@@ -51,7 +51,7 @@ export interface CreateAddonInstanceResponse {
|
|
|
51
51
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
52
52
|
readonly name: "ResourceNotFoundException";
|
|
53
53
|
readonly $fault: "client";
|
|
54
|
-
Message?: string;
|
|
54
|
+
Message?: string | undefined;
|
|
55
55
|
constructor(
|
|
56
56
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
57
57
|
);
|
|
@@ -59,7 +59,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
59
59
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
60
60
|
readonly name: "ServiceQuotaExceededException";
|
|
61
61
|
readonly $fault: "client";
|
|
62
|
-
Message?: string;
|
|
62
|
+
Message?: string | undefined;
|
|
63
63
|
constructor(
|
|
64
64
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
65
65
|
);
|
|
@@ -67,7 +67,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
67
67
|
export declare class ValidationException extends __BaseException {
|
|
68
68
|
readonly name: "ValidationException";
|
|
69
69
|
readonly $fault: "client";
|
|
70
|
-
Message?: string;
|
|
70
|
+
Message?: string | undefined;
|
|
71
71
|
constructor(
|
|
72
72
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
73
73
|
);
|
|
@@ -80,29 +80,29 @@ export interface GetAddonInstanceRequest {
|
|
|
80
80
|
AddonInstanceId: string | undefined;
|
|
81
81
|
}
|
|
82
82
|
export interface GetAddonInstanceResponse {
|
|
83
|
-
AddonSubscriptionId?: string;
|
|
84
|
-
AddonName?: string;
|
|
85
|
-
AddonInstanceArn?: string;
|
|
86
|
-
CreatedTimestamp?: Date;
|
|
83
|
+
AddonSubscriptionId?: string | undefined;
|
|
84
|
+
AddonName?: string | undefined;
|
|
85
|
+
AddonInstanceArn?: string | undefined;
|
|
86
|
+
CreatedTimestamp?: Date | undefined;
|
|
87
87
|
}
|
|
88
88
|
export interface ListAddonInstancesRequest {
|
|
89
|
-
NextToken?: string;
|
|
90
|
-
PageSize?: number;
|
|
89
|
+
NextToken?: string | undefined;
|
|
90
|
+
PageSize?: number | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface ListAddonInstancesResponse {
|
|
93
|
-
AddonInstances?: AddonInstance[];
|
|
94
|
-
NextToken?: string;
|
|
93
|
+
AddonInstances?: AddonInstance[] | undefined;
|
|
94
|
+
NextToken?: string | undefined;
|
|
95
95
|
}
|
|
96
96
|
export interface AddonSubscription {
|
|
97
|
-
AddonSubscriptionId?: string;
|
|
98
|
-
AddonName?: string;
|
|
99
|
-
AddonSubscriptionArn?: string;
|
|
100
|
-
CreatedTimestamp?: Date;
|
|
97
|
+
AddonSubscriptionId?: string | undefined;
|
|
98
|
+
AddonName?: string | undefined;
|
|
99
|
+
AddonSubscriptionArn?: string | undefined;
|
|
100
|
+
CreatedTimestamp?: Date | undefined;
|
|
101
101
|
}
|
|
102
102
|
export interface CreateAddonSubscriptionRequest {
|
|
103
|
-
ClientToken?: string;
|
|
103
|
+
ClientToken?: string | undefined;
|
|
104
104
|
AddonName: string | undefined;
|
|
105
|
-
Tags?: Tag[];
|
|
105
|
+
Tags?: Tag[] | undefined;
|
|
106
106
|
}
|
|
107
107
|
export interface CreateAddonSubscriptionResponse {
|
|
108
108
|
AddonSubscriptionId: string | undefined;
|
|
@@ -115,17 +115,17 @@ export interface GetAddonSubscriptionRequest {
|
|
|
115
115
|
AddonSubscriptionId: string | undefined;
|
|
116
116
|
}
|
|
117
117
|
export interface GetAddonSubscriptionResponse {
|
|
118
|
-
AddonName?: string;
|
|
119
|
-
AddonSubscriptionArn?: string;
|
|
120
|
-
CreatedTimestamp?: Date;
|
|
118
|
+
AddonName?: string | undefined;
|
|
119
|
+
AddonSubscriptionArn?: string | undefined;
|
|
120
|
+
CreatedTimestamp?: Date | undefined;
|
|
121
121
|
}
|
|
122
122
|
export interface ListAddonSubscriptionsRequest {
|
|
123
|
-
NextToken?: string;
|
|
124
|
-
PageSize?: number;
|
|
123
|
+
NextToken?: string | undefined;
|
|
124
|
+
PageSize?: number | undefined;
|
|
125
125
|
}
|
|
126
126
|
export interface ListAddonSubscriptionsResponse {
|
|
127
|
-
AddonSubscriptions?: AddonSubscription[];
|
|
128
|
-
NextToken?: string;
|
|
127
|
+
AddonSubscriptions?: AddonSubscription[] | undefined;
|
|
128
|
+
NextToken?: string | undefined;
|
|
129
129
|
}
|
|
130
130
|
export interface Analysis {
|
|
131
131
|
Analyzer: string | undefined;
|
|
@@ -138,12 +138,12 @@ export declare const ArchiveState: {
|
|
|
138
138
|
export type ArchiveState = (typeof ArchiveState)[keyof typeof ArchiveState];
|
|
139
139
|
export interface Archive {
|
|
140
140
|
ArchiveId: string | undefined;
|
|
141
|
-
ArchiveName?: string;
|
|
142
|
-
ArchiveState?: ArchiveState;
|
|
143
|
-
LastUpdatedTimestamp?: Date;
|
|
141
|
+
ArchiveName?: string | undefined;
|
|
142
|
+
ArchiveState?: ArchiveState | undefined;
|
|
143
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
144
144
|
}
|
|
145
145
|
export interface ArchiveAction {
|
|
146
|
-
ActionFailurePolicy?: ActionFailurePolicy;
|
|
146
|
+
ActionFailurePolicy?: ActionFailurePolicy | undefined;
|
|
147
147
|
TargetArchive: string | undefined;
|
|
148
148
|
}
|
|
149
149
|
export declare const ArchiveBooleanEmailAttribute: {
|
|
@@ -245,8 +245,8 @@ export declare namespace ArchiveFilterCondition {
|
|
|
245
245
|
const visit: <T>(value: ArchiveFilterCondition, visitor: Visitor<T>) => T;
|
|
246
246
|
}
|
|
247
247
|
export interface ArchiveFilters {
|
|
248
|
-
Include?: ArchiveFilterCondition[];
|
|
249
|
-
Unless?: ArchiveFilterCondition[];
|
|
248
|
+
Include?: ArchiveFilterCondition[] | undefined;
|
|
249
|
+
Unless?: ArchiveFilterCondition[] | undefined;
|
|
250
250
|
}
|
|
251
251
|
export declare const RetentionPeriod: {
|
|
252
252
|
readonly EIGHTEEN_MONTHS: "EIGHTEEN_MONTHS";
|
|
@@ -287,11 +287,11 @@ export declare namespace ArchiveRetention {
|
|
|
287
287
|
const visit: <T>(value: ArchiveRetention, visitor: Visitor<T>) => T;
|
|
288
288
|
}
|
|
289
289
|
export interface CreateArchiveRequest {
|
|
290
|
-
ClientToken?: string;
|
|
290
|
+
ClientToken?: string | undefined;
|
|
291
291
|
ArchiveName: string | undefined;
|
|
292
|
-
Retention?: ArchiveRetention;
|
|
293
|
-
KmsKeyArn?: string;
|
|
294
|
-
Tags?: Tag[];
|
|
292
|
+
Retention?: ArchiveRetention | undefined;
|
|
293
|
+
KmsKeyArn?: string | undefined;
|
|
294
|
+
Tags?: Tag[] | undefined;
|
|
295
295
|
}
|
|
296
296
|
export interface CreateArchiveResponse {
|
|
297
297
|
ArchiveId: string | undefined;
|
|
@@ -299,7 +299,7 @@ export interface CreateArchiveResponse {
|
|
|
299
299
|
export declare class ThrottlingException extends __BaseException {
|
|
300
300
|
readonly name: "ThrottlingException";
|
|
301
301
|
readonly $fault: "client";
|
|
302
|
-
Message?: string;
|
|
302
|
+
Message?: string | undefined;
|
|
303
303
|
constructor(
|
|
304
304
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
305
305
|
);
|
|
@@ -317,22 +317,22 @@ export interface GetArchiveResponse {
|
|
|
317
317
|
ArchiveArn: string | undefined;
|
|
318
318
|
ArchiveState: ArchiveState | undefined;
|
|
319
319
|
Retention: ArchiveRetention | undefined;
|
|
320
|
-
CreatedTimestamp?: Date;
|
|
321
|
-
LastUpdatedTimestamp?: Date;
|
|
322
|
-
KmsKeyArn?: string;
|
|
320
|
+
CreatedTimestamp?: Date | undefined;
|
|
321
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
322
|
+
KmsKeyArn?: string | undefined;
|
|
323
323
|
}
|
|
324
324
|
export interface ListArchivesRequest {
|
|
325
|
-
NextToken?: string;
|
|
326
|
-
PageSize?: number;
|
|
325
|
+
NextToken?: string | undefined;
|
|
326
|
+
PageSize?: number | undefined;
|
|
327
327
|
}
|
|
328
328
|
export interface ListArchivesResponse {
|
|
329
329
|
Archives: Archive[] | undefined;
|
|
330
|
-
NextToken?: string;
|
|
330
|
+
NextToken?: string | undefined;
|
|
331
331
|
}
|
|
332
332
|
export interface UpdateArchiveRequest {
|
|
333
333
|
ArchiveId: string | undefined;
|
|
334
|
-
ArchiveName?: string;
|
|
335
|
-
Retention?: ArchiveRetention;
|
|
334
|
+
ArchiveName?: string | undefined;
|
|
335
|
+
Retention?: ArchiveRetention | undefined;
|
|
336
336
|
}
|
|
337
337
|
export interface UpdateArchiveResponse {}
|
|
338
338
|
export type IngressPointConfiguration =
|
|
@@ -369,13 +369,13 @@ export declare const IngressPointType: {
|
|
|
369
369
|
export type IngressPointType =
|
|
370
370
|
(typeof IngressPointType)[keyof typeof IngressPointType];
|
|
371
371
|
export interface CreateIngressPointRequest {
|
|
372
|
-
ClientToken?: string;
|
|
372
|
+
ClientToken?: string | undefined;
|
|
373
373
|
IngressPointName: string | undefined;
|
|
374
374
|
Type: IngressPointType | undefined;
|
|
375
375
|
RuleSetId: string | undefined;
|
|
376
376
|
TrafficPolicyId: string | undefined;
|
|
377
|
-
IngressPointConfiguration?: IngressPointConfiguration;
|
|
378
|
-
Tags?: Tag[];
|
|
377
|
+
IngressPointConfiguration?: IngressPointConfiguration | undefined;
|
|
378
|
+
Tags?: Tag[] | undefined;
|
|
379
379
|
}
|
|
380
380
|
export interface CreateIngressPointResponse {
|
|
381
381
|
IngressPointId: string | undefined;
|
|
@@ -409,18 +409,18 @@ export declare namespace RelayAuthentication {
|
|
|
409
409
|
const visit: <T>(value: RelayAuthentication, visitor: Visitor<T>) => T;
|
|
410
410
|
}
|
|
411
411
|
export interface CreateRelayRequest {
|
|
412
|
-
ClientToken?: string;
|
|
412
|
+
ClientToken?: string | undefined;
|
|
413
413
|
RelayName: string | undefined;
|
|
414
414
|
ServerName: string | undefined;
|
|
415
415
|
ServerPort: number | undefined;
|
|
416
416
|
Authentication: RelayAuthentication | undefined;
|
|
417
|
-
Tags?: Tag[];
|
|
417
|
+
Tags?: Tag[] | undefined;
|
|
418
418
|
}
|
|
419
419
|
export interface CreateRelayResponse {
|
|
420
420
|
RelayId: string | undefined;
|
|
421
421
|
}
|
|
422
422
|
export interface DeliverToMailboxAction {
|
|
423
|
-
ActionFailurePolicy?: ActionFailurePolicy;
|
|
423
|
+
ActionFailurePolicy?: ActionFailurePolicy | undefined;
|
|
424
424
|
MailboxArn: string | undefined;
|
|
425
425
|
RoleArn: string | undefined;
|
|
426
426
|
}
|
|
@@ -431,23 +431,23 @@ export declare const MailFrom: {
|
|
|
431
431
|
};
|
|
432
432
|
export type MailFrom = (typeof MailFrom)[keyof typeof MailFrom];
|
|
433
433
|
export interface RelayAction {
|
|
434
|
-
ActionFailurePolicy?: ActionFailurePolicy;
|
|
434
|
+
ActionFailurePolicy?: ActionFailurePolicy | undefined;
|
|
435
435
|
Relay: string | undefined;
|
|
436
|
-
MailFrom?: MailFrom;
|
|
436
|
+
MailFrom?: MailFrom | undefined;
|
|
437
437
|
}
|
|
438
438
|
export interface ReplaceRecipientAction {
|
|
439
|
-
ReplaceWith?: string[];
|
|
439
|
+
ReplaceWith?: string[] | undefined;
|
|
440
440
|
}
|
|
441
441
|
export interface SendAction {
|
|
442
|
-
ActionFailurePolicy?: ActionFailurePolicy;
|
|
442
|
+
ActionFailurePolicy?: ActionFailurePolicy | undefined;
|
|
443
443
|
RoleArn: string | undefined;
|
|
444
444
|
}
|
|
445
445
|
export interface S3Action {
|
|
446
|
-
ActionFailurePolicy?: ActionFailurePolicy;
|
|
446
|
+
ActionFailurePolicy?: ActionFailurePolicy | undefined;
|
|
447
447
|
RoleArn: string | undefined;
|
|
448
448
|
S3Bucket: string | undefined;
|
|
449
|
-
S3Prefix?: string;
|
|
450
|
-
S3SseKmsKeyId?: string;
|
|
449
|
+
S3Prefix?: string | undefined;
|
|
450
|
+
S3SseKmsKeyId?: string | undefined;
|
|
451
451
|
}
|
|
452
452
|
export type RuleAction =
|
|
453
453
|
| RuleAction.AddHeaderMember
|
|
@@ -884,16 +884,16 @@ export declare namespace RuleCondition {
|
|
|
884
884
|
const visit: <T>(value: RuleCondition, visitor: Visitor<T>) => T;
|
|
885
885
|
}
|
|
886
886
|
export interface Rule {
|
|
887
|
-
Name?: string;
|
|
888
|
-
Conditions?: RuleCondition[];
|
|
889
|
-
Unless?: RuleCondition[];
|
|
887
|
+
Name?: string | undefined;
|
|
888
|
+
Conditions?: RuleCondition[] | undefined;
|
|
889
|
+
Unless?: RuleCondition[] | undefined;
|
|
890
890
|
Actions: RuleAction[] | undefined;
|
|
891
891
|
}
|
|
892
892
|
export interface CreateRuleSetRequest {
|
|
893
|
-
ClientToken?: string;
|
|
893
|
+
ClientToken?: string | undefined;
|
|
894
894
|
RuleSetName: string | undefined;
|
|
895
895
|
Rules: Rule[] | undefined;
|
|
896
|
-
Tags?: Tag[];
|
|
896
|
+
Tags?: Tag[] | undefined;
|
|
897
897
|
}
|
|
898
898
|
export interface CreateRuleSetResponse {
|
|
899
899
|
RuleSetId: string | undefined;
|
|
@@ -1100,12 +1100,12 @@ export interface PolicyStatement {
|
|
|
1100
1100
|
Action: AcceptAction | undefined;
|
|
1101
1101
|
}
|
|
1102
1102
|
export interface CreateTrafficPolicyRequest {
|
|
1103
|
-
ClientToken?: string;
|
|
1103
|
+
ClientToken?: string | undefined;
|
|
1104
1104
|
TrafficPolicyName: string | undefined;
|
|
1105
1105
|
PolicyStatements: PolicyStatement[] | undefined;
|
|
1106
1106
|
DefaultAction: AcceptAction | undefined;
|
|
1107
|
-
MaxMessageSizeBytes?: number;
|
|
1108
|
-
Tags?: Tag[];
|
|
1107
|
+
MaxMessageSizeBytes?: number | undefined;
|
|
1108
|
+
Tags?: Tag[] | undefined;
|
|
1109
1109
|
}
|
|
1110
1110
|
export interface CreateTrafficPolicyResponse {
|
|
1111
1111
|
TrafficPolicyId: string | undefined;
|
|
@@ -1127,12 +1127,12 @@ export interface DeleteTrafficPolicyRequest {
|
|
|
1127
1127
|
}
|
|
1128
1128
|
export interface DeleteTrafficPolicyResponse {}
|
|
1129
1129
|
export interface Envelope {
|
|
1130
|
-
Helo?: string;
|
|
1131
|
-
From?: string;
|
|
1132
|
-
To?: string[];
|
|
1130
|
+
Helo?: string | undefined;
|
|
1131
|
+
From?: string | undefined;
|
|
1132
|
+
To?: string[] | undefined;
|
|
1133
1133
|
}
|
|
1134
1134
|
export interface S3ExportDestinationConfiguration {
|
|
1135
|
-
S3Location?: string;
|
|
1135
|
+
S3Location?: string | undefined;
|
|
1136
1136
|
}
|
|
1137
1137
|
export type ExportDestinationConfiguration =
|
|
1138
1138
|
| ExportDestinationConfiguration.S3Member
|
|
@@ -1165,55 +1165,55 @@ export declare const ExportState: {
|
|
|
1165
1165
|
};
|
|
1166
1166
|
export type ExportState = (typeof ExportState)[keyof typeof ExportState];
|
|
1167
1167
|
export interface ExportStatus {
|
|
1168
|
-
SubmissionTimestamp?: Date;
|
|
1169
|
-
CompletionTimestamp?: Date;
|
|
1170
|
-
State?: ExportState;
|
|
1171
|
-
ErrorMessage?: string;
|
|
1168
|
+
SubmissionTimestamp?: Date | undefined;
|
|
1169
|
+
CompletionTimestamp?: Date | undefined;
|
|
1170
|
+
State?: ExportState | undefined;
|
|
1171
|
+
ErrorMessage?: string | undefined;
|
|
1172
1172
|
}
|
|
1173
1173
|
export interface ExportSummary {
|
|
1174
|
-
ExportId?: string;
|
|
1175
|
-
Status?: ExportStatus;
|
|
1174
|
+
ExportId?: string | undefined;
|
|
1175
|
+
Status?: ExportStatus | undefined;
|
|
1176
1176
|
}
|
|
1177
1177
|
export interface GetArchiveExportRequest {
|
|
1178
1178
|
ExportId: string | undefined;
|
|
1179
1179
|
}
|
|
1180
1180
|
export interface GetArchiveExportResponse {
|
|
1181
|
-
ArchiveId?: string;
|
|
1182
|
-
Filters?: ArchiveFilters;
|
|
1183
|
-
FromTimestamp?: Date;
|
|
1184
|
-
ToTimestamp?: Date;
|
|
1185
|
-
MaxResults?: number;
|
|
1186
|
-
ExportDestinationConfiguration?: ExportDestinationConfiguration;
|
|
1187
|
-
Status?: ExportStatus;
|
|
1181
|
+
ArchiveId?: string | undefined;
|
|
1182
|
+
Filters?: ArchiveFilters | undefined;
|
|
1183
|
+
FromTimestamp?: Date | undefined;
|
|
1184
|
+
ToTimestamp?: Date | undefined;
|
|
1185
|
+
MaxResults?: number | undefined;
|
|
1186
|
+
ExportDestinationConfiguration?: ExportDestinationConfiguration | undefined;
|
|
1187
|
+
Status?: ExportStatus | undefined;
|
|
1188
1188
|
}
|
|
1189
1189
|
export interface GetArchiveMessageRequest {
|
|
1190
1190
|
ArchivedMessageId: string | undefined;
|
|
1191
1191
|
}
|
|
1192
1192
|
export interface Metadata {
|
|
1193
|
-
Timestamp?: Date;
|
|
1194
|
-
IngressPointId?: string;
|
|
1195
|
-
TrafficPolicyId?: string;
|
|
1196
|
-
RuleSetId?: string;
|
|
1197
|
-
SenderHostname?: string;
|
|
1198
|
-
SenderIpAddress?: string;
|
|
1199
|
-
TlsCipherSuite?: string;
|
|
1200
|
-
TlsProtocol?: string;
|
|
1193
|
+
Timestamp?: Date | undefined;
|
|
1194
|
+
IngressPointId?: string | undefined;
|
|
1195
|
+
TrafficPolicyId?: string | undefined;
|
|
1196
|
+
RuleSetId?: string | undefined;
|
|
1197
|
+
SenderHostname?: string | undefined;
|
|
1198
|
+
SenderIpAddress?: string | undefined;
|
|
1199
|
+
TlsCipherSuite?: string | undefined;
|
|
1200
|
+
TlsProtocol?: string | undefined;
|
|
1201
1201
|
}
|
|
1202
1202
|
export interface GetArchiveMessageResponse {
|
|
1203
|
-
MessageDownloadLink?: string;
|
|
1204
|
-
Metadata?: Metadata;
|
|
1205
|
-
Envelope?: Envelope;
|
|
1203
|
+
MessageDownloadLink?: string | undefined;
|
|
1204
|
+
Metadata?: Metadata | undefined;
|
|
1205
|
+
Envelope?: Envelope | undefined;
|
|
1206
1206
|
}
|
|
1207
1207
|
export interface GetArchiveMessageContentRequest {
|
|
1208
1208
|
ArchivedMessageId: string | undefined;
|
|
1209
1209
|
}
|
|
1210
1210
|
export interface MessageBody {
|
|
1211
|
-
Text?: string;
|
|
1212
|
-
Html?: string;
|
|
1213
|
-
MessageMalformed?: boolean;
|
|
1211
|
+
Text?: string | undefined;
|
|
1212
|
+
Html?: string | undefined;
|
|
1213
|
+
MessageMalformed?: boolean | undefined;
|
|
1214
1214
|
}
|
|
1215
1215
|
export interface GetArchiveMessageContentResponse {
|
|
1216
|
-
Body?: MessageBody;
|
|
1216
|
+
Body?: MessageBody | undefined;
|
|
1217
1217
|
}
|
|
1218
1218
|
export interface GetArchiveSearchRequest {
|
|
1219
1219
|
SearchId: string | undefined;
|
|
@@ -1227,56 +1227,58 @@ export declare const SearchState: {
|
|
|
1227
1227
|
};
|
|
1228
1228
|
export type SearchState = (typeof SearchState)[keyof typeof SearchState];
|
|
1229
1229
|
export interface SearchStatus {
|
|
1230
|
-
SubmissionTimestamp?: Date;
|
|
1231
|
-
CompletionTimestamp?: Date;
|
|
1232
|
-
State?: SearchState;
|
|
1233
|
-
ErrorMessage?: string;
|
|
1230
|
+
SubmissionTimestamp?: Date | undefined;
|
|
1231
|
+
CompletionTimestamp?: Date | undefined;
|
|
1232
|
+
State?: SearchState | undefined;
|
|
1233
|
+
ErrorMessage?: string | undefined;
|
|
1234
1234
|
}
|
|
1235
1235
|
export interface GetArchiveSearchResponse {
|
|
1236
|
-
ArchiveId?: string;
|
|
1237
|
-
Filters?: ArchiveFilters;
|
|
1238
|
-
FromTimestamp?: Date;
|
|
1239
|
-
ToTimestamp?: Date;
|
|
1240
|
-
MaxResults?: number;
|
|
1241
|
-
Status?: SearchStatus;
|
|
1236
|
+
ArchiveId?: string | undefined;
|
|
1237
|
+
Filters?: ArchiveFilters | undefined;
|
|
1238
|
+
FromTimestamp?: Date | undefined;
|
|
1239
|
+
ToTimestamp?: Date | undefined;
|
|
1240
|
+
MaxResults?: number | undefined;
|
|
1241
|
+
Status?: SearchStatus | undefined;
|
|
1242
1242
|
}
|
|
1243
1243
|
export interface GetArchiveSearchResultsRequest {
|
|
1244
1244
|
SearchId: string | undefined;
|
|
1245
1245
|
}
|
|
1246
1246
|
export interface Row {
|
|
1247
|
-
ArchivedMessageId?: string;
|
|
1248
|
-
ReceivedTimestamp?: Date;
|
|
1249
|
-
Date?: string;
|
|
1250
|
-
To?: string;
|
|
1251
|
-
From?: string;
|
|
1252
|
-
Cc?: string;
|
|
1253
|
-
Subject?: string;
|
|
1254
|
-
MessageId?: string;
|
|
1255
|
-
HasAttachments?: boolean;
|
|
1256
|
-
ReceivedHeaders?: string[];
|
|
1257
|
-
InReplyTo?: string;
|
|
1258
|
-
XMailer?: string;
|
|
1259
|
-
XOriginalMailer?: string;
|
|
1260
|
-
XPriority?: string;
|
|
1261
|
-
IngressPointId?: string;
|
|
1262
|
-
SenderHostname?: string;
|
|
1263
|
-
SenderIpAddress?: string;
|
|
1264
|
-
Envelope?: Envelope;
|
|
1247
|
+
ArchivedMessageId?: string | undefined;
|
|
1248
|
+
ReceivedTimestamp?: Date | undefined;
|
|
1249
|
+
Date?: string | undefined;
|
|
1250
|
+
To?: string | undefined;
|
|
1251
|
+
From?: string | undefined;
|
|
1252
|
+
Cc?: string | undefined;
|
|
1253
|
+
Subject?: string | undefined;
|
|
1254
|
+
MessageId?: string | undefined;
|
|
1255
|
+
HasAttachments?: boolean | undefined;
|
|
1256
|
+
ReceivedHeaders?: string[] | undefined;
|
|
1257
|
+
InReplyTo?: string | undefined;
|
|
1258
|
+
XMailer?: string | undefined;
|
|
1259
|
+
XOriginalMailer?: string | undefined;
|
|
1260
|
+
XPriority?: string | undefined;
|
|
1261
|
+
IngressPointId?: string | undefined;
|
|
1262
|
+
SenderHostname?: string | undefined;
|
|
1263
|
+
SenderIpAddress?: string | undefined;
|
|
1264
|
+
Envelope?: Envelope | undefined;
|
|
1265
1265
|
}
|
|
1266
1266
|
export interface GetArchiveSearchResultsResponse {
|
|
1267
|
-
Rows?: Row[];
|
|
1267
|
+
Rows?: Row[] | undefined;
|
|
1268
1268
|
}
|
|
1269
1269
|
export interface GetIngressPointRequest {
|
|
1270
1270
|
IngressPointId: string | undefined;
|
|
1271
1271
|
}
|
|
1272
1272
|
export interface IngressPointPasswordConfiguration {
|
|
1273
|
-
SmtpPasswordVersion?: string;
|
|
1274
|
-
PreviousSmtpPasswordVersion?: string;
|
|
1275
|
-
PreviousSmtpPasswordExpiryTimestamp?: Date;
|
|
1273
|
+
SmtpPasswordVersion?: string | undefined;
|
|
1274
|
+
PreviousSmtpPasswordVersion?: string | undefined;
|
|
1275
|
+
PreviousSmtpPasswordExpiryTimestamp?: Date | undefined;
|
|
1276
1276
|
}
|
|
1277
1277
|
export interface IngressPointAuthConfiguration {
|
|
1278
|
-
IngressPointPasswordConfiguration?:
|
|
1279
|
-
|
|
1278
|
+
IngressPointPasswordConfiguration?:
|
|
1279
|
+
| IngressPointPasswordConfiguration
|
|
1280
|
+
| undefined;
|
|
1281
|
+
SecretArn?: string | undefined;
|
|
1280
1282
|
}
|
|
1281
1283
|
export declare const IngressPointStatus: {
|
|
1282
1284
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -1291,28 +1293,28 @@ export type IngressPointStatus =
|
|
|
1291
1293
|
export interface GetIngressPointResponse {
|
|
1292
1294
|
IngressPointId: string | undefined;
|
|
1293
1295
|
IngressPointName: string | undefined;
|
|
1294
|
-
IngressPointArn?: string;
|
|
1295
|
-
Status?: IngressPointStatus;
|
|
1296
|
-
Type?: IngressPointType;
|
|
1297
|
-
ARecord?: string;
|
|
1298
|
-
RuleSetId?: string;
|
|
1299
|
-
TrafficPolicyId?: string;
|
|
1300
|
-
IngressPointAuthConfiguration?: IngressPointAuthConfiguration;
|
|
1301
|
-
CreatedTimestamp?: Date;
|
|
1302
|
-
LastUpdatedTimestamp?: Date;
|
|
1296
|
+
IngressPointArn?: string | undefined;
|
|
1297
|
+
Status?: IngressPointStatus | undefined;
|
|
1298
|
+
Type?: IngressPointType | undefined;
|
|
1299
|
+
ARecord?: string | undefined;
|
|
1300
|
+
RuleSetId?: string | undefined;
|
|
1301
|
+
TrafficPolicyId?: string | undefined;
|
|
1302
|
+
IngressPointAuthConfiguration?: IngressPointAuthConfiguration | undefined;
|
|
1303
|
+
CreatedTimestamp?: Date | undefined;
|
|
1304
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
1303
1305
|
}
|
|
1304
1306
|
export interface GetRelayRequest {
|
|
1305
1307
|
RelayId: string | undefined;
|
|
1306
1308
|
}
|
|
1307
1309
|
export interface GetRelayResponse {
|
|
1308
1310
|
RelayId: string | undefined;
|
|
1309
|
-
RelayArn?: string;
|
|
1310
|
-
RelayName?: string;
|
|
1311
|
-
ServerName?: string;
|
|
1312
|
-
ServerPort?: number;
|
|
1313
|
-
Authentication?: RelayAuthentication;
|
|
1314
|
-
CreatedTimestamp?: Date;
|
|
1315
|
-
LastModifiedTimestamp?: Date;
|
|
1311
|
+
RelayArn?: string | undefined;
|
|
1312
|
+
RelayName?: string | undefined;
|
|
1313
|
+
ServerName?: string | undefined;
|
|
1314
|
+
ServerPort?: number | undefined;
|
|
1315
|
+
Authentication?: RelayAuthentication | undefined;
|
|
1316
|
+
CreatedTimestamp?: Date | undefined;
|
|
1317
|
+
LastModifiedTimestamp?: Date | undefined;
|
|
1316
1318
|
}
|
|
1317
1319
|
export interface GetRuleSetRequest {
|
|
1318
1320
|
RuleSetId: string | undefined;
|
|
@@ -1331,27 +1333,27 @@ export interface GetTrafficPolicyRequest {
|
|
|
1331
1333
|
export interface GetTrafficPolicyResponse {
|
|
1332
1334
|
TrafficPolicyName: string | undefined;
|
|
1333
1335
|
TrafficPolicyId: string | undefined;
|
|
1334
|
-
TrafficPolicyArn?: string;
|
|
1335
|
-
PolicyStatements?: PolicyStatement[];
|
|
1336
|
-
MaxMessageSizeBytes?: number;
|
|
1337
|
-
DefaultAction?: AcceptAction;
|
|
1338
|
-
CreatedTimestamp?: Date;
|
|
1339
|
-
LastUpdatedTimestamp?: Date;
|
|
1336
|
+
TrafficPolicyArn?: string | undefined;
|
|
1337
|
+
PolicyStatements?: PolicyStatement[] | undefined;
|
|
1338
|
+
MaxMessageSizeBytes?: number | undefined;
|
|
1339
|
+
DefaultAction?: AcceptAction | undefined;
|
|
1340
|
+
CreatedTimestamp?: Date | undefined;
|
|
1341
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
1340
1342
|
}
|
|
1341
1343
|
export interface IngressPoint {
|
|
1342
1344
|
IngressPointName: string | undefined;
|
|
1343
1345
|
IngressPointId: string | undefined;
|
|
1344
1346
|
Status: IngressPointStatus | undefined;
|
|
1345
1347
|
Type: IngressPointType | undefined;
|
|
1346
|
-
ARecord?: string;
|
|
1348
|
+
ARecord?: string | undefined;
|
|
1347
1349
|
}
|
|
1348
1350
|
export interface ListIngressPointsRequest {
|
|
1349
|
-
PageSize?: number;
|
|
1350
|
-
NextToken?: string;
|
|
1351
|
+
PageSize?: number | undefined;
|
|
1352
|
+
NextToken?: string | undefined;
|
|
1351
1353
|
}
|
|
1352
1354
|
export interface ListIngressPointsResponse {
|
|
1353
|
-
IngressPoints?: IngressPoint[];
|
|
1354
|
-
NextToken?: string;
|
|
1355
|
+
IngressPoints?: IngressPoint[] | undefined;
|
|
1356
|
+
NextToken?: string | undefined;
|
|
1355
1357
|
}
|
|
1356
1358
|
export declare const IngressPointStatusToUpdate: {
|
|
1357
1359
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -1361,60 +1363,60 @@ export type IngressPointStatusToUpdate =
|
|
|
1361
1363
|
(typeof IngressPointStatusToUpdate)[keyof typeof IngressPointStatusToUpdate];
|
|
1362
1364
|
export interface UpdateIngressPointRequest {
|
|
1363
1365
|
IngressPointId: string | undefined;
|
|
1364
|
-
IngressPointName?: string;
|
|
1365
|
-
StatusToUpdate?: IngressPointStatusToUpdate;
|
|
1366
|
-
RuleSetId?: string;
|
|
1367
|
-
TrafficPolicyId?: string;
|
|
1368
|
-
IngressPointConfiguration?: IngressPointConfiguration;
|
|
1366
|
+
IngressPointName?: string | undefined;
|
|
1367
|
+
StatusToUpdate?: IngressPointStatusToUpdate | undefined;
|
|
1368
|
+
RuleSetId?: string | undefined;
|
|
1369
|
+
TrafficPolicyId?: string | undefined;
|
|
1370
|
+
IngressPointConfiguration?: IngressPointConfiguration | undefined;
|
|
1369
1371
|
}
|
|
1370
1372
|
export interface UpdateIngressPointResponse {}
|
|
1371
1373
|
export interface ListArchiveExportsRequest {
|
|
1372
1374
|
ArchiveId: string | undefined;
|
|
1373
|
-
NextToken?: string;
|
|
1374
|
-
PageSize?: number;
|
|
1375
|
+
NextToken?: string | undefined;
|
|
1376
|
+
PageSize?: number | undefined;
|
|
1375
1377
|
}
|
|
1376
1378
|
export interface ListArchiveExportsResponse {
|
|
1377
|
-
Exports?: ExportSummary[];
|
|
1378
|
-
NextToken?: string;
|
|
1379
|
+
Exports?: ExportSummary[] | undefined;
|
|
1380
|
+
NextToken?: string | undefined;
|
|
1379
1381
|
}
|
|
1380
1382
|
export interface ListArchiveSearchesRequest {
|
|
1381
1383
|
ArchiveId: string | undefined;
|
|
1382
|
-
NextToken?: string;
|
|
1383
|
-
PageSize?: number;
|
|
1384
|
+
NextToken?: string | undefined;
|
|
1385
|
+
PageSize?: number | undefined;
|
|
1384
1386
|
}
|
|
1385
1387
|
export interface SearchSummary {
|
|
1386
|
-
SearchId?: string;
|
|
1387
|
-
Status?: SearchStatus;
|
|
1388
|
+
SearchId?: string | undefined;
|
|
1389
|
+
Status?: SearchStatus | undefined;
|
|
1388
1390
|
}
|
|
1389
1391
|
export interface ListArchiveSearchesResponse {
|
|
1390
|
-
Searches?: SearchSummary[];
|
|
1391
|
-
NextToken?: string;
|
|
1392
|
+
Searches?: SearchSummary[] | undefined;
|
|
1393
|
+
NextToken?: string | undefined;
|
|
1392
1394
|
}
|
|
1393
1395
|
export interface ListRelaysRequest {
|
|
1394
|
-
PageSize?: number;
|
|
1395
|
-
NextToken?: string;
|
|
1396
|
+
PageSize?: number | undefined;
|
|
1397
|
+
NextToken?: string | undefined;
|
|
1396
1398
|
}
|
|
1397
1399
|
export interface Relay {
|
|
1398
|
-
RelayId?: string;
|
|
1399
|
-
RelayName?: string;
|
|
1400
|
-
LastModifiedTimestamp?: Date;
|
|
1400
|
+
RelayId?: string | undefined;
|
|
1401
|
+
RelayName?: string | undefined;
|
|
1402
|
+
LastModifiedTimestamp?: Date | undefined;
|
|
1401
1403
|
}
|
|
1402
1404
|
export interface ListRelaysResponse {
|
|
1403
1405
|
Relays: Relay[] | undefined;
|
|
1404
|
-
NextToken?: string;
|
|
1406
|
+
NextToken?: string | undefined;
|
|
1405
1407
|
}
|
|
1406
1408
|
export interface ListRuleSetsRequest {
|
|
1407
|
-
NextToken?: string;
|
|
1408
|
-
PageSize?: number;
|
|
1409
|
+
NextToken?: string | undefined;
|
|
1410
|
+
PageSize?: number | undefined;
|
|
1409
1411
|
}
|
|
1410
1412
|
export interface RuleSet {
|
|
1411
|
-
RuleSetId?: string;
|
|
1412
|
-
RuleSetName?: string;
|
|
1413
|
-
LastModificationDate?: Date;
|
|
1413
|
+
RuleSetId?: string | undefined;
|
|
1414
|
+
RuleSetName?: string | undefined;
|
|
1415
|
+
LastModificationDate?: Date | undefined;
|
|
1414
1416
|
}
|
|
1415
1417
|
export interface ListRuleSetsResponse {
|
|
1416
1418
|
RuleSets: RuleSet[] | undefined;
|
|
1417
|
-
NextToken?: string;
|
|
1419
|
+
NextToken?: string | undefined;
|
|
1418
1420
|
}
|
|
1419
1421
|
export interface ListTagsForResourceRequest {
|
|
1420
1422
|
ResourceArn: string | undefined;
|
|
@@ -1423,8 +1425,8 @@ export interface ListTagsForResourceResponse {
|
|
|
1423
1425
|
Tags: Tag[] | undefined;
|
|
1424
1426
|
}
|
|
1425
1427
|
export interface ListTrafficPoliciesRequest {
|
|
1426
|
-
PageSize?: number;
|
|
1427
|
-
NextToken?: string;
|
|
1428
|
+
PageSize?: number | undefined;
|
|
1429
|
+
NextToken?: string | undefined;
|
|
1428
1430
|
}
|
|
1429
1431
|
export interface TrafficPolicy {
|
|
1430
1432
|
TrafficPolicyName: string | undefined;
|
|
@@ -1432,44 +1434,44 @@ export interface TrafficPolicy {
|
|
|
1432
1434
|
DefaultAction: AcceptAction | undefined;
|
|
1433
1435
|
}
|
|
1434
1436
|
export interface ListTrafficPoliciesResponse {
|
|
1435
|
-
TrafficPolicies?: TrafficPolicy[];
|
|
1436
|
-
NextToken?: string;
|
|
1437
|
+
TrafficPolicies?: TrafficPolicy[] | undefined;
|
|
1438
|
+
NextToken?: string | undefined;
|
|
1437
1439
|
}
|
|
1438
1440
|
export interface UpdateRelayRequest {
|
|
1439
1441
|
RelayId: string | undefined;
|
|
1440
|
-
RelayName?: string;
|
|
1441
|
-
ServerName?: string;
|
|
1442
|
-
ServerPort?: number;
|
|
1443
|
-
Authentication?: RelayAuthentication;
|
|
1442
|
+
RelayName?: string | undefined;
|
|
1443
|
+
ServerName?: string | undefined;
|
|
1444
|
+
ServerPort?: number | undefined;
|
|
1445
|
+
Authentication?: RelayAuthentication | undefined;
|
|
1444
1446
|
}
|
|
1445
1447
|
export interface UpdateRelayResponse {}
|
|
1446
1448
|
export interface UpdateRuleSetRequest {
|
|
1447
1449
|
RuleSetId: string | undefined;
|
|
1448
|
-
RuleSetName?: string;
|
|
1449
|
-
Rules?: Rule[];
|
|
1450
|
+
RuleSetName?: string | undefined;
|
|
1451
|
+
Rules?: Rule[] | undefined;
|
|
1450
1452
|
}
|
|
1451
1453
|
export interface UpdateRuleSetResponse {}
|
|
1452
1454
|
export interface StartArchiveExportRequest {
|
|
1453
1455
|
ArchiveId: string | undefined;
|
|
1454
|
-
Filters?: ArchiveFilters;
|
|
1456
|
+
Filters?: ArchiveFilters | undefined;
|
|
1455
1457
|
FromTimestamp: Date | undefined;
|
|
1456
1458
|
ToTimestamp: Date | undefined;
|
|
1457
|
-
MaxResults?: number;
|
|
1459
|
+
MaxResults?: number | undefined;
|
|
1458
1460
|
ExportDestinationConfiguration: ExportDestinationConfiguration | undefined;
|
|
1459
|
-
IncludeMetadata?: boolean;
|
|
1461
|
+
IncludeMetadata?: boolean | undefined;
|
|
1460
1462
|
}
|
|
1461
1463
|
export interface StartArchiveExportResponse {
|
|
1462
|
-
ExportId?: string;
|
|
1464
|
+
ExportId?: string | undefined;
|
|
1463
1465
|
}
|
|
1464
1466
|
export interface StartArchiveSearchRequest {
|
|
1465
1467
|
ArchiveId: string | undefined;
|
|
1466
|
-
Filters?: ArchiveFilters;
|
|
1468
|
+
Filters?: ArchiveFilters | undefined;
|
|
1467
1469
|
FromTimestamp: Date | undefined;
|
|
1468
1470
|
ToTimestamp: Date | undefined;
|
|
1469
1471
|
MaxResults: number | undefined;
|
|
1470
1472
|
}
|
|
1471
1473
|
export interface StartArchiveSearchResponse {
|
|
1472
|
-
SearchId?: string;
|
|
1474
|
+
SearchId?: string | undefined;
|
|
1473
1475
|
}
|
|
1474
1476
|
export interface StopArchiveExportRequest {
|
|
1475
1477
|
ExportId: string | undefined;
|
|
@@ -1486,10 +1488,10 @@ export interface TagResourceRequest {
|
|
|
1486
1488
|
export interface TagResourceResponse {}
|
|
1487
1489
|
export interface UpdateTrafficPolicyRequest {
|
|
1488
1490
|
TrafficPolicyId: string | undefined;
|
|
1489
|
-
TrafficPolicyName?: string;
|
|
1490
|
-
PolicyStatements?: PolicyStatement[];
|
|
1491
|
-
DefaultAction?: AcceptAction;
|
|
1492
|
-
MaxMessageSizeBytes?: number;
|
|
1491
|
+
TrafficPolicyName?: string | undefined;
|
|
1492
|
+
PolicyStatements?: PolicyStatement[] | undefined;
|
|
1493
|
+
DefaultAction?: AcceptAction | undefined;
|
|
1494
|
+
MaxMessageSizeBytes?: number | undefined;
|
|
1493
1495
|
}
|
|
1494
1496
|
export interface UpdateTrafficPolicyResponse {}
|
|
1495
1497
|
export interface UntagResourceRequest {
|