@aws-sdk/client-mailmanager 3.775.0 → 3.782.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/models/models_0.js +30 -2
- package/dist-cjs/protocols/Aws_json1_0.js +2 -0
- package/dist-es/models/models_0.js +28 -0
- package/dist-es/protocols/Aws_json1_0.js +2 -0
- package/dist-types/commands/CreateAddonInstanceCommand.d.ts +1 -0
- package/dist-types/commands/CreateAddonSubscriptionCommand.d.ts +1 -0
- package/dist-types/commands/CreateAddressListCommand.d.ts +1 -0
- package/dist-types/commands/CreateAddressListImportJobCommand.d.ts +1 -0
- package/dist-types/commands/CreateArchiveCommand.d.ts +1 -0
- package/dist-types/commands/CreateIngressPointCommand.d.ts +87 -0
- package/dist-types/commands/CreateRelayCommand.d.ts +1 -0
- package/dist-types/commands/CreateRuleSetCommand.d.ts +1 -0
- package/dist-types/commands/CreateTrafficPolicyCommand.d.ts +44 -0
- package/dist-types/commands/DeleteAddonInstanceCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAddonSubscriptionCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAddressListCommand.d.ts +1 -0
- package/dist-types/commands/DeleteArchiveCommand.d.ts +1 -0
- package/dist-types/commands/DeleteIngressPointCommand.d.ts +14 -0
- package/dist-types/commands/DeleteRelayCommand.d.ts +1 -0
- package/dist-types/commands/DeleteRuleSetCommand.d.ts +1 -0
- package/dist-types/commands/DeleteTrafficPolicyCommand.d.ts +14 -0
- package/dist-types/commands/DeregisterMemberFromAddressListCommand.d.ts +1 -0
- package/dist-types/commands/GetAddonInstanceCommand.d.ts +1 -0
- package/dist-types/commands/GetAddonSubscriptionCommand.d.ts +1 -0
- package/dist-types/commands/GetAddressListCommand.d.ts +1 -0
- package/dist-types/commands/GetAddressListImportJobCommand.d.ts +1 -0
- package/dist-types/commands/GetArchiveCommand.d.ts +1 -0
- package/dist-types/commands/GetArchiveExportCommand.d.ts +1 -0
- package/dist-types/commands/GetArchiveMessageCommand.d.ts +1 -0
- package/dist-types/commands/GetArchiveMessageContentCommand.d.ts +1 -0
- package/dist-types/commands/GetArchiveSearchCommand.d.ts +1 -0
- package/dist-types/commands/GetArchiveSearchResultsCommand.d.ts +1 -0
- package/dist-types/commands/GetIngressPointCommand.d.ts +52 -0
- package/dist-types/commands/GetMemberOfAddressListCommand.d.ts +1 -0
- package/dist-types/commands/GetRelayCommand.d.ts +1 -0
- package/dist-types/commands/GetRuleSetCommand.d.ts +1 -0
- package/dist-types/commands/GetTrafficPolicyCommand.d.ts +48 -0
- package/dist-types/commands/ListAddonInstancesCommand.d.ts +1 -0
- package/dist-types/commands/ListAddonSubscriptionsCommand.d.ts +1 -0
- package/dist-types/commands/ListAddressListImportJobsCommand.d.ts +1 -0
- package/dist-types/commands/ListAddressListsCommand.d.ts +1 -0
- package/dist-types/commands/ListArchiveExportsCommand.d.ts +1 -0
- package/dist-types/commands/ListArchiveSearchesCommand.d.ts +1 -0
- package/dist-types/commands/ListArchivesCommand.d.ts +1 -0
- package/dist-types/commands/ListIngressPointsCommand.d.ts +68 -0
- package/dist-types/commands/ListMembersOfAddressListCommand.d.ts +1 -0
- package/dist-types/commands/ListRelaysCommand.d.ts +1 -0
- package/dist-types/commands/ListRuleSetsCommand.d.ts +1 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -0
- package/dist-types/commands/ListTrafficPoliciesCommand.d.ts +62 -0
- package/dist-types/commands/RegisterMemberToAddressListCommand.d.ts +1 -0
- package/dist-types/commands/StartAddressListImportJobCommand.d.ts +1 -0
- package/dist-types/commands/StartArchiveExportCommand.d.ts +1 -0
- package/dist-types/commands/StartArchiveSearchCommand.d.ts +1 -0
- package/dist-types/commands/StopAddressListImportJobCommand.d.ts +1 -0
- package/dist-types/commands/StopArchiveExportCommand.d.ts +1 -0
- package/dist-types/commands/StopArchiveSearchCommand.d.ts +1 -0
- package/dist-types/commands/TagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateArchiveCommand.d.ts +1 -0
- package/dist-types/commands/UpdateIngressPointCommand.d.ts +62 -0
- package/dist-types/commands/UpdateRelayCommand.d.ts +1 -0
- package/dist-types/commands/UpdateRuleSetCommand.d.ts +1 -0
- package/dist-types/commands/UpdateTrafficPolicyCommand.d.ts +70 -0
- package/dist-types/models/models_0.d.ts +171 -1
- package/dist-types/ts3.4/models/models_0.d.ts +83 -0
- package/package.json +5 -5
|
@@ -1222,6 +1222,82 @@ export declare namespace IngressPointConfiguration {
|
|
|
1222
1222
|
}
|
|
1223
1223
|
const visit: <T>(value: IngressPointConfiguration, visitor: Visitor<T>) => T;
|
|
1224
1224
|
}
|
|
1225
|
+
/**
|
|
1226
|
+
* <p>Specifies the network configuration for the private ingress point.</p>
|
|
1227
|
+
* @public
|
|
1228
|
+
*/
|
|
1229
|
+
export interface PrivateNetworkConfiguration {
|
|
1230
|
+
/**
|
|
1231
|
+
* <p>The identifier of the VPC endpoint to associate with this private ingress point.</p>
|
|
1232
|
+
* @public
|
|
1233
|
+
*/
|
|
1234
|
+
VpcEndpointId: string | undefined;
|
|
1235
|
+
}
|
|
1236
|
+
/**
|
|
1237
|
+
* @public
|
|
1238
|
+
* @enum
|
|
1239
|
+
*/
|
|
1240
|
+
export declare const IpType: {
|
|
1241
|
+
readonly DUAL_STACK: "DUAL_STACK";
|
|
1242
|
+
readonly IPV4: "IPV4";
|
|
1243
|
+
};
|
|
1244
|
+
/**
|
|
1245
|
+
* @public
|
|
1246
|
+
*/
|
|
1247
|
+
export type IpType = (typeof IpType)[keyof typeof IpType];
|
|
1248
|
+
/**
|
|
1249
|
+
* <p>Specifies the network configuration for the public ingress point.</p>
|
|
1250
|
+
* @public
|
|
1251
|
+
*/
|
|
1252
|
+
export interface PublicNetworkConfiguration {
|
|
1253
|
+
/**
|
|
1254
|
+
* <p>The IP address type for the public ingress point. Valid values are IPV4 and DUAL_STACK.</p>
|
|
1255
|
+
* @public
|
|
1256
|
+
*/
|
|
1257
|
+
IpType: IpType | undefined;
|
|
1258
|
+
}
|
|
1259
|
+
/**
|
|
1260
|
+
* <p>The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.</p>
|
|
1261
|
+
* @public
|
|
1262
|
+
*/
|
|
1263
|
+
export type NetworkConfiguration = NetworkConfiguration.PrivateNetworkConfigurationMember | NetworkConfiguration.PublicNetworkConfigurationMember | NetworkConfiguration.$UnknownMember;
|
|
1264
|
+
/**
|
|
1265
|
+
* @public
|
|
1266
|
+
*/
|
|
1267
|
+
export declare namespace NetworkConfiguration {
|
|
1268
|
+
/**
|
|
1269
|
+
* <p>Specifies the network configuration for the public ingress point.</p>
|
|
1270
|
+
* @public
|
|
1271
|
+
*/
|
|
1272
|
+
interface PublicNetworkConfigurationMember {
|
|
1273
|
+
PublicNetworkConfiguration: PublicNetworkConfiguration;
|
|
1274
|
+
PrivateNetworkConfiguration?: never;
|
|
1275
|
+
$unknown?: never;
|
|
1276
|
+
}
|
|
1277
|
+
/**
|
|
1278
|
+
* <p>Specifies the network configuration for the private ingress point.</p>
|
|
1279
|
+
* @public
|
|
1280
|
+
*/
|
|
1281
|
+
interface PrivateNetworkConfigurationMember {
|
|
1282
|
+
PublicNetworkConfiguration?: never;
|
|
1283
|
+
PrivateNetworkConfiguration: PrivateNetworkConfiguration;
|
|
1284
|
+
$unknown?: never;
|
|
1285
|
+
}
|
|
1286
|
+
/**
|
|
1287
|
+
* @public
|
|
1288
|
+
*/
|
|
1289
|
+
interface $UnknownMember {
|
|
1290
|
+
PublicNetworkConfiguration?: never;
|
|
1291
|
+
PrivateNetworkConfiguration?: never;
|
|
1292
|
+
$unknown: [string, any];
|
|
1293
|
+
}
|
|
1294
|
+
interface Visitor<T> {
|
|
1295
|
+
PublicNetworkConfiguration: (value: PublicNetworkConfiguration) => T;
|
|
1296
|
+
PrivateNetworkConfiguration: (value: PrivateNetworkConfiguration) => T;
|
|
1297
|
+
_: (name: string, value: any) => T;
|
|
1298
|
+
}
|
|
1299
|
+
const visit: <T>(value: NetworkConfiguration, visitor: Visitor<T>) => T;
|
|
1300
|
+
}
|
|
1225
1301
|
/**
|
|
1226
1302
|
* @public
|
|
1227
1303
|
* @enum
|
|
@@ -1272,6 +1348,13 @@ export interface CreateIngressPointRequest {
|
|
|
1272
1348
|
* @public
|
|
1273
1349
|
*/
|
|
1274
1350
|
IngressPointConfiguration?: IngressPointConfiguration | undefined;
|
|
1351
|
+
/**
|
|
1352
|
+
* <p>Specifies the network configuration for the ingress point.
|
|
1353
|
+
* This allows you to create an IPv4-only, Dual-Stack, or PrivateLink type of ingress point. If not specified, the default network type is IPv4-only.
|
|
1354
|
+
* </p>
|
|
1355
|
+
* @public
|
|
1356
|
+
*/
|
|
1357
|
+
NetworkConfiguration?: NetworkConfiguration | undefined;
|
|
1275
1358
|
/**
|
|
1276
1359
|
* <p>The tags used to organize, track, or control access for the resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
1277
1360
|
* @public
|
|
@@ -2664,6 +2747,68 @@ export interface IngressIpv4Expression {
|
|
|
2664
2747
|
*/
|
|
2665
2748
|
Values: string[] | undefined;
|
|
2666
2749
|
}
|
|
2750
|
+
/**
|
|
2751
|
+
* @public
|
|
2752
|
+
* @enum
|
|
2753
|
+
*/
|
|
2754
|
+
export declare const IngressIpv6Attribute: {
|
|
2755
|
+
readonly SENDER_IPV6: "SENDER_IPV6";
|
|
2756
|
+
};
|
|
2757
|
+
/**
|
|
2758
|
+
* @public
|
|
2759
|
+
*/
|
|
2760
|
+
export type IngressIpv6Attribute = (typeof IngressIpv6Attribute)[keyof typeof IngressIpv6Attribute];
|
|
2761
|
+
/**
|
|
2762
|
+
* <p>The structure for an IPv6 based condition matching on the incoming mail.</p>
|
|
2763
|
+
* @public
|
|
2764
|
+
*/
|
|
2765
|
+
export type IngressIpv6ToEvaluate = IngressIpv6ToEvaluate.AttributeMember | IngressIpv6ToEvaluate.$UnknownMember;
|
|
2766
|
+
/**
|
|
2767
|
+
* @public
|
|
2768
|
+
*/
|
|
2769
|
+
export declare namespace IngressIpv6ToEvaluate {
|
|
2770
|
+
/**
|
|
2771
|
+
* <p>An enum type representing the allowed attribute types for an IPv6 condition.</p>
|
|
2772
|
+
* @public
|
|
2773
|
+
*/
|
|
2774
|
+
interface AttributeMember {
|
|
2775
|
+
Attribute: IngressIpv6Attribute;
|
|
2776
|
+
$unknown?: never;
|
|
2777
|
+
}
|
|
2778
|
+
/**
|
|
2779
|
+
* @public
|
|
2780
|
+
*/
|
|
2781
|
+
interface $UnknownMember {
|
|
2782
|
+
Attribute?: never;
|
|
2783
|
+
$unknown: [string, any];
|
|
2784
|
+
}
|
|
2785
|
+
interface Visitor<T> {
|
|
2786
|
+
Attribute: (value: IngressIpv6Attribute) => T;
|
|
2787
|
+
_: (name: string, value: any) => T;
|
|
2788
|
+
}
|
|
2789
|
+
const visit: <T>(value: IngressIpv6ToEvaluate, visitor: Visitor<T>) => T;
|
|
2790
|
+
}
|
|
2791
|
+
/**
|
|
2792
|
+
* <p>The union type representing the allowed types for the left hand side of an IPv6 condition.</p>
|
|
2793
|
+
* @public
|
|
2794
|
+
*/
|
|
2795
|
+
export interface IngressIpv6Expression {
|
|
2796
|
+
/**
|
|
2797
|
+
* <p>The left hand side argument of an IPv6 condition expression.</p>
|
|
2798
|
+
* @public
|
|
2799
|
+
*/
|
|
2800
|
+
Evaluate: IngressIpv6ToEvaluate | undefined;
|
|
2801
|
+
/**
|
|
2802
|
+
* <p>The matching operator for an IPv6 condition expression.</p>
|
|
2803
|
+
* @public
|
|
2804
|
+
*/
|
|
2805
|
+
Operator: IngressIpOperator | undefined;
|
|
2806
|
+
/**
|
|
2807
|
+
* <p>The right hand side argument of an IPv6 condition expression.</p>
|
|
2808
|
+
* @public
|
|
2809
|
+
*/
|
|
2810
|
+
Values: string[] | undefined;
|
|
2811
|
+
}
|
|
2667
2812
|
/**
|
|
2668
2813
|
* @public
|
|
2669
2814
|
* @enum
|
|
@@ -2846,7 +2991,7 @@ export interface IngressTlsProtocolExpression {
|
|
|
2846
2991
|
* resource.</p>
|
|
2847
2992
|
* @public
|
|
2848
2993
|
*/
|
|
2849
|
-
export type PolicyCondition = PolicyCondition.BooleanExpressionMember | PolicyCondition.IpExpressionMember | PolicyCondition.StringExpressionMember | PolicyCondition.TlsExpressionMember | PolicyCondition.$UnknownMember;
|
|
2994
|
+
export type PolicyCondition = PolicyCondition.BooleanExpressionMember | PolicyCondition.IpExpressionMember | PolicyCondition.Ipv6ExpressionMember | PolicyCondition.StringExpressionMember | PolicyCondition.TlsExpressionMember | PolicyCondition.$UnknownMember;
|
|
2850
2995
|
/**
|
|
2851
2996
|
* @public
|
|
2852
2997
|
*/
|
|
@@ -2860,6 +3005,7 @@ export declare namespace PolicyCondition {
|
|
|
2860
3005
|
interface StringExpressionMember {
|
|
2861
3006
|
StringExpression: IngressStringExpression;
|
|
2862
3007
|
IpExpression?: never;
|
|
3008
|
+
Ipv6Expression?: never;
|
|
2863
3009
|
TlsExpression?: never;
|
|
2864
3010
|
BooleanExpression?: never;
|
|
2865
3011
|
$unknown?: never;
|
|
@@ -2873,6 +3019,21 @@ export declare namespace PolicyCondition {
|
|
|
2873
3019
|
interface IpExpressionMember {
|
|
2874
3020
|
StringExpression?: never;
|
|
2875
3021
|
IpExpression: IngressIpv4Expression;
|
|
3022
|
+
Ipv6Expression?: never;
|
|
3023
|
+
TlsExpression?: never;
|
|
3024
|
+
BooleanExpression?: never;
|
|
3025
|
+
$unknown?: never;
|
|
3026
|
+
}
|
|
3027
|
+
/**
|
|
3028
|
+
* <p>This represents an IPv6 based condition matching on the incoming mail. It performs the
|
|
3029
|
+
* operation configured in 'Operator' and evaluates the 'Protocol' object against the
|
|
3030
|
+
* 'Value'.</p>
|
|
3031
|
+
* @public
|
|
3032
|
+
*/
|
|
3033
|
+
interface Ipv6ExpressionMember {
|
|
3034
|
+
StringExpression?: never;
|
|
3035
|
+
IpExpression?: never;
|
|
3036
|
+
Ipv6Expression: IngressIpv6Expression;
|
|
2876
3037
|
TlsExpression?: never;
|
|
2877
3038
|
BooleanExpression?: never;
|
|
2878
3039
|
$unknown?: never;
|
|
@@ -2886,6 +3047,7 @@ export declare namespace PolicyCondition {
|
|
|
2886
3047
|
interface TlsExpressionMember {
|
|
2887
3048
|
StringExpression?: never;
|
|
2888
3049
|
IpExpression?: never;
|
|
3050
|
+
Ipv6Expression?: never;
|
|
2889
3051
|
TlsExpression: IngressTlsProtocolExpression;
|
|
2890
3052
|
BooleanExpression?: never;
|
|
2891
3053
|
$unknown?: never;
|
|
@@ -2899,6 +3061,7 @@ export declare namespace PolicyCondition {
|
|
|
2899
3061
|
interface BooleanExpressionMember {
|
|
2900
3062
|
StringExpression?: never;
|
|
2901
3063
|
IpExpression?: never;
|
|
3064
|
+
Ipv6Expression?: never;
|
|
2902
3065
|
TlsExpression?: never;
|
|
2903
3066
|
BooleanExpression: IngressBooleanExpression;
|
|
2904
3067
|
$unknown?: never;
|
|
@@ -2909,6 +3072,7 @@ export declare namespace PolicyCondition {
|
|
|
2909
3072
|
interface $UnknownMember {
|
|
2910
3073
|
StringExpression?: never;
|
|
2911
3074
|
IpExpression?: never;
|
|
3075
|
+
Ipv6Expression?: never;
|
|
2912
3076
|
TlsExpression?: never;
|
|
2913
3077
|
BooleanExpression?: never;
|
|
2914
3078
|
$unknown: [string, any];
|
|
@@ -2916,6 +3080,7 @@ export declare namespace PolicyCondition {
|
|
|
2916
3080
|
interface Visitor<T> {
|
|
2917
3081
|
StringExpression: (value: IngressStringExpression) => T;
|
|
2918
3082
|
IpExpression: (value: IngressIpv4Expression) => T;
|
|
3083
|
+
Ipv6Expression: (value: IngressIpv6Expression) => T;
|
|
2919
3084
|
TlsExpression: (value: IngressTlsProtocolExpression) => T;
|
|
2920
3085
|
BooleanExpression: (value: IngressBooleanExpression) => T;
|
|
2921
3086
|
_: (name: string, value: any) => T;
|
|
@@ -3816,6 +3981,11 @@ export interface GetIngressPointResponse {
|
|
|
3816
3981
|
* @public
|
|
3817
3982
|
*/
|
|
3818
3983
|
IngressPointAuthConfiguration?: IngressPointAuthConfiguration | undefined;
|
|
3984
|
+
/**
|
|
3985
|
+
* <p>The network configuration for the ingress point.</p>
|
|
3986
|
+
* @public
|
|
3987
|
+
*/
|
|
3988
|
+
NetworkConfiguration?: NetworkConfiguration | undefined;
|
|
3819
3989
|
/**
|
|
3820
3990
|
* <p>The timestamp of when the ingress endpoint was created.</p>
|
|
3821
3991
|
* @public
|
|
@@ -421,6 +421,44 @@ export declare namespace IngressPointConfiguration {
|
|
|
421
421
|
}
|
|
422
422
|
const visit: <T>(value: IngressPointConfiguration, visitor: Visitor<T>) => T;
|
|
423
423
|
}
|
|
424
|
+
export interface PrivateNetworkConfiguration {
|
|
425
|
+
VpcEndpointId: string | undefined;
|
|
426
|
+
}
|
|
427
|
+
export declare const IpType: {
|
|
428
|
+
readonly DUAL_STACK: "DUAL_STACK";
|
|
429
|
+
readonly IPV4: "IPV4";
|
|
430
|
+
};
|
|
431
|
+
export type IpType = (typeof IpType)[keyof typeof IpType];
|
|
432
|
+
export interface PublicNetworkConfiguration {
|
|
433
|
+
IpType: IpType | undefined;
|
|
434
|
+
}
|
|
435
|
+
export type NetworkConfiguration =
|
|
436
|
+
| NetworkConfiguration.PrivateNetworkConfigurationMember
|
|
437
|
+
| NetworkConfiguration.PublicNetworkConfigurationMember
|
|
438
|
+
| NetworkConfiguration.$UnknownMember;
|
|
439
|
+
export declare namespace NetworkConfiguration {
|
|
440
|
+
interface PublicNetworkConfigurationMember {
|
|
441
|
+
PublicNetworkConfiguration: PublicNetworkConfiguration;
|
|
442
|
+
PrivateNetworkConfiguration?: never;
|
|
443
|
+
$unknown?: never;
|
|
444
|
+
}
|
|
445
|
+
interface PrivateNetworkConfigurationMember {
|
|
446
|
+
PublicNetworkConfiguration?: never;
|
|
447
|
+
PrivateNetworkConfiguration: PrivateNetworkConfiguration;
|
|
448
|
+
$unknown?: never;
|
|
449
|
+
}
|
|
450
|
+
interface $UnknownMember {
|
|
451
|
+
PublicNetworkConfiguration?: never;
|
|
452
|
+
PrivateNetworkConfiguration?: never;
|
|
453
|
+
$unknown: [string, any];
|
|
454
|
+
}
|
|
455
|
+
interface Visitor<T> {
|
|
456
|
+
PublicNetworkConfiguration: (value: PublicNetworkConfiguration) => T;
|
|
457
|
+
PrivateNetworkConfiguration: (value: PrivateNetworkConfiguration) => T;
|
|
458
|
+
_: (name: string, value: any) => T;
|
|
459
|
+
}
|
|
460
|
+
const visit: <T>(value: NetworkConfiguration, visitor: Visitor<T>) => T;
|
|
461
|
+
}
|
|
424
462
|
export declare const IngressPointType: {
|
|
425
463
|
readonly AUTH: "AUTH";
|
|
426
464
|
readonly OPEN: "OPEN";
|
|
@@ -434,6 +472,7 @@ export interface CreateIngressPointRequest {
|
|
|
434
472
|
RuleSetId: string | undefined;
|
|
435
473
|
TrafficPolicyId: string | undefined;
|
|
436
474
|
IngressPointConfiguration?: IngressPointConfiguration | undefined;
|
|
475
|
+
NetworkConfiguration?: NetworkConfiguration | undefined;
|
|
437
476
|
Tags?: Tag[] | undefined;
|
|
438
477
|
}
|
|
439
478
|
export interface CreateIngressPointResponse {
|
|
@@ -1115,6 +1154,34 @@ export interface IngressIpv4Expression {
|
|
|
1115
1154
|
Operator: IngressIpOperator | undefined;
|
|
1116
1155
|
Values: string[] | undefined;
|
|
1117
1156
|
}
|
|
1157
|
+
export declare const IngressIpv6Attribute: {
|
|
1158
|
+
readonly SENDER_IPV6: "SENDER_IPV6";
|
|
1159
|
+
};
|
|
1160
|
+
export type IngressIpv6Attribute =
|
|
1161
|
+
(typeof IngressIpv6Attribute)[keyof typeof IngressIpv6Attribute];
|
|
1162
|
+
export type IngressIpv6ToEvaluate =
|
|
1163
|
+
| IngressIpv6ToEvaluate.AttributeMember
|
|
1164
|
+
| IngressIpv6ToEvaluate.$UnknownMember;
|
|
1165
|
+
export declare namespace IngressIpv6ToEvaluate {
|
|
1166
|
+
interface AttributeMember {
|
|
1167
|
+
Attribute: IngressIpv6Attribute;
|
|
1168
|
+
$unknown?: never;
|
|
1169
|
+
}
|
|
1170
|
+
interface $UnknownMember {
|
|
1171
|
+
Attribute?: never;
|
|
1172
|
+
$unknown: [string, any];
|
|
1173
|
+
}
|
|
1174
|
+
interface Visitor<T> {
|
|
1175
|
+
Attribute: (value: IngressIpv6Attribute) => T;
|
|
1176
|
+
_: (name: string, value: any) => T;
|
|
1177
|
+
}
|
|
1178
|
+
const visit: <T>(value: IngressIpv6ToEvaluate, visitor: Visitor<T>) => T;
|
|
1179
|
+
}
|
|
1180
|
+
export interface IngressIpv6Expression {
|
|
1181
|
+
Evaluate: IngressIpv6ToEvaluate | undefined;
|
|
1182
|
+
Operator: IngressIpOperator | undefined;
|
|
1183
|
+
Values: string[] | undefined;
|
|
1184
|
+
}
|
|
1118
1185
|
export declare const IngressStringEmailAttribute: {
|
|
1119
1186
|
readonly RECIPIENT: "RECIPIENT";
|
|
1120
1187
|
};
|
|
@@ -1207,6 +1274,7 @@ export interface IngressTlsProtocolExpression {
|
|
|
1207
1274
|
export type PolicyCondition =
|
|
1208
1275
|
| PolicyCondition.BooleanExpressionMember
|
|
1209
1276
|
| PolicyCondition.IpExpressionMember
|
|
1277
|
+
| PolicyCondition.Ipv6ExpressionMember
|
|
1210
1278
|
| PolicyCondition.StringExpressionMember
|
|
1211
1279
|
| PolicyCondition.TlsExpressionMember
|
|
1212
1280
|
| PolicyCondition.$UnknownMember;
|
|
@@ -1214,6 +1282,7 @@ export declare namespace PolicyCondition {
|
|
|
1214
1282
|
interface StringExpressionMember {
|
|
1215
1283
|
StringExpression: IngressStringExpression;
|
|
1216
1284
|
IpExpression?: never;
|
|
1285
|
+
Ipv6Expression?: never;
|
|
1217
1286
|
TlsExpression?: never;
|
|
1218
1287
|
BooleanExpression?: never;
|
|
1219
1288
|
$unknown?: never;
|
|
@@ -1221,6 +1290,15 @@ export declare namespace PolicyCondition {
|
|
|
1221
1290
|
interface IpExpressionMember {
|
|
1222
1291
|
StringExpression?: never;
|
|
1223
1292
|
IpExpression: IngressIpv4Expression;
|
|
1293
|
+
Ipv6Expression?: never;
|
|
1294
|
+
TlsExpression?: never;
|
|
1295
|
+
BooleanExpression?: never;
|
|
1296
|
+
$unknown?: never;
|
|
1297
|
+
}
|
|
1298
|
+
interface Ipv6ExpressionMember {
|
|
1299
|
+
StringExpression?: never;
|
|
1300
|
+
IpExpression?: never;
|
|
1301
|
+
Ipv6Expression: IngressIpv6Expression;
|
|
1224
1302
|
TlsExpression?: never;
|
|
1225
1303
|
BooleanExpression?: never;
|
|
1226
1304
|
$unknown?: never;
|
|
@@ -1228,6 +1306,7 @@ export declare namespace PolicyCondition {
|
|
|
1228
1306
|
interface TlsExpressionMember {
|
|
1229
1307
|
StringExpression?: never;
|
|
1230
1308
|
IpExpression?: never;
|
|
1309
|
+
Ipv6Expression?: never;
|
|
1231
1310
|
TlsExpression: IngressTlsProtocolExpression;
|
|
1232
1311
|
BooleanExpression?: never;
|
|
1233
1312
|
$unknown?: never;
|
|
@@ -1235,6 +1314,7 @@ export declare namespace PolicyCondition {
|
|
|
1235
1314
|
interface BooleanExpressionMember {
|
|
1236
1315
|
StringExpression?: never;
|
|
1237
1316
|
IpExpression?: never;
|
|
1317
|
+
Ipv6Expression?: never;
|
|
1238
1318
|
TlsExpression?: never;
|
|
1239
1319
|
BooleanExpression: IngressBooleanExpression;
|
|
1240
1320
|
$unknown?: never;
|
|
@@ -1242,6 +1322,7 @@ export declare namespace PolicyCondition {
|
|
|
1242
1322
|
interface $UnknownMember {
|
|
1243
1323
|
StringExpression?: never;
|
|
1244
1324
|
IpExpression?: never;
|
|
1325
|
+
Ipv6Expression?: never;
|
|
1245
1326
|
TlsExpression?: never;
|
|
1246
1327
|
BooleanExpression?: never;
|
|
1247
1328
|
$unknown: [string, any];
|
|
@@ -1249,6 +1330,7 @@ export declare namespace PolicyCondition {
|
|
|
1249
1330
|
interface Visitor<T> {
|
|
1250
1331
|
StringExpression: (value: IngressStringExpression) => T;
|
|
1251
1332
|
IpExpression: (value: IngressIpv4Expression) => T;
|
|
1333
|
+
Ipv6Expression: (value: IngressIpv6Expression) => T;
|
|
1252
1334
|
TlsExpression: (value: IngressTlsProtocolExpression) => T;
|
|
1253
1335
|
BooleanExpression: (value: IngressBooleanExpression) => T;
|
|
1254
1336
|
_: (name: string, value: any) => T;
|
|
@@ -1497,6 +1579,7 @@ export interface GetIngressPointResponse {
|
|
|
1497
1579
|
RuleSetId?: string | undefined;
|
|
1498
1580
|
TrafficPolicyId?: string | undefined;
|
|
1499
1581
|
IngressPointAuthConfiguration?: IngressPointAuthConfiguration | undefined;
|
|
1582
|
+
NetworkConfiguration?: NetworkConfiguration | undefined;
|
|
1500
1583
|
CreatedTimestamp?: Date | undefined;
|
|
1501
1584
|
LastUpdatedTimestamp?: Date | undefined;
|
|
1502
1585
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mailmanager",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mailmanager Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.782.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.775.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.782.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.782.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
30
30
|
"@aws-sdk/types": "3.775.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.782.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.782.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.0",
|
|
35
35
|
"@smithy/core": "^3.2.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.2",
|