@aws-sdk/client-sesv2 3.199.0 → 3.200.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/CHANGELOG.md +11 -0
- package/README.md +7 -7
- package/dist-cjs/SESv2.js +60 -0
- package/dist-cjs/commands/BatchGetMetricDataCommand.js +46 -0
- package/dist-cjs/commands/ListRecommendationsCommand.js +46 -0
- package/dist-cjs/commands/PutAccountVdmAttributesCommand.js +46 -0
- package/dist-cjs/commands/PutConfigurationSetVdmOptionsCommand.js +46 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +173 -32
- package/dist-cjs/pagination/ListRecommendationsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +478 -4
- package/dist-es/SESv2.js +60 -0
- package/dist-es/commands/BatchGetMetricDataCommand.js +42 -0
- package/dist-es/commands/ListRecommendationsCommand.js +42 -0
- package/dist-es/commands/PutAccountVdmAttributesCommand.js +42 -0
- package/dist-es/commands/PutConfigurationSetVdmOptionsCommand.js +42 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +146 -24
- package/dist-es/pagination/ListRecommendationsPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +467 -1
- package/dist-types/SESv2.d.ts +33 -0
- package/dist-types/SESv2Client.d.ts +6 -2
- package/dist-types/commands/BatchGetMetricDataCommand.d.ts +39 -0
- package/dist-types/commands/ListRecommendationsCommand.d.ts +38 -0
- package/dist-types/commands/PutAccountVdmAttributesCommand.d.ts +38 -0
- package/dist-types/commands/PutConfigurationSetVdmOptionsCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +552 -22
- package/dist-types/pagination/ListRecommendationsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/ts3.4/SESv2.d.ts +68 -0
- package/dist-types/ts3.4/SESv2Client.d.ts +24 -0
- package/dist-types/ts3.4/commands/BatchGetMetricDataCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/PutAccountVdmAttributesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/PutConfigurationSetVdmOptionsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +194 -12
- package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +28 -28
|
@@ -47,6 +47,74 @@ export declare class BadRequestException extends __BaseException {
|
|
|
47
47
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
48
48
|
);
|
|
49
49
|
}
|
|
50
|
+
export declare enum MetricDimensionName {
|
|
51
|
+
CONFIGURATION_SET = "CONFIGURATION_SET",
|
|
52
|
+
EMAIL_IDENTITY = "EMAIL_IDENTITY",
|
|
53
|
+
ISP = "ISP",
|
|
54
|
+
}
|
|
55
|
+
export declare enum Metric {
|
|
56
|
+
CLICK = "CLICK",
|
|
57
|
+
COMPLAINT = "COMPLAINT",
|
|
58
|
+
DELIVERY = "DELIVERY",
|
|
59
|
+
DELIVERY_CLICK = "DELIVERY_CLICK",
|
|
60
|
+
DELIVERY_COMPLAINT = "DELIVERY_COMPLAINT",
|
|
61
|
+
DELIVERY_OPEN = "DELIVERY_OPEN",
|
|
62
|
+
OPEN = "OPEN",
|
|
63
|
+
PERMANENT_BOUNCE = "PERMANENT_BOUNCE",
|
|
64
|
+
SEND = "SEND",
|
|
65
|
+
TRANSIENT_BOUNCE = "TRANSIENT_BOUNCE",
|
|
66
|
+
}
|
|
67
|
+
export declare enum MetricNamespace {
|
|
68
|
+
VDM = "VDM",
|
|
69
|
+
}
|
|
70
|
+
export interface BatchGetMetricDataQuery {
|
|
71
|
+
Id: string | undefined;
|
|
72
|
+
Namespace: MetricNamespace | string | undefined;
|
|
73
|
+
Metric: Metric | string | undefined;
|
|
74
|
+
Dimensions?: Record<string, string>;
|
|
75
|
+
StartDate: Date | undefined;
|
|
76
|
+
EndDate: Date | undefined;
|
|
77
|
+
}
|
|
78
|
+
export interface BatchGetMetricDataRequest {
|
|
79
|
+
Queries: BatchGetMetricDataQuery[] | undefined;
|
|
80
|
+
}
|
|
81
|
+
export declare enum QueryErrorCode {
|
|
82
|
+
ACCESS_DENIED = "ACCESS_DENIED",
|
|
83
|
+
INTERNAL_FAILURE = "INTERNAL_FAILURE",
|
|
84
|
+
}
|
|
85
|
+
export interface MetricDataError {
|
|
86
|
+
Id?: string;
|
|
87
|
+
Code?: QueryErrorCode | string;
|
|
88
|
+
Message?: string;
|
|
89
|
+
}
|
|
90
|
+
export interface MetricDataResult {
|
|
91
|
+
Id?: string;
|
|
92
|
+
Timestamps?: Date[];
|
|
93
|
+
Values?: number[];
|
|
94
|
+
}
|
|
95
|
+
export interface BatchGetMetricDataResponse {
|
|
96
|
+
Results?: MetricDataResult[];
|
|
97
|
+
Errors?: MetricDataError[];
|
|
98
|
+
}
|
|
99
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
100
|
+
readonly name: "InternalServiceErrorException";
|
|
101
|
+
readonly $fault: "server";
|
|
102
|
+
constructor(
|
|
103
|
+
opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
export declare class NotFoundException extends __BaseException {
|
|
107
|
+
readonly name: "NotFoundException";
|
|
108
|
+
readonly $fault: "client";
|
|
109
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
110
|
+
}
|
|
111
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
112
|
+
readonly name: "TooManyRequestsException";
|
|
113
|
+
readonly $fault: "client";
|
|
114
|
+
constructor(
|
|
115
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
116
|
+
);
|
|
117
|
+
}
|
|
50
118
|
export declare enum BehaviorOnMxFailure {
|
|
51
119
|
REJECT_MESSAGE = "REJECT_MESSAGE",
|
|
52
120
|
USE_DEFAULT_VALUE = "USE_DEFAULT_VALUE",
|
|
@@ -197,6 +265,20 @@ export interface Tag {
|
|
|
197
265
|
export interface TrackingOptions {
|
|
198
266
|
CustomRedirectDomain: string | undefined;
|
|
199
267
|
}
|
|
268
|
+
export declare enum FeatureStatus {
|
|
269
|
+
DISABLED = "DISABLED",
|
|
270
|
+
ENABLED = "ENABLED",
|
|
271
|
+
}
|
|
272
|
+
export interface DashboardOptions {
|
|
273
|
+
EngagementMetrics?: FeatureStatus | string;
|
|
274
|
+
}
|
|
275
|
+
export interface GuardianOptions {
|
|
276
|
+
OptimizedSharedDelivery?: FeatureStatus | string;
|
|
277
|
+
}
|
|
278
|
+
export interface VdmOptions {
|
|
279
|
+
DashboardOptions?: DashboardOptions;
|
|
280
|
+
GuardianOptions?: GuardianOptions;
|
|
281
|
+
}
|
|
200
282
|
export interface CreateConfigurationSetRequest {
|
|
201
283
|
ConfigurationSetName: string | undefined;
|
|
202
284
|
TrackingOptions?: TrackingOptions;
|
|
@@ -205,6 +287,7 @@ export interface CreateConfigurationSetRequest {
|
|
|
205
287
|
SendingOptions?: SendingOptions;
|
|
206
288
|
Tags?: Tag[];
|
|
207
289
|
SuppressionOptions?: SuppressionOptions;
|
|
290
|
+
VdmOptions?: VdmOptions;
|
|
208
291
|
}
|
|
209
292
|
export interface CreateConfigurationSetResponse {}
|
|
210
293
|
export declare class LimitExceededException extends __BaseException {
|
|
@@ -214,18 +297,6 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
214
297
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
215
298
|
);
|
|
216
299
|
}
|
|
217
|
-
export declare class NotFoundException extends __BaseException {
|
|
218
|
-
readonly name: "NotFoundException";
|
|
219
|
-
readonly $fault: "client";
|
|
220
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
221
|
-
}
|
|
222
|
-
export declare class TooManyRequestsException extends __BaseException {
|
|
223
|
-
readonly name: "TooManyRequestsException";
|
|
224
|
-
readonly $fault: "client";
|
|
225
|
-
constructor(
|
|
226
|
-
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
227
|
-
);
|
|
228
|
-
}
|
|
229
300
|
export interface KinesisFirehoseDestination {
|
|
230
301
|
IamRoleArn: string | undefined;
|
|
231
302
|
DeliveryStreamArn: string | undefined;
|
|
@@ -462,6 +533,9 @@ export interface DailyVolume {
|
|
|
462
533
|
VolumeStatistics?: VolumeStatistics;
|
|
463
534
|
DomainIspPlacements?: DomainIspPlacement[];
|
|
464
535
|
}
|
|
536
|
+
export interface DashboardAttributes {
|
|
537
|
+
EngagementMetrics?: FeatureStatus | string;
|
|
538
|
+
}
|
|
465
539
|
export declare enum WarmupStatus {
|
|
466
540
|
DONE = "DONE",
|
|
467
541
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -583,6 +657,14 @@ export interface SendQuota {
|
|
|
583
657
|
export interface SuppressionAttributes {
|
|
584
658
|
SuppressedReasons?: (SuppressionListReason | string)[];
|
|
585
659
|
}
|
|
660
|
+
export interface GuardianAttributes {
|
|
661
|
+
OptimizedSharedDelivery?: FeatureStatus | string;
|
|
662
|
+
}
|
|
663
|
+
export interface VdmAttributes {
|
|
664
|
+
VdmEnabled: FeatureStatus | string | undefined;
|
|
665
|
+
DashboardAttributes?: DashboardAttributes;
|
|
666
|
+
GuardianAttributes?: GuardianAttributes;
|
|
667
|
+
}
|
|
586
668
|
export interface GetAccountResponse {
|
|
587
669
|
DedicatedIpAutoWarmupEnabled?: boolean;
|
|
588
670
|
EnforcementStatus?: string;
|
|
@@ -591,6 +673,7 @@ export interface GetAccountResponse {
|
|
|
591
673
|
SendingEnabled?: boolean;
|
|
592
674
|
SuppressionAttributes?: SuppressionAttributes;
|
|
593
675
|
Details?: AccountDetails;
|
|
676
|
+
VdmAttributes?: VdmAttributes;
|
|
594
677
|
}
|
|
595
678
|
export interface GetBlacklistReportsRequest {
|
|
596
679
|
BlacklistItemNames: string[] | undefined;
|
|
@@ -609,6 +692,7 @@ export interface GetConfigurationSetResponse {
|
|
|
609
692
|
SendingOptions?: SendingOptions;
|
|
610
693
|
Tags?: Tag[];
|
|
611
694
|
SuppressionOptions?: SuppressionOptions;
|
|
695
|
+
VdmOptions?: VdmOptions;
|
|
612
696
|
}
|
|
613
697
|
export interface GetConfigurationSetEventDestinationsRequest {
|
|
614
698
|
ConfigurationSetName: string | undefined;
|
|
@@ -926,6 +1010,43 @@ export interface ListManagementOptions {
|
|
|
926
1010
|
ContactListName: string | undefined;
|
|
927
1011
|
TopicName?: string;
|
|
928
1012
|
}
|
|
1013
|
+
export declare enum ListRecommendationsFilterKey {
|
|
1014
|
+
IMPACT = "IMPACT",
|
|
1015
|
+
RESOURCE_ARN = "RESOURCE_ARN",
|
|
1016
|
+
STATUS = "STATUS",
|
|
1017
|
+
TYPE = "TYPE",
|
|
1018
|
+
}
|
|
1019
|
+
export interface ListRecommendationsRequest {
|
|
1020
|
+
Filter?: Record<string, string>;
|
|
1021
|
+
NextToken?: string;
|
|
1022
|
+
PageSize?: number;
|
|
1023
|
+
}
|
|
1024
|
+
export declare enum RecommendationImpact {
|
|
1025
|
+
HIGH = "HIGH",
|
|
1026
|
+
LOW = "LOW",
|
|
1027
|
+
}
|
|
1028
|
+
export declare enum RecommendationStatus {
|
|
1029
|
+
FIXED = "FIXED",
|
|
1030
|
+
OPEN = "OPEN",
|
|
1031
|
+
}
|
|
1032
|
+
export declare enum RecommendationType {
|
|
1033
|
+
DKIM = "DKIM",
|
|
1034
|
+
DMARC = "DMARC",
|
|
1035
|
+
SPF = "SPF",
|
|
1036
|
+
}
|
|
1037
|
+
export interface Recommendation {
|
|
1038
|
+
ResourceArn?: string;
|
|
1039
|
+
Type?: RecommendationType | string;
|
|
1040
|
+
Description?: string;
|
|
1041
|
+
Status?: RecommendationStatus | string;
|
|
1042
|
+
CreatedTimestamp?: Date;
|
|
1043
|
+
LastUpdatedTimestamp?: Date;
|
|
1044
|
+
Impact?: RecommendationImpact | string;
|
|
1045
|
+
}
|
|
1046
|
+
export interface ListRecommendationsResponse {
|
|
1047
|
+
Recommendations?: Recommendation[];
|
|
1048
|
+
NextToken?: string;
|
|
1049
|
+
}
|
|
929
1050
|
export interface ListSuppressedDestinationsRequest {
|
|
930
1051
|
Reasons?: (SuppressionListReason | string)[];
|
|
931
1052
|
StartDate?: Date;
|
|
@@ -969,6 +1090,10 @@ export interface PutAccountSuppressionAttributesRequest {
|
|
|
969
1090
|
SuppressedReasons?: (SuppressionListReason | string)[];
|
|
970
1091
|
}
|
|
971
1092
|
export interface PutAccountSuppressionAttributesResponse {}
|
|
1093
|
+
export interface PutAccountVdmAttributesRequest {
|
|
1094
|
+
VdmAttributes: VdmAttributes | undefined;
|
|
1095
|
+
}
|
|
1096
|
+
export interface PutAccountVdmAttributesResponse {}
|
|
972
1097
|
export interface PutConfigurationSetDeliveryOptionsRequest {
|
|
973
1098
|
ConfigurationSetName: string | undefined;
|
|
974
1099
|
TlsPolicy?: TlsPolicy | string;
|
|
@@ -995,6 +1120,11 @@ export interface PutConfigurationSetTrackingOptionsRequest {
|
|
|
995
1120
|
CustomRedirectDomain?: string;
|
|
996
1121
|
}
|
|
997
1122
|
export interface PutConfigurationSetTrackingOptionsResponse {}
|
|
1123
|
+
export interface PutConfigurationSetVdmOptionsRequest {
|
|
1124
|
+
ConfigurationSetName: string | undefined;
|
|
1125
|
+
VdmOptions?: VdmOptions;
|
|
1126
|
+
}
|
|
1127
|
+
export interface PutConfigurationSetVdmOptionsResponse {}
|
|
998
1128
|
export interface PutDedicatedIpInPoolRequest {
|
|
999
1129
|
Ip: string | undefined;
|
|
1000
1130
|
DestinationPoolName: string | undefined;
|
|
@@ -1145,6 +1275,21 @@ export declare const ReviewDetailsFilterSensitiveLog: (
|
|
|
1145
1275
|
export declare const AccountDetailsFilterSensitiveLog: (
|
|
1146
1276
|
obj: AccountDetails
|
|
1147
1277
|
) => any;
|
|
1278
|
+
export declare const BatchGetMetricDataQueryFilterSensitiveLog: (
|
|
1279
|
+
obj: BatchGetMetricDataQuery
|
|
1280
|
+
) => any;
|
|
1281
|
+
export declare const BatchGetMetricDataRequestFilterSensitiveLog: (
|
|
1282
|
+
obj: BatchGetMetricDataRequest
|
|
1283
|
+
) => any;
|
|
1284
|
+
export declare const MetricDataErrorFilterSensitiveLog: (
|
|
1285
|
+
obj: MetricDataError
|
|
1286
|
+
) => any;
|
|
1287
|
+
export declare const MetricDataResultFilterSensitiveLog: (
|
|
1288
|
+
obj: MetricDataResult
|
|
1289
|
+
) => any;
|
|
1290
|
+
export declare const BatchGetMetricDataResponseFilterSensitiveLog: (
|
|
1291
|
+
obj: BatchGetMetricDataResponse
|
|
1292
|
+
) => any;
|
|
1148
1293
|
export declare const BlacklistEntryFilterSensitiveLog: (
|
|
1149
1294
|
obj: BlacklistEntry
|
|
1150
1295
|
) => any;
|
|
@@ -1198,6 +1343,13 @@ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
|
1198
1343
|
export declare const TrackingOptionsFilterSensitiveLog: (
|
|
1199
1344
|
obj: TrackingOptions
|
|
1200
1345
|
) => any;
|
|
1346
|
+
export declare const DashboardOptionsFilterSensitiveLog: (
|
|
1347
|
+
obj: DashboardOptions
|
|
1348
|
+
) => any;
|
|
1349
|
+
export declare const GuardianOptionsFilterSensitiveLog: (
|
|
1350
|
+
obj: GuardianOptions
|
|
1351
|
+
) => any;
|
|
1352
|
+
export declare const VdmOptionsFilterSensitiveLog: (obj: VdmOptions) => any;
|
|
1201
1353
|
export declare const CreateConfigurationSetRequestFilterSensitiveLog: (
|
|
1202
1354
|
obj: CreateConfigurationSetRequest
|
|
1203
1355
|
) => any;
|
|
@@ -1308,6 +1460,9 @@ export declare const VolumeStatisticsFilterSensitiveLog: (
|
|
|
1308
1460
|
obj: VolumeStatistics
|
|
1309
1461
|
) => any;
|
|
1310
1462
|
export declare const DailyVolumeFilterSensitiveLog: (obj: DailyVolume) => any;
|
|
1463
|
+
export declare const DashboardAttributesFilterSensitiveLog: (
|
|
1464
|
+
obj: DashboardAttributes
|
|
1465
|
+
) => any;
|
|
1311
1466
|
export declare const DedicatedIpFilterSensitiveLog: (obj: DedicatedIp) => any;
|
|
1312
1467
|
export declare const DedicatedIpPoolFilterSensitiveLog: (
|
|
1313
1468
|
obj: DedicatedIpPool
|
|
@@ -1398,6 +1553,12 @@ export declare const SendQuotaFilterSensitiveLog: (obj: SendQuota) => any;
|
|
|
1398
1553
|
export declare const SuppressionAttributesFilterSensitiveLog: (
|
|
1399
1554
|
obj: SuppressionAttributes
|
|
1400
1555
|
) => any;
|
|
1556
|
+
export declare const GuardianAttributesFilterSensitiveLog: (
|
|
1557
|
+
obj: GuardianAttributes
|
|
1558
|
+
) => any;
|
|
1559
|
+
export declare const VdmAttributesFilterSensitiveLog: (
|
|
1560
|
+
obj: VdmAttributes
|
|
1561
|
+
) => any;
|
|
1401
1562
|
export declare const GetAccountResponseFilterSensitiveLog: (
|
|
1402
1563
|
obj: GetAccountResponse
|
|
1403
1564
|
) => any;
|
|
@@ -1596,6 +1757,15 @@ export declare const ListImportJobsResponseFilterSensitiveLog: (
|
|
|
1596
1757
|
export declare const ListManagementOptionsFilterSensitiveLog: (
|
|
1597
1758
|
obj: ListManagementOptions
|
|
1598
1759
|
) => any;
|
|
1760
|
+
export declare const ListRecommendationsRequestFilterSensitiveLog: (
|
|
1761
|
+
obj: ListRecommendationsRequest
|
|
1762
|
+
) => any;
|
|
1763
|
+
export declare const RecommendationFilterSensitiveLog: (
|
|
1764
|
+
obj: Recommendation
|
|
1765
|
+
) => any;
|
|
1766
|
+
export declare const ListRecommendationsResponseFilterSensitiveLog: (
|
|
1767
|
+
obj: ListRecommendationsResponse
|
|
1768
|
+
) => any;
|
|
1599
1769
|
export declare const ListSuppressedDestinationsRequestFilterSensitiveLog: (
|
|
1600
1770
|
obj: ListSuppressedDestinationsRequest
|
|
1601
1771
|
) => any;
|
|
@@ -1635,6 +1805,12 @@ export declare const PutAccountSuppressionAttributesRequestFilterSensitiveLog: (
|
|
|
1635
1805
|
export declare const PutAccountSuppressionAttributesResponseFilterSensitiveLog: (
|
|
1636
1806
|
obj: PutAccountSuppressionAttributesResponse
|
|
1637
1807
|
) => any;
|
|
1808
|
+
export declare const PutAccountVdmAttributesRequestFilterSensitiveLog: (
|
|
1809
|
+
obj: PutAccountVdmAttributesRequest
|
|
1810
|
+
) => any;
|
|
1811
|
+
export declare const PutAccountVdmAttributesResponseFilterSensitiveLog: (
|
|
1812
|
+
obj: PutAccountVdmAttributesResponse
|
|
1813
|
+
) => any;
|
|
1638
1814
|
export declare const PutConfigurationSetDeliveryOptionsRequestFilterSensitiveLog: (
|
|
1639
1815
|
obj: PutConfigurationSetDeliveryOptionsRequest
|
|
1640
1816
|
) => any;
|
|
@@ -1665,6 +1841,12 @@ export declare const PutConfigurationSetTrackingOptionsRequestFilterSensitiveLog
|
|
|
1665
1841
|
export declare const PutConfigurationSetTrackingOptionsResponseFilterSensitiveLog: (
|
|
1666
1842
|
obj: PutConfigurationSetTrackingOptionsResponse
|
|
1667
1843
|
) => any;
|
|
1844
|
+
export declare const PutConfigurationSetVdmOptionsRequestFilterSensitiveLog: (
|
|
1845
|
+
obj: PutConfigurationSetVdmOptionsRequest
|
|
1846
|
+
) => any;
|
|
1847
|
+
export declare const PutConfigurationSetVdmOptionsResponseFilterSensitiveLog: (
|
|
1848
|
+
obj: PutConfigurationSetVdmOptionsResponse
|
|
1849
|
+
) => any;
|
|
1668
1850
|
export declare const PutDedicatedIpInPoolRequestFilterSensitiveLog: (
|
|
1669
1851
|
obj: PutDedicatedIpInPoolRequest
|
|
1670
1852
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRecommendationsCommandInput,
|
|
4
|
+
ListRecommendationsCommandOutput,
|
|
5
|
+
} from "../commands/ListRecommendationsCommand";
|
|
6
|
+
import { SESv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListRecommendations(
|
|
8
|
+
config: SESv2PaginationConfiguration,
|
|
9
|
+
input: ListRecommendationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListRecommendationsCommandOutput>;
|
|
@@ -10,4 +10,5 @@ export * from "./ListDomainDeliverabilityCampaignsPaginator";
|
|
|
10
10
|
export * from "./ListEmailIdentitiesPaginator";
|
|
11
11
|
export * from "./ListEmailTemplatesPaginator";
|
|
12
12
|
export * from "./ListImportJobsPaginator";
|
|
13
|
+
export * from "./ListRecommendationsPaginator";
|
|
13
14
|
export * from "./ListSuppressedDestinationsPaginator";
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@aws-sdk/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
BatchGetMetricDataCommandInput,
|
|
8
|
+
BatchGetMetricDataCommandOutput,
|
|
9
|
+
} from "../commands/BatchGetMetricDataCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateConfigurationSetCommandInput,
|
|
8
12
|
CreateConfigurationSetCommandOutput,
|
|
@@ -203,6 +207,10 @@ import {
|
|
|
203
207
|
ListImportJobsCommandInput,
|
|
204
208
|
ListImportJobsCommandOutput,
|
|
205
209
|
} from "../commands/ListImportJobsCommand";
|
|
210
|
+
import {
|
|
211
|
+
ListRecommendationsCommandInput,
|
|
212
|
+
ListRecommendationsCommandOutput,
|
|
213
|
+
} from "../commands/ListRecommendationsCommand";
|
|
206
214
|
import {
|
|
207
215
|
ListSuppressedDestinationsCommandInput,
|
|
208
216
|
ListSuppressedDestinationsCommandOutput,
|
|
@@ -227,6 +235,10 @@ import {
|
|
|
227
235
|
PutAccountSuppressionAttributesCommandInput,
|
|
228
236
|
PutAccountSuppressionAttributesCommandOutput,
|
|
229
237
|
} from "../commands/PutAccountSuppressionAttributesCommand";
|
|
238
|
+
import {
|
|
239
|
+
PutAccountVdmAttributesCommandInput,
|
|
240
|
+
PutAccountVdmAttributesCommandOutput,
|
|
241
|
+
} from "../commands/PutAccountVdmAttributesCommand";
|
|
230
242
|
import {
|
|
231
243
|
PutConfigurationSetDeliveryOptionsCommandInput,
|
|
232
244
|
PutConfigurationSetDeliveryOptionsCommandOutput,
|
|
@@ -247,6 +259,10 @@ import {
|
|
|
247
259
|
PutConfigurationSetTrackingOptionsCommandInput,
|
|
248
260
|
PutConfigurationSetTrackingOptionsCommandOutput,
|
|
249
261
|
} from "../commands/PutConfigurationSetTrackingOptionsCommand";
|
|
262
|
+
import {
|
|
263
|
+
PutConfigurationSetVdmOptionsCommandInput,
|
|
264
|
+
PutConfigurationSetVdmOptionsCommandOutput,
|
|
265
|
+
} from "../commands/PutConfigurationSetVdmOptionsCommand";
|
|
250
266
|
import {
|
|
251
267
|
PutDedicatedIpInPoolCommandInput,
|
|
252
268
|
PutDedicatedIpInPoolCommandOutput,
|
|
@@ -331,6 +347,10 @@ import {
|
|
|
331
347
|
UpdateEmailTemplateCommandInput,
|
|
332
348
|
UpdateEmailTemplateCommandOutput,
|
|
333
349
|
} from "../commands/UpdateEmailTemplateCommand";
|
|
350
|
+
export declare const serializeAws_restJson1BatchGetMetricDataCommand: (
|
|
351
|
+
input: BatchGetMetricDataCommandInput,
|
|
352
|
+
context: __SerdeContext
|
|
353
|
+
) => Promise<__HttpRequest>;
|
|
334
354
|
export declare const serializeAws_restJson1CreateConfigurationSetCommand: (
|
|
335
355
|
input: CreateConfigurationSetCommandInput,
|
|
336
356
|
context: __SerdeContext
|
|
@@ -531,6 +551,10 @@ export declare const serializeAws_restJson1ListImportJobsCommand: (
|
|
|
531
551
|
input: ListImportJobsCommandInput,
|
|
532
552
|
context: __SerdeContext
|
|
533
553
|
) => Promise<__HttpRequest>;
|
|
554
|
+
export declare const serializeAws_restJson1ListRecommendationsCommand: (
|
|
555
|
+
input: ListRecommendationsCommandInput,
|
|
556
|
+
context: __SerdeContext
|
|
557
|
+
) => Promise<__HttpRequest>;
|
|
534
558
|
export declare const serializeAws_restJson1ListSuppressedDestinationsCommand: (
|
|
535
559
|
input: ListSuppressedDestinationsCommandInput,
|
|
536
560
|
context: __SerdeContext
|
|
@@ -555,6 +579,10 @@ export declare const serializeAws_restJson1PutAccountSuppressionAttributesComman
|
|
|
555
579
|
input: PutAccountSuppressionAttributesCommandInput,
|
|
556
580
|
context: __SerdeContext
|
|
557
581
|
) => Promise<__HttpRequest>;
|
|
582
|
+
export declare const serializeAws_restJson1PutAccountVdmAttributesCommand: (
|
|
583
|
+
input: PutAccountVdmAttributesCommandInput,
|
|
584
|
+
context: __SerdeContext
|
|
585
|
+
) => Promise<__HttpRequest>;
|
|
558
586
|
export declare const serializeAws_restJson1PutConfigurationSetDeliveryOptionsCommand: (
|
|
559
587
|
input: PutConfigurationSetDeliveryOptionsCommandInput,
|
|
560
588
|
context: __SerdeContext
|
|
@@ -575,6 +603,10 @@ export declare const serializeAws_restJson1PutConfigurationSetTrackingOptionsCom
|
|
|
575
603
|
input: PutConfigurationSetTrackingOptionsCommandInput,
|
|
576
604
|
context: __SerdeContext
|
|
577
605
|
) => Promise<__HttpRequest>;
|
|
606
|
+
export declare const serializeAws_restJson1PutConfigurationSetVdmOptionsCommand: (
|
|
607
|
+
input: PutConfigurationSetVdmOptionsCommandInput,
|
|
608
|
+
context: __SerdeContext
|
|
609
|
+
) => Promise<__HttpRequest>;
|
|
578
610
|
export declare const serializeAws_restJson1PutDedicatedIpInPoolCommand: (
|
|
579
611
|
input: PutDedicatedIpInPoolCommandInput,
|
|
580
612
|
context: __SerdeContext
|
|
@@ -659,6 +691,10 @@ export declare const serializeAws_restJson1UpdateEmailTemplateCommand: (
|
|
|
659
691
|
input: UpdateEmailTemplateCommandInput,
|
|
660
692
|
context: __SerdeContext
|
|
661
693
|
) => Promise<__HttpRequest>;
|
|
694
|
+
export declare const deserializeAws_restJson1BatchGetMetricDataCommand: (
|
|
695
|
+
output: __HttpResponse,
|
|
696
|
+
context: __SerdeContext
|
|
697
|
+
) => Promise<BatchGetMetricDataCommandOutput>;
|
|
662
698
|
export declare const deserializeAws_restJson1CreateConfigurationSetCommand: (
|
|
663
699
|
output: __HttpResponse,
|
|
664
700
|
context: __SerdeContext
|
|
@@ -859,6 +895,10 @@ export declare const deserializeAws_restJson1ListImportJobsCommand: (
|
|
|
859
895
|
output: __HttpResponse,
|
|
860
896
|
context: __SerdeContext
|
|
861
897
|
) => Promise<ListImportJobsCommandOutput>;
|
|
898
|
+
export declare const deserializeAws_restJson1ListRecommendationsCommand: (
|
|
899
|
+
output: __HttpResponse,
|
|
900
|
+
context: __SerdeContext
|
|
901
|
+
) => Promise<ListRecommendationsCommandOutput>;
|
|
862
902
|
export declare const deserializeAws_restJson1ListSuppressedDestinationsCommand: (
|
|
863
903
|
output: __HttpResponse,
|
|
864
904
|
context: __SerdeContext
|
|
@@ -883,6 +923,10 @@ export declare const deserializeAws_restJson1PutAccountSuppressionAttributesComm
|
|
|
883
923
|
output: __HttpResponse,
|
|
884
924
|
context: __SerdeContext
|
|
885
925
|
) => Promise<PutAccountSuppressionAttributesCommandOutput>;
|
|
926
|
+
export declare const deserializeAws_restJson1PutAccountVdmAttributesCommand: (
|
|
927
|
+
output: __HttpResponse,
|
|
928
|
+
context: __SerdeContext
|
|
929
|
+
) => Promise<PutAccountVdmAttributesCommandOutput>;
|
|
886
930
|
export declare const deserializeAws_restJson1PutConfigurationSetDeliveryOptionsCommand: (
|
|
887
931
|
output: __HttpResponse,
|
|
888
932
|
context: __SerdeContext
|
|
@@ -903,6 +947,10 @@ export declare const deserializeAws_restJson1PutConfigurationSetTrackingOptionsC
|
|
|
903
947
|
output: __HttpResponse,
|
|
904
948
|
context: __SerdeContext
|
|
905
949
|
) => Promise<PutConfigurationSetTrackingOptionsCommandOutput>;
|
|
950
|
+
export declare const deserializeAws_restJson1PutConfigurationSetVdmOptionsCommand: (
|
|
951
|
+
output: __HttpResponse,
|
|
952
|
+
context: __SerdeContext
|
|
953
|
+
) => Promise<PutConfigurationSetVdmOptionsCommandOutput>;
|
|
906
954
|
export declare const deserializeAws_restJson1PutDedicatedIpInPoolCommand: (
|
|
907
955
|
output: __HttpResponse,
|
|
908
956
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sesv2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sesv2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.200.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",
|
|
@@ -19,37 +19,37 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.200.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.200.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.200.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.200.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.200.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.200.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.200.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.200.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.200.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.200.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.200.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.200.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.200.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.200.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.200.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.200.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.200.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.200.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.200.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.200.0",
|
|
42
|
+
"@aws-sdk/types": "3.200.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.200.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.188.0",
|
|
45
45
|
"@aws-sdk/util-base64-node": "3.188.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.188.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.200.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.200.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.200.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-browser": "3.200.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-node": "3.200.0",
|
|
53
53
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
54
54
|
"@aws-sdk/util-utf8-node": "3.199.0",
|
|
55
55
|
"tslib": "^2.3.1"
|