@aws-sdk/client-mailmanager 3.934.0 → 3.935.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-cjs/index.js +220 -219
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +219 -0
- package/dist-es/models/errors.js +85 -0
- package/dist-es/models/models_0.js +1 -304
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +563 -0
- package/dist-types/models/errors.d.ts +80 -0
- package/dist-types/models/models_0.d.ts +1 -643
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +298 -0
- package/dist-types/ts3.4/models/errors.d.ts +48 -0
- package/dist-types/ts3.4/models/models_0.d.ts +45 -346
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,42 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { MailManagerServiceException as __BaseException } from "./MailManagerServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* @public
|
|
5
|
-
* @enum
|
|
6
|
-
*/
|
|
7
|
-
export declare const AcceptAction: {
|
|
8
|
-
readonly ALLOW: "ALLOW";
|
|
9
|
-
readonly DENY: "DENY";
|
|
10
|
-
};
|
|
11
|
-
/**
|
|
12
|
-
* @public
|
|
13
|
-
*/
|
|
14
|
-
export type AcceptAction = (typeof AcceptAction)[keyof typeof AcceptAction];
|
|
15
|
-
/**
|
|
16
|
-
* <p>Occurs when a user is denied access to a specific resource or action.</p>
|
|
17
|
-
* @public
|
|
18
|
-
*/
|
|
19
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
20
|
-
readonly name: "AccessDeniedException";
|
|
21
|
-
readonly $fault: "client";
|
|
22
|
-
Message?: string | undefined;
|
|
23
|
-
/**
|
|
24
|
-
* @internal
|
|
25
|
-
*/
|
|
26
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* @public
|
|
30
|
-
* @enum
|
|
31
|
-
*/
|
|
32
|
-
export declare const ActionFailurePolicy: {
|
|
33
|
-
readonly CONTINUE: "CONTINUE";
|
|
34
|
-
readonly DROP: "DROP";
|
|
35
|
-
};
|
|
36
|
-
/**
|
|
37
|
-
* @public
|
|
38
|
-
*/
|
|
39
|
-
export type ActionFailurePolicy = (typeof ActionFailurePolicy)[keyof typeof ActionFailurePolicy];
|
|
1
|
+
import { AcceptAction, ActionFailurePolicy, ArchiveBooleanEmailAttribute, ArchiveBooleanOperator, ArchiveState, ArchiveStringEmailAttribute, ArchiveStringOperator, ExportState, ImportDataType, ImportJobStatus, IngressAddressListEmailAttribute, IngressBooleanOperator, IngressIpOperator, IngressIpv4Attribute, IngressIpv6Attribute, IngressPointStatus, IngressPointStatusToUpdate, IngressPointType, IngressStringEmailAttribute, IngressStringOperator, IngressTlsAttribute, IngressTlsProtocolAttribute, IngressTlsProtocolOperator, IpType, MailFrom, RetentionPeriod, RuleAddressListEmailAttribute, RuleBooleanEmailAttribute, RuleBooleanOperator, RuleDmarcOperator, RuleDmarcPolicy, RuleIpEmailAttribute, RuleIpOperator, RuleNumberEmailAttribute, RuleNumberOperator, RuleStringEmailAttribute, RuleStringOperator, RuleVerdict, RuleVerdictAttribute, RuleVerdictOperator, SearchState, SnsNotificationEncoding, SnsNotificationPayloadType } from "./enums";
|
|
40
2
|
/**
|
|
41
3
|
* <p>The action to add a header to a message. When executed, this action will add the given header to the message.</p>
|
|
42
4
|
* @public
|
|
@@ -84,19 +46,6 @@ export interface AddonInstance {
|
|
|
84
46
|
*/
|
|
85
47
|
CreatedTimestamp?: Date | undefined;
|
|
86
48
|
}
|
|
87
|
-
/**
|
|
88
|
-
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
89
|
-
* @public
|
|
90
|
-
*/
|
|
91
|
-
export declare class ConflictException extends __BaseException {
|
|
92
|
-
readonly name: "ConflictException";
|
|
93
|
-
readonly $fault: "client";
|
|
94
|
-
Message?: string | undefined;
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
99
|
-
}
|
|
100
49
|
/**
|
|
101
50
|
* <p>A key-value pair (the value is optional), that you can define and assign to Amazon Web Services resources.</p>
|
|
102
51
|
* @public
|
|
@@ -143,45 +92,6 @@ export interface CreateAddonInstanceResponse {
|
|
|
143
92
|
*/
|
|
144
93
|
AddonInstanceId: string | undefined;
|
|
145
94
|
}
|
|
146
|
-
/**
|
|
147
|
-
* <p>Occurs when a requested resource is not found.</p>
|
|
148
|
-
* @public
|
|
149
|
-
*/
|
|
150
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
151
|
-
readonly name: "ResourceNotFoundException";
|
|
152
|
-
readonly $fault: "client";
|
|
153
|
-
Message?: string | undefined;
|
|
154
|
-
/**
|
|
155
|
-
* @internal
|
|
156
|
-
*/
|
|
157
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
158
|
-
}
|
|
159
|
-
/**
|
|
160
|
-
* <p>Occurs when an operation exceeds a predefined service quota or limit.</p>
|
|
161
|
-
* @public
|
|
162
|
-
*/
|
|
163
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
164
|
-
readonly name: "ServiceQuotaExceededException";
|
|
165
|
-
readonly $fault: "client";
|
|
166
|
-
Message?: string | undefined;
|
|
167
|
-
/**
|
|
168
|
-
* @internal
|
|
169
|
-
*/
|
|
170
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
171
|
-
}
|
|
172
|
-
/**
|
|
173
|
-
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
174
|
-
* @public
|
|
175
|
-
*/
|
|
176
|
-
export declare class ValidationException extends __BaseException {
|
|
177
|
-
readonly name: "ValidationException";
|
|
178
|
-
readonly $fault: "client";
|
|
179
|
-
Message?: string | undefined;
|
|
180
|
-
/**
|
|
181
|
-
* @internal
|
|
182
|
-
*/
|
|
183
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
184
|
-
}
|
|
185
95
|
/**
|
|
186
96
|
* @public
|
|
187
97
|
*/
|
|
@@ -465,19 +375,6 @@ export interface CreateAddressListResponse {
|
|
|
465
375
|
*/
|
|
466
376
|
AddressListId: string | undefined;
|
|
467
377
|
}
|
|
468
|
-
/**
|
|
469
|
-
* <p>Occurs when a service's request rate limit is exceeded, resulting in throttling of further requests.</p>
|
|
470
|
-
* @public
|
|
471
|
-
*/
|
|
472
|
-
export declare class ThrottlingException extends __BaseException {
|
|
473
|
-
readonly name: "ThrottlingException";
|
|
474
|
-
readonly $fault: "client";
|
|
475
|
-
Message?: string | undefined;
|
|
476
|
-
/**
|
|
477
|
-
* @internal
|
|
478
|
-
*/
|
|
479
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
480
|
-
}
|
|
481
378
|
/**
|
|
482
379
|
* @public
|
|
483
380
|
*/
|
|
@@ -579,18 +476,6 @@ export interface Analysis {
|
|
|
579
476
|
*/
|
|
580
477
|
ResultField: string | undefined;
|
|
581
478
|
}
|
|
582
|
-
/**
|
|
583
|
-
* @public
|
|
584
|
-
* @enum
|
|
585
|
-
*/
|
|
586
|
-
export declare const ArchiveState: {
|
|
587
|
-
readonly ACTIVE: "ACTIVE";
|
|
588
|
-
readonly PENDING_DELETION: "PENDING_DELETION";
|
|
589
|
-
};
|
|
590
|
-
/**
|
|
591
|
-
* @public
|
|
592
|
-
*/
|
|
593
|
-
export type ArchiveState = (typeof ArchiveState)[keyof typeof ArchiveState];
|
|
594
479
|
/**
|
|
595
480
|
* <p>An archive resource for storing and retaining emails.</p>
|
|
596
481
|
* @public
|
|
@@ -633,17 +518,6 @@ export interface ArchiveAction {
|
|
|
633
518
|
*/
|
|
634
519
|
TargetArchive: string | undefined;
|
|
635
520
|
}
|
|
636
|
-
/**
|
|
637
|
-
* @public
|
|
638
|
-
* @enum
|
|
639
|
-
*/
|
|
640
|
-
export declare const ArchiveBooleanEmailAttribute: {
|
|
641
|
-
readonly HAS_ATTACHMENTS: "HAS_ATTACHMENTS";
|
|
642
|
-
};
|
|
643
|
-
/**
|
|
644
|
-
* @public
|
|
645
|
-
*/
|
|
646
|
-
export type ArchiveBooleanEmailAttribute = (typeof ArchiveBooleanEmailAttribute)[keyof typeof ArchiveBooleanEmailAttribute];
|
|
647
521
|
/**
|
|
648
522
|
* <p>The attribute to evaluate in a boolean expression.</p>
|
|
649
523
|
* @public
|
|
@@ -677,18 +551,6 @@ export declare namespace ArchiveBooleanToEvaluate {
|
|
|
677
551
|
_: (name: string, value: any) => T;
|
|
678
552
|
}
|
|
679
553
|
}
|
|
680
|
-
/**
|
|
681
|
-
* @public
|
|
682
|
-
* @enum
|
|
683
|
-
*/
|
|
684
|
-
export declare const ArchiveBooleanOperator: {
|
|
685
|
-
readonly IS_FALSE: "IS_FALSE";
|
|
686
|
-
readonly IS_TRUE: "IS_TRUE";
|
|
687
|
-
};
|
|
688
|
-
/**
|
|
689
|
-
* @public
|
|
690
|
-
*/
|
|
691
|
-
export type ArchiveBooleanOperator = (typeof ArchiveBooleanOperator)[keyof typeof ArchiveBooleanOperator];
|
|
692
554
|
/**
|
|
693
555
|
* <p>A boolean expression to evaluate email attribute values.</p>
|
|
694
556
|
* @public
|
|
@@ -705,22 +567,6 @@ export interface ArchiveBooleanExpression {
|
|
|
705
567
|
*/
|
|
706
568
|
Operator: ArchiveBooleanOperator | undefined;
|
|
707
569
|
}
|
|
708
|
-
/**
|
|
709
|
-
* @public
|
|
710
|
-
* @enum
|
|
711
|
-
*/
|
|
712
|
-
export declare const ArchiveStringEmailAttribute: {
|
|
713
|
-
readonly CC: "CC";
|
|
714
|
-
readonly ENVELOPE_FROM: "ENVELOPE_FROM";
|
|
715
|
-
readonly ENVELOPE_TO: "ENVELOPE_TO";
|
|
716
|
-
readonly FROM: "FROM";
|
|
717
|
-
readonly SUBJECT: "SUBJECT";
|
|
718
|
-
readonly TO: "TO";
|
|
719
|
-
};
|
|
720
|
-
/**
|
|
721
|
-
* @public
|
|
722
|
-
*/
|
|
723
|
-
export type ArchiveStringEmailAttribute = (typeof ArchiveStringEmailAttribute)[keyof typeof ArchiveStringEmailAttribute];
|
|
724
570
|
/**
|
|
725
571
|
* <p>Specifies the email attribute to evaluate in a string expression.</p>
|
|
726
572
|
* @public
|
|
@@ -754,17 +600,6 @@ export declare namespace ArchiveStringToEvaluate {
|
|
|
754
600
|
_: (name: string, value: any) => T;
|
|
755
601
|
}
|
|
756
602
|
}
|
|
757
|
-
/**
|
|
758
|
-
* @public
|
|
759
|
-
* @enum
|
|
760
|
-
*/
|
|
761
|
-
export declare const ArchiveStringOperator: {
|
|
762
|
-
readonly CONTAINS: "CONTAINS";
|
|
763
|
-
};
|
|
764
|
-
/**
|
|
765
|
-
* @public
|
|
766
|
-
*/
|
|
767
|
-
export type ArchiveStringOperator = (typeof ArchiveStringOperator)[keyof typeof ArchiveStringOperator];
|
|
768
603
|
/**
|
|
769
604
|
* <p>A string expression to evaluate an email attribute value against one or more string values.</p>
|
|
770
605
|
* @public
|
|
@@ -847,32 +682,6 @@ export interface ArchiveFilters {
|
|
|
847
682
|
*/
|
|
848
683
|
Unless?: ArchiveFilterCondition[] | undefined;
|
|
849
684
|
}
|
|
850
|
-
/**
|
|
851
|
-
* @public
|
|
852
|
-
* @enum
|
|
853
|
-
*/
|
|
854
|
-
export declare const RetentionPeriod: {
|
|
855
|
-
readonly EIGHTEEN_MONTHS: "EIGHTEEN_MONTHS";
|
|
856
|
-
readonly EIGHT_YEARS: "EIGHT_YEARS";
|
|
857
|
-
readonly FIVE_YEARS: "FIVE_YEARS";
|
|
858
|
-
readonly FOUR_YEARS: "FOUR_YEARS";
|
|
859
|
-
readonly NINE_MONTHS: "NINE_MONTHS";
|
|
860
|
-
readonly NINE_YEARS: "NINE_YEARS";
|
|
861
|
-
readonly ONE_YEAR: "ONE_YEAR";
|
|
862
|
-
readonly PERMANENT: "PERMANENT";
|
|
863
|
-
readonly SEVEN_YEARS: "SEVEN_YEARS";
|
|
864
|
-
readonly SIX_MONTHS: "SIX_MONTHS";
|
|
865
|
-
readonly SIX_YEARS: "SIX_YEARS";
|
|
866
|
-
readonly TEN_YEARS: "TEN_YEARS";
|
|
867
|
-
readonly THIRTY_MONTHS: "THIRTY_MONTHS";
|
|
868
|
-
readonly THREE_MONTHS: "THREE_MONTHS";
|
|
869
|
-
readonly THREE_YEARS: "THREE_YEARS";
|
|
870
|
-
readonly TWO_YEARS: "TWO_YEARS";
|
|
871
|
-
};
|
|
872
|
-
/**
|
|
873
|
-
* @public
|
|
874
|
-
*/
|
|
875
|
-
export type RetentionPeriod = (typeof RetentionPeriod)[keyof typeof RetentionPeriod];
|
|
876
685
|
/**
|
|
877
686
|
* <p>The retention policy for an email archive that specifies how long emails are kept before being automatically deleted. </p>
|
|
878
687
|
* @public
|
|
@@ -1081,18 +890,6 @@ export interface UpdateArchiveRequest {
|
|
|
1081
890
|
*/
|
|
1082
891
|
export interface UpdateArchiveResponse {
|
|
1083
892
|
}
|
|
1084
|
-
/**
|
|
1085
|
-
* @public
|
|
1086
|
-
* @enum
|
|
1087
|
-
*/
|
|
1088
|
-
export declare const ImportDataType: {
|
|
1089
|
-
readonly CSV: "CSV";
|
|
1090
|
-
readonly JSON: "JSON";
|
|
1091
|
-
};
|
|
1092
|
-
/**
|
|
1093
|
-
* @public
|
|
1094
|
-
*/
|
|
1095
|
-
export type ImportDataType = (typeof ImportDataType)[keyof typeof ImportDataType];
|
|
1096
893
|
/**
|
|
1097
894
|
* <p>The import data format contains the specifications of the input file that would be passed to the address list import job.</p>
|
|
1098
895
|
* @public
|
|
@@ -1200,18 +997,6 @@ export interface PrivateNetworkConfiguration {
|
|
|
1200
997
|
*/
|
|
1201
998
|
VpcEndpointId: string | undefined;
|
|
1202
999
|
}
|
|
1203
|
-
/**
|
|
1204
|
-
* @public
|
|
1205
|
-
* @enum
|
|
1206
|
-
*/
|
|
1207
|
-
export declare const IpType: {
|
|
1208
|
-
readonly DUAL_STACK: "DUAL_STACK";
|
|
1209
|
-
readonly IPV4: "IPV4";
|
|
1210
|
-
};
|
|
1211
|
-
/**
|
|
1212
|
-
* @public
|
|
1213
|
-
*/
|
|
1214
|
-
export type IpType = (typeof IpType)[keyof typeof IpType];
|
|
1215
1000
|
/**
|
|
1216
1001
|
* <p>Specifies the network configuration for the public ingress point.</p>
|
|
1217
1002
|
* @public
|
|
@@ -1268,18 +1053,6 @@ export declare namespace NetworkConfiguration {
|
|
|
1268
1053
|
_: (name: string, value: any) => T;
|
|
1269
1054
|
}
|
|
1270
1055
|
}
|
|
1271
|
-
/**
|
|
1272
|
-
* @public
|
|
1273
|
-
* @enum
|
|
1274
|
-
*/
|
|
1275
|
-
export declare const IngressPointType: {
|
|
1276
|
-
readonly AUTH: "AUTH";
|
|
1277
|
-
readonly OPEN: "OPEN";
|
|
1278
|
-
};
|
|
1279
|
-
/**
|
|
1280
|
-
* @public
|
|
1281
|
-
*/
|
|
1282
|
-
export type IngressPointType = (typeof IngressPointType)[keyof typeof IngressPointType];
|
|
1283
1056
|
/**
|
|
1284
1057
|
* @public
|
|
1285
1058
|
*/
|
|
@@ -1484,30 +1257,6 @@ export interface DeliverToQBusinessAction {
|
|
|
1484
1257
|
*/
|
|
1485
1258
|
export interface DropAction {
|
|
1486
1259
|
}
|
|
1487
|
-
/**
|
|
1488
|
-
* @public
|
|
1489
|
-
* @enum
|
|
1490
|
-
*/
|
|
1491
|
-
export declare const SnsNotificationEncoding: {
|
|
1492
|
-
readonly BASE64: "BASE64";
|
|
1493
|
-
readonly UTF_8: "UTF-8";
|
|
1494
|
-
};
|
|
1495
|
-
/**
|
|
1496
|
-
* @public
|
|
1497
|
-
*/
|
|
1498
|
-
export type SnsNotificationEncoding = (typeof SnsNotificationEncoding)[keyof typeof SnsNotificationEncoding];
|
|
1499
|
-
/**
|
|
1500
|
-
* @public
|
|
1501
|
-
* @enum
|
|
1502
|
-
*/
|
|
1503
|
-
export declare const SnsNotificationPayloadType: {
|
|
1504
|
-
readonly CONTENT: "CONTENT";
|
|
1505
|
-
readonly HEADERS: "HEADERS";
|
|
1506
|
-
};
|
|
1507
|
-
/**
|
|
1508
|
-
* @public
|
|
1509
|
-
*/
|
|
1510
|
-
export type SnsNotificationPayloadType = (typeof SnsNotificationPayloadType)[keyof typeof SnsNotificationPayloadType];
|
|
1511
1260
|
/**
|
|
1512
1261
|
* <p>The action to publish the email content to an Amazon SNS topic. When executed, this action will send the email as a notification to the specified SNS topic.</p>
|
|
1513
1262
|
* @public
|
|
@@ -1539,18 +1288,6 @@ export interface SnsAction {
|
|
|
1539
1288
|
*/
|
|
1540
1289
|
PayloadType?: SnsNotificationPayloadType | undefined;
|
|
1541
1290
|
}
|
|
1542
|
-
/**
|
|
1543
|
-
* @public
|
|
1544
|
-
* @enum
|
|
1545
|
-
*/
|
|
1546
|
-
export declare const MailFrom: {
|
|
1547
|
-
readonly PRESERVE: "PRESERVE";
|
|
1548
|
-
readonly REPLACE: "REPLACE";
|
|
1549
|
-
};
|
|
1550
|
-
/**
|
|
1551
|
-
* @public
|
|
1552
|
-
*/
|
|
1553
|
-
export type MailFrom = (typeof MailFrom)[keyof typeof MailFrom];
|
|
1554
1291
|
/**
|
|
1555
1292
|
* <p>The action relays the email via SMTP to another specific SMTP server.</p>
|
|
1556
1293
|
* @public
|
|
@@ -1843,35 +1580,6 @@ export declare namespace RuleAction {
|
|
|
1843
1580
|
_: (name: string, value: any) => T;
|
|
1844
1581
|
}
|
|
1845
1582
|
}
|
|
1846
|
-
/**
|
|
1847
|
-
* @public
|
|
1848
|
-
* @enum
|
|
1849
|
-
*/
|
|
1850
|
-
export declare const RuleBooleanEmailAttribute: {
|
|
1851
|
-
readonly READ_RECEIPT_REQUESTED: "READ_RECEIPT_REQUESTED";
|
|
1852
|
-
readonly TLS: "TLS";
|
|
1853
|
-
readonly TLS_WRAPPED: "TLS_WRAPPED";
|
|
1854
|
-
};
|
|
1855
|
-
/**
|
|
1856
|
-
* @public
|
|
1857
|
-
*/
|
|
1858
|
-
export type RuleBooleanEmailAttribute = (typeof RuleBooleanEmailAttribute)[keyof typeof RuleBooleanEmailAttribute];
|
|
1859
|
-
/**
|
|
1860
|
-
* @public
|
|
1861
|
-
* @enum
|
|
1862
|
-
*/
|
|
1863
|
-
export declare const RuleAddressListEmailAttribute: {
|
|
1864
|
-
readonly CC: "CC";
|
|
1865
|
-
readonly FROM: "FROM";
|
|
1866
|
-
readonly MAIL_FROM: "MAIL_FROM";
|
|
1867
|
-
readonly RECIPIENT: "RECIPIENT";
|
|
1868
|
-
readonly SENDER: "SENDER";
|
|
1869
|
-
readonly TO: "TO";
|
|
1870
|
-
};
|
|
1871
|
-
/**
|
|
1872
|
-
* @public
|
|
1873
|
-
*/
|
|
1874
|
-
export type RuleAddressListEmailAttribute = (typeof RuleAddressListEmailAttribute)[keyof typeof RuleAddressListEmailAttribute];
|
|
1875
1583
|
/**
|
|
1876
1584
|
* <p>The structure type for a boolean condition that provides the address lists and address list attribute to evaluate.</p>
|
|
1877
1585
|
* @public
|
|
@@ -1947,18 +1655,6 @@ export declare namespace RuleBooleanToEvaluate {
|
|
|
1947
1655
|
_: (name: string, value: any) => T;
|
|
1948
1656
|
}
|
|
1949
1657
|
}
|
|
1950
|
-
/**
|
|
1951
|
-
* @public
|
|
1952
|
-
* @enum
|
|
1953
|
-
*/
|
|
1954
|
-
export declare const RuleBooleanOperator: {
|
|
1955
|
-
readonly IS_FALSE: "IS_FALSE";
|
|
1956
|
-
readonly IS_TRUE: "IS_TRUE";
|
|
1957
|
-
};
|
|
1958
|
-
/**
|
|
1959
|
-
* @public
|
|
1960
|
-
*/
|
|
1961
|
-
export type RuleBooleanOperator = (typeof RuleBooleanOperator)[keyof typeof RuleBooleanOperator];
|
|
1962
1658
|
/**
|
|
1963
1659
|
* <p>A boolean expression to be used in a rule condition.</p>
|
|
1964
1660
|
* @public
|
|
@@ -1975,31 +1671,6 @@ export interface RuleBooleanExpression {
|
|
|
1975
1671
|
*/
|
|
1976
1672
|
Operator: RuleBooleanOperator | undefined;
|
|
1977
1673
|
}
|
|
1978
|
-
/**
|
|
1979
|
-
* @public
|
|
1980
|
-
* @enum
|
|
1981
|
-
*/
|
|
1982
|
-
export declare const RuleDmarcOperator: {
|
|
1983
|
-
readonly EQUALS: "EQUALS";
|
|
1984
|
-
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
1985
|
-
};
|
|
1986
|
-
/**
|
|
1987
|
-
* @public
|
|
1988
|
-
*/
|
|
1989
|
-
export type RuleDmarcOperator = (typeof RuleDmarcOperator)[keyof typeof RuleDmarcOperator];
|
|
1990
|
-
/**
|
|
1991
|
-
* @public
|
|
1992
|
-
* @enum
|
|
1993
|
-
*/
|
|
1994
|
-
export declare const RuleDmarcPolicy: {
|
|
1995
|
-
readonly NONE: "NONE";
|
|
1996
|
-
readonly QUARANTINE: "QUARANTINE";
|
|
1997
|
-
readonly REJECT: "REJECT";
|
|
1998
|
-
};
|
|
1999
|
-
/**
|
|
2000
|
-
* @public
|
|
2001
|
-
*/
|
|
2002
|
-
export type RuleDmarcPolicy = (typeof RuleDmarcPolicy)[keyof typeof RuleDmarcPolicy];
|
|
2003
1674
|
/**
|
|
2004
1675
|
* <p>A DMARC policy expression. The condition matches if the given DMARC policy matches that of the incoming email.</p>
|
|
2005
1676
|
* @public
|
|
@@ -2016,17 +1687,6 @@ export interface RuleDmarcExpression {
|
|
|
2016
1687
|
*/
|
|
2017
1688
|
Values: RuleDmarcPolicy[] | undefined;
|
|
2018
1689
|
}
|
|
2019
|
-
/**
|
|
2020
|
-
* @public
|
|
2021
|
-
* @enum
|
|
2022
|
-
*/
|
|
2023
|
-
export declare const RuleIpEmailAttribute: {
|
|
2024
|
-
readonly SOURCE_IP: "SOURCE_IP";
|
|
2025
|
-
};
|
|
2026
|
-
/**
|
|
2027
|
-
* @public
|
|
2028
|
-
*/
|
|
2029
|
-
export type RuleIpEmailAttribute = (typeof RuleIpEmailAttribute)[keyof typeof RuleIpEmailAttribute];
|
|
2030
1690
|
/**
|
|
2031
1691
|
* <p>The IP address to evaluate for this condition.</p>
|
|
2032
1692
|
* @public
|
|
@@ -2060,18 +1720,6 @@ export declare namespace RuleIpToEvaluate {
|
|
|
2060
1720
|
_: (name: string, value: any) => T;
|
|
2061
1721
|
}
|
|
2062
1722
|
}
|
|
2063
|
-
/**
|
|
2064
|
-
* @public
|
|
2065
|
-
* @enum
|
|
2066
|
-
*/
|
|
2067
|
-
export declare const RuleIpOperator: {
|
|
2068
|
-
readonly CIDR_MATCHES: "CIDR_MATCHES";
|
|
2069
|
-
readonly NOT_CIDR_MATCHES: "NOT_CIDR_MATCHES";
|
|
2070
|
-
};
|
|
2071
|
-
/**
|
|
2072
|
-
* @public
|
|
2073
|
-
*/
|
|
2074
|
-
export type RuleIpOperator = (typeof RuleIpOperator)[keyof typeof RuleIpOperator];
|
|
2075
1723
|
/**
|
|
2076
1724
|
* <p>An IP address expression matching certain IP addresses within a given range of IP addresses.</p>
|
|
2077
1725
|
* @public
|
|
@@ -2093,17 +1741,6 @@ export interface RuleIpExpression {
|
|
|
2093
1741
|
*/
|
|
2094
1742
|
Values: string[] | undefined;
|
|
2095
1743
|
}
|
|
2096
|
-
/**
|
|
2097
|
-
* @public
|
|
2098
|
-
* @enum
|
|
2099
|
-
*/
|
|
2100
|
-
export declare const RuleNumberEmailAttribute: {
|
|
2101
|
-
readonly MESSAGE_SIZE: "MESSAGE_SIZE";
|
|
2102
|
-
};
|
|
2103
|
-
/**
|
|
2104
|
-
* @public
|
|
2105
|
-
*/
|
|
2106
|
-
export type RuleNumberEmailAttribute = (typeof RuleNumberEmailAttribute)[keyof typeof RuleNumberEmailAttribute];
|
|
2107
1744
|
/**
|
|
2108
1745
|
* <p>The number to evaluate in a numeric condition expression.</p>
|
|
2109
1746
|
* @public
|
|
@@ -2137,22 +1774,6 @@ export declare namespace RuleNumberToEvaluate {
|
|
|
2137
1774
|
_: (name: string, value: any) => T;
|
|
2138
1775
|
}
|
|
2139
1776
|
}
|
|
2140
|
-
/**
|
|
2141
|
-
* @public
|
|
2142
|
-
* @enum
|
|
2143
|
-
*/
|
|
2144
|
-
export declare const RuleNumberOperator: {
|
|
2145
|
-
readonly EQUALS: "EQUALS";
|
|
2146
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
2147
|
-
readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
|
|
2148
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
2149
|
-
readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
|
|
2150
|
-
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
2151
|
-
};
|
|
2152
|
-
/**
|
|
2153
|
-
* @public
|
|
2154
|
-
*/
|
|
2155
|
-
export type RuleNumberOperator = (typeof RuleNumberOperator)[keyof typeof RuleNumberOperator];
|
|
2156
1777
|
/**
|
|
2157
1778
|
* <p>A number expression to match numeric conditions with integers from the incoming email.</p>
|
|
2158
1779
|
* @public
|
|
@@ -2174,24 +1795,6 @@ export interface RuleNumberExpression {
|
|
|
2174
1795
|
*/
|
|
2175
1796
|
Value: number | undefined;
|
|
2176
1797
|
}
|
|
2177
|
-
/**
|
|
2178
|
-
* @public
|
|
2179
|
-
* @enum
|
|
2180
|
-
*/
|
|
2181
|
-
export declare const RuleStringEmailAttribute: {
|
|
2182
|
-
readonly CC: "CC";
|
|
2183
|
-
readonly FROM: "FROM";
|
|
2184
|
-
readonly HELO: "HELO";
|
|
2185
|
-
readonly MAIL_FROM: "MAIL_FROM";
|
|
2186
|
-
readonly RECIPIENT: "RECIPIENT";
|
|
2187
|
-
readonly SENDER: "SENDER";
|
|
2188
|
-
readonly SUBJECT: "SUBJECT";
|
|
2189
|
-
readonly TO: "TO";
|
|
2190
|
-
};
|
|
2191
|
-
/**
|
|
2192
|
-
* @public
|
|
2193
|
-
*/
|
|
2194
|
-
export type RuleStringEmailAttribute = (typeof RuleStringEmailAttribute)[keyof typeof RuleStringEmailAttribute];
|
|
2195
1798
|
/**
|
|
2196
1799
|
* <p>The string to evaluate in a string condition expression.</p>
|
|
2197
1800
|
* @public
|
|
@@ -2251,21 +1854,6 @@ export declare namespace RuleStringToEvaluate {
|
|
|
2251
1854
|
_: (name: string, value: any) => T;
|
|
2252
1855
|
}
|
|
2253
1856
|
}
|
|
2254
|
-
/**
|
|
2255
|
-
* @public
|
|
2256
|
-
* @enum
|
|
2257
|
-
*/
|
|
2258
|
-
export declare const RuleStringOperator: {
|
|
2259
|
-
readonly CONTAINS: "CONTAINS";
|
|
2260
|
-
readonly ENDS_WITH: "ENDS_WITH";
|
|
2261
|
-
readonly EQUALS: "EQUALS";
|
|
2262
|
-
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
2263
|
-
readonly STARTS_WITH: "STARTS_WITH";
|
|
2264
|
-
};
|
|
2265
|
-
/**
|
|
2266
|
-
* @public
|
|
2267
|
-
*/
|
|
2268
|
-
export type RuleStringOperator = (typeof RuleStringOperator)[keyof typeof RuleStringOperator];
|
|
2269
1857
|
/**
|
|
2270
1858
|
* <p>A string expression is evaluated against strings or substrings of the email.</p>
|
|
2271
1859
|
* @public
|
|
@@ -2287,18 +1875,6 @@ export interface RuleStringExpression {
|
|
|
2287
1875
|
*/
|
|
2288
1876
|
Values: string[] | undefined;
|
|
2289
1877
|
}
|
|
2290
|
-
/**
|
|
2291
|
-
* @public
|
|
2292
|
-
* @enum
|
|
2293
|
-
*/
|
|
2294
|
-
export declare const RuleVerdictAttribute: {
|
|
2295
|
-
readonly DKIM: "DKIM";
|
|
2296
|
-
readonly SPF: "SPF";
|
|
2297
|
-
};
|
|
2298
|
-
/**
|
|
2299
|
-
* @public
|
|
2300
|
-
*/
|
|
2301
|
-
export type RuleVerdictAttribute = (typeof RuleVerdictAttribute)[keyof typeof RuleVerdictAttribute];
|
|
2302
1878
|
/**
|
|
2303
1879
|
* <p>The verdict to evaluate in a verdict condition expression.</p>
|
|
2304
1880
|
* @public
|
|
@@ -2344,32 +1920,6 @@ export declare namespace RuleVerdictToEvaluate {
|
|
|
2344
1920
|
_: (name: string, value: any) => T;
|
|
2345
1921
|
}
|
|
2346
1922
|
}
|
|
2347
|
-
/**
|
|
2348
|
-
* @public
|
|
2349
|
-
* @enum
|
|
2350
|
-
*/
|
|
2351
|
-
export declare const RuleVerdictOperator: {
|
|
2352
|
-
readonly EQUALS: "EQUALS";
|
|
2353
|
-
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
2354
|
-
};
|
|
2355
|
-
/**
|
|
2356
|
-
* @public
|
|
2357
|
-
*/
|
|
2358
|
-
export type RuleVerdictOperator = (typeof RuleVerdictOperator)[keyof typeof RuleVerdictOperator];
|
|
2359
|
-
/**
|
|
2360
|
-
* @public
|
|
2361
|
-
* @enum
|
|
2362
|
-
*/
|
|
2363
|
-
export declare const RuleVerdict: {
|
|
2364
|
-
readonly FAIL: "FAIL";
|
|
2365
|
-
readonly GRAY: "GRAY";
|
|
2366
|
-
readonly PASS: "PASS";
|
|
2367
|
-
readonly PROCESSING_FAILED: "PROCESSING_FAILED";
|
|
2368
|
-
};
|
|
2369
|
-
/**
|
|
2370
|
-
* @public
|
|
2371
|
-
*/
|
|
2372
|
-
export type RuleVerdict = (typeof RuleVerdict)[keyof typeof RuleVerdict];
|
|
2373
1923
|
/**
|
|
2374
1924
|
* <p>A verdict expression is evaluated against verdicts of the email.</p>
|
|
2375
1925
|
* @public
|
|
@@ -2581,17 +2131,6 @@ export interface IngressAnalysis {
|
|
|
2581
2131
|
*/
|
|
2582
2132
|
ResultField: string | undefined;
|
|
2583
2133
|
}
|
|
2584
|
-
/**
|
|
2585
|
-
* @public
|
|
2586
|
-
* @enum
|
|
2587
|
-
*/
|
|
2588
|
-
export declare const IngressAddressListEmailAttribute: {
|
|
2589
|
-
readonly RECIPIENT: "RECIPIENT";
|
|
2590
|
-
};
|
|
2591
|
-
/**
|
|
2592
|
-
* @public
|
|
2593
|
-
*/
|
|
2594
|
-
export type IngressAddressListEmailAttribute = (typeof IngressAddressListEmailAttribute)[keyof typeof IngressAddressListEmailAttribute];
|
|
2595
2134
|
/**
|
|
2596
2135
|
* <p>The address lists and the address list attribute value that is evaluated in a policy statement's conditional expression to either deny or block the incoming email.</p>
|
|
2597
2136
|
* @public
|
|
@@ -2653,18 +2192,6 @@ export declare namespace IngressBooleanToEvaluate {
|
|
|
2653
2192
|
_: (name: string, value: any) => T;
|
|
2654
2193
|
}
|
|
2655
2194
|
}
|
|
2656
|
-
/**
|
|
2657
|
-
* @public
|
|
2658
|
-
* @enum
|
|
2659
|
-
*/
|
|
2660
|
-
export declare const IngressBooleanOperator: {
|
|
2661
|
-
readonly IS_FALSE: "IS_FALSE";
|
|
2662
|
-
readonly IS_TRUE: "IS_TRUE";
|
|
2663
|
-
};
|
|
2664
|
-
/**
|
|
2665
|
-
* @public
|
|
2666
|
-
*/
|
|
2667
|
-
export type IngressBooleanOperator = (typeof IngressBooleanOperator)[keyof typeof IngressBooleanOperator];
|
|
2668
2195
|
/**
|
|
2669
2196
|
* <p>The structure for a boolean condition matching on the incoming mail.</p>
|
|
2670
2197
|
* @public
|
|
@@ -2681,17 +2208,6 @@ export interface IngressBooleanExpression {
|
|
|
2681
2208
|
*/
|
|
2682
2209
|
Operator: IngressBooleanOperator | undefined;
|
|
2683
2210
|
}
|
|
2684
|
-
/**
|
|
2685
|
-
* @public
|
|
2686
|
-
* @enum
|
|
2687
|
-
*/
|
|
2688
|
-
export declare const IngressIpv4Attribute: {
|
|
2689
|
-
readonly SENDER_IP: "SENDER_IP";
|
|
2690
|
-
};
|
|
2691
|
-
/**
|
|
2692
|
-
* @public
|
|
2693
|
-
*/
|
|
2694
|
-
export type IngressIpv4Attribute = (typeof IngressIpv4Attribute)[keyof typeof IngressIpv4Attribute];
|
|
2695
2211
|
/**
|
|
2696
2212
|
* <p>The structure for an IP based condition matching on the incoming mail.</p>
|
|
2697
2213
|
* @public
|
|
@@ -2725,18 +2241,6 @@ export declare namespace IngressIpToEvaluate {
|
|
|
2725
2241
|
_: (name: string, value: any) => T;
|
|
2726
2242
|
}
|
|
2727
2243
|
}
|
|
2728
|
-
/**
|
|
2729
|
-
* @public
|
|
2730
|
-
* @enum
|
|
2731
|
-
*/
|
|
2732
|
-
export declare const IngressIpOperator: {
|
|
2733
|
-
readonly CIDR_MATCHES: "CIDR_MATCHES";
|
|
2734
|
-
readonly NOT_CIDR_MATCHES: "NOT_CIDR_MATCHES";
|
|
2735
|
-
};
|
|
2736
|
-
/**
|
|
2737
|
-
* @public
|
|
2738
|
-
*/
|
|
2739
|
-
export type IngressIpOperator = (typeof IngressIpOperator)[keyof typeof IngressIpOperator];
|
|
2740
2244
|
/**
|
|
2741
2245
|
* <p>The union type representing the allowed types for the left hand side of an IP condition.</p>
|
|
2742
2246
|
* @public
|
|
@@ -2758,17 +2262,6 @@ export interface IngressIpv4Expression {
|
|
|
2758
2262
|
*/
|
|
2759
2263
|
Values: string[] | undefined;
|
|
2760
2264
|
}
|
|
2761
|
-
/**
|
|
2762
|
-
* @public
|
|
2763
|
-
* @enum
|
|
2764
|
-
*/
|
|
2765
|
-
export declare const IngressIpv6Attribute: {
|
|
2766
|
-
readonly SENDER_IPV6: "SENDER_IPV6";
|
|
2767
|
-
};
|
|
2768
|
-
/**
|
|
2769
|
-
* @public
|
|
2770
|
-
*/
|
|
2771
|
-
export type IngressIpv6Attribute = (typeof IngressIpv6Attribute)[keyof typeof IngressIpv6Attribute];
|
|
2772
2265
|
/**
|
|
2773
2266
|
* <p>The structure for an IPv6 based condition matching on the incoming mail.</p>
|
|
2774
2267
|
* @public
|
|
@@ -2823,17 +2316,6 @@ export interface IngressIpv6Expression {
|
|
|
2823
2316
|
*/
|
|
2824
2317
|
Values: string[] | undefined;
|
|
2825
2318
|
}
|
|
2826
|
-
/**
|
|
2827
|
-
* @public
|
|
2828
|
-
* @enum
|
|
2829
|
-
*/
|
|
2830
|
-
export declare const IngressStringEmailAttribute: {
|
|
2831
|
-
readonly RECIPIENT: "RECIPIENT";
|
|
2832
|
-
};
|
|
2833
|
-
/**
|
|
2834
|
-
* @public
|
|
2835
|
-
*/
|
|
2836
|
-
export type IngressStringEmailAttribute = (typeof IngressStringEmailAttribute)[keyof typeof IngressStringEmailAttribute];
|
|
2837
2319
|
/**
|
|
2838
2320
|
* <p>The union type representing the allowed types for the left hand side of a string condition.</p>
|
|
2839
2321
|
* @public
|
|
@@ -2879,21 +2361,6 @@ export declare namespace IngressStringToEvaluate {
|
|
|
2879
2361
|
_: (name: string, value: any) => T;
|
|
2880
2362
|
}
|
|
2881
2363
|
}
|
|
2882
|
-
/**
|
|
2883
|
-
* @public
|
|
2884
|
-
* @enum
|
|
2885
|
-
*/
|
|
2886
|
-
export declare const IngressStringOperator: {
|
|
2887
|
-
readonly CONTAINS: "CONTAINS";
|
|
2888
|
-
readonly ENDS_WITH: "ENDS_WITH";
|
|
2889
|
-
readonly EQUALS: "EQUALS";
|
|
2890
|
-
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
2891
|
-
readonly STARTS_WITH: "STARTS_WITH";
|
|
2892
|
-
};
|
|
2893
|
-
/**
|
|
2894
|
-
* @public
|
|
2895
|
-
*/
|
|
2896
|
-
export type IngressStringOperator = (typeof IngressStringOperator)[keyof typeof IngressStringOperator];
|
|
2897
2364
|
/**
|
|
2898
2365
|
* <p>The structure for a string based condition matching on the incoming mail.</p>
|
|
2899
2366
|
* @public
|
|
@@ -2915,17 +2382,6 @@ export interface IngressStringExpression {
|
|
|
2915
2382
|
*/
|
|
2916
2383
|
Values: string[] | undefined;
|
|
2917
2384
|
}
|
|
2918
|
-
/**
|
|
2919
|
-
* @public
|
|
2920
|
-
* @enum
|
|
2921
|
-
*/
|
|
2922
|
-
export declare const IngressTlsAttribute: {
|
|
2923
|
-
readonly TLS_PROTOCOL: "TLS_PROTOCOL";
|
|
2924
|
-
};
|
|
2925
|
-
/**
|
|
2926
|
-
* @public
|
|
2927
|
-
*/
|
|
2928
|
-
export type IngressTlsAttribute = (typeof IngressTlsAttribute)[keyof typeof IngressTlsAttribute];
|
|
2929
2385
|
/**
|
|
2930
2386
|
* <p>The union type representing the allowed types for the left hand side of a TLS condition.</p>
|
|
2931
2387
|
* @public
|
|
@@ -2959,30 +2415,6 @@ export declare namespace IngressTlsProtocolToEvaluate {
|
|
|
2959
2415
|
_: (name: string, value: any) => T;
|
|
2960
2416
|
}
|
|
2961
2417
|
}
|
|
2962
|
-
/**
|
|
2963
|
-
* @public
|
|
2964
|
-
* @enum
|
|
2965
|
-
*/
|
|
2966
|
-
export declare const IngressTlsProtocolOperator: {
|
|
2967
|
-
readonly IS: "IS";
|
|
2968
|
-
readonly MINIMUM_TLS_VERSION: "MINIMUM_TLS_VERSION";
|
|
2969
|
-
};
|
|
2970
|
-
/**
|
|
2971
|
-
* @public
|
|
2972
|
-
*/
|
|
2973
|
-
export type IngressTlsProtocolOperator = (typeof IngressTlsProtocolOperator)[keyof typeof IngressTlsProtocolOperator];
|
|
2974
|
-
/**
|
|
2975
|
-
* @public
|
|
2976
|
-
* @enum
|
|
2977
|
-
*/
|
|
2978
|
-
export declare const IngressTlsProtocolAttribute: {
|
|
2979
|
-
readonly TLS1_2: "TLS1_2";
|
|
2980
|
-
readonly TLS1_3: "TLS1_3";
|
|
2981
|
-
};
|
|
2982
|
-
/**
|
|
2983
|
-
* @public
|
|
2984
|
-
*/
|
|
2985
|
-
export type IngressTlsProtocolAttribute = (typeof IngressTlsProtocolAttribute)[keyof typeof IngressTlsProtocolAttribute];
|
|
2986
2418
|
/**
|
|
2987
2419
|
* <p>The structure for a TLS related condition matching on the incoming mail.</p>
|
|
2988
2420
|
* @public
|
|
@@ -3303,22 +2735,6 @@ export declare namespace ExportDestinationConfiguration {
|
|
|
3303
2735
|
_: (name: string, value: any) => T;
|
|
3304
2736
|
}
|
|
3305
2737
|
}
|
|
3306
|
-
/**
|
|
3307
|
-
* @public
|
|
3308
|
-
* @enum
|
|
3309
|
-
*/
|
|
3310
|
-
export declare const ExportState: {
|
|
3311
|
-
readonly CANCELLED: "CANCELLED";
|
|
3312
|
-
readonly COMPLETED: "COMPLETED";
|
|
3313
|
-
readonly FAILED: "FAILED";
|
|
3314
|
-
readonly PREPROCESSING: "PREPROCESSING";
|
|
3315
|
-
readonly PROCESSING: "PROCESSING";
|
|
3316
|
-
readonly QUEUED: "QUEUED";
|
|
3317
|
-
};
|
|
3318
|
-
/**
|
|
3319
|
-
* @public
|
|
3320
|
-
*/
|
|
3321
|
-
export type ExportState = (typeof ExportState)[keyof typeof ExportState];
|
|
3322
2738
|
/**
|
|
3323
2739
|
* <p>The current status of an archive export job.</p>
|
|
3324
2740
|
* @public
|
|
@@ -3371,21 +2787,6 @@ export interface GetAddressListImportJobRequest {
|
|
|
3371
2787
|
*/
|
|
3372
2788
|
JobId: string | undefined;
|
|
3373
2789
|
}
|
|
3374
|
-
/**
|
|
3375
|
-
* @public
|
|
3376
|
-
* @enum
|
|
3377
|
-
*/
|
|
3378
|
-
export declare const ImportJobStatus: {
|
|
3379
|
-
readonly COMPLETED: "COMPLETED";
|
|
3380
|
-
readonly CREATED: "CREATED";
|
|
3381
|
-
readonly FAILED: "FAILED";
|
|
3382
|
-
readonly PROCESSING: "PROCESSING";
|
|
3383
|
-
readonly STOPPED: "STOPPED";
|
|
3384
|
-
};
|
|
3385
|
-
/**
|
|
3386
|
-
* @public
|
|
3387
|
-
*/
|
|
3388
|
-
export type ImportJobStatus = (typeof ImportJobStatus)[keyof typeof ImportJobStatus];
|
|
3389
2790
|
/**
|
|
3390
2791
|
* @public
|
|
3391
2792
|
*/
|
|
@@ -3660,21 +3061,6 @@ export interface GetArchiveSearchRequest {
|
|
|
3660
3061
|
*/
|
|
3661
3062
|
SearchId: string | undefined;
|
|
3662
3063
|
}
|
|
3663
|
-
/**
|
|
3664
|
-
* @public
|
|
3665
|
-
* @enum
|
|
3666
|
-
*/
|
|
3667
|
-
export declare const SearchState: {
|
|
3668
|
-
readonly CANCELLED: "CANCELLED";
|
|
3669
|
-
readonly COMPLETED: "COMPLETED";
|
|
3670
|
-
readonly FAILED: "FAILED";
|
|
3671
|
-
readonly QUEUED: "QUEUED";
|
|
3672
|
-
readonly RUNNING: "RUNNING";
|
|
3673
|
-
};
|
|
3674
|
-
/**
|
|
3675
|
-
* @public
|
|
3676
|
-
*/
|
|
3677
|
-
export type SearchState = (typeof SearchState)[keyof typeof SearchState];
|
|
3678
3064
|
/**
|
|
3679
3065
|
* <p>The current status of an archive search job.</p>
|
|
3680
3066
|
* @public
|
|
@@ -3907,22 +3293,6 @@ export interface IngressPointAuthConfiguration {
|
|
|
3907
3293
|
*/
|
|
3908
3294
|
SecretArn?: string | undefined;
|
|
3909
3295
|
}
|
|
3910
|
-
/**
|
|
3911
|
-
* @public
|
|
3912
|
-
* @enum
|
|
3913
|
-
*/
|
|
3914
|
-
export declare const IngressPointStatus: {
|
|
3915
|
-
readonly ACTIVE: "ACTIVE";
|
|
3916
|
-
readonly CLOSED: "CLOSED";
|
|
3917
|
-
readonly DEPROVISIONING: "DEPROVISIONING";
|
|
3918
|
-
readonly FAILED: "FAILED";
|
|
3919
|
-
readonly PROVISIONING: "PROVISIONING";
|
|
3920
|
-
readonly UPDATING: "UPDATING";
|
|
3921
|
-
};
|
|
3922
|
-
/**
|
|
3923
|
-
* @public
|
|
3924
|
-
*/
|
|
3925
|
-
export type IngressPointStatus = (typeof IngressPointStatus)[keyof typeof IngressPointStatus];
|
|
3926
3296
|
/**
|
|
3927
3297
|
* @public
|
|
3928
3298
|
*/
|
|
@@ -4300,18 +3670,6 @@ export interface ListIngressPointsResponse {
|
|
|
4300
3670
|
*/
|
|
4301
3671
|
NextToken?: string | undefined;
|
|
4302
3672
|
}
|
|
4303
|
-
/**
|
|
4304
|
-
* @public
|
|
4305
|
-
* @enum
|
|
4306
|
-
*/
|
|
4307
|
-
export declare const IngressPointStatusToUpdate: {
|
|
4308
|
-
readonly ACTIVE: "ACTIVE";
|
|
4309
|
-
readonly CLOSED: "CLOSED";
|
|
4310
|
-
};
|
|
4311
|
-
/**
|
|
4312
|
-
* @public
|
|
4313
|
-
*/
|
|
4314
|
-
export type IngressPointStatusToUpdate = (typeof IngressPointStatusToUpdate)[keyof typeof IngressPointStatusToUpdate];
|
|
4315
3673
|
/**
|
|
4316
3674
|
* @public
|
|
4317
3675
|
*/
|