@aws-sdk/client-sesv2 3.1056.0 → 3.1057.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/README.md +7 -0
- package/dist-cjs/index.js +19 -0
- package/dist-cjs/schemas/schemas_0.js +50 -27
- package/dist-es/SESv2.js +2 -0
- package/dist-es/commands/PutTenantSuppressionAttributesCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +4 -0
- package/dist-es/schemas/schemas_0.js +45 -22
- package/dist-types/SESv2.d.ts +7 -0
- package/dist-types/SESv2Client.d.ts +3 -2
- package/dist-types/commands/CreateConfigurationSetCommand.d.ts +1 -0
- package/dist-types/commands/CreateTenantCommand.d.ts +15 -0
- package/dist-types/commands/DeleteSuppressedDestinationCommand.d.ts +5 -1
- package/dist-types/commands/GetConfigurationSetCommand.d.ts +1 -0
- package/dist-types/commands/GetEmailTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetSuppressedDestinationCommand.d.ts +5 -1
- package/dist-types/commands/GetTenantCommand.d.ts +7 -1
- package/dist-types/commands/ListSuppressedDestinationsCommand.d.ts +7 -1
- package/dist-types/commands/PutConfigurationSetSuppressionOptionsCommand.d.ts +5 -1
- package/dist-types/commands/PutEmailIdentityFeedbackAttributesCommand.d.ts +2 -1
- package/dist-types/commands/PutSuppressedDestinationCommand.d.ts +8 -1
- package/dist-types/commands/PutTenantSuppressionAttributesCommand.d.ts +91 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +160 -40
- package/dist-types/models/models_1.d.ts +65 -5
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/SESv2.d.ts +17 -0
- package/dist-types/ts3.4/SESv2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/PutEmailIdentityFeedbackAttributesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/PutTenantSuppressionAttributesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -1
- package/dist-types/ts3.4/models/models_1.d.ts +9 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -859,6 +859,13 @@ PutSuppressedDestination
|
|
|
859
859
|
</details>
|
|
860
860
|
<details>
|
|
861
861
|
<summary>
|
|
862
|
+
PutTenantSuppressionAttributes
|
|
863
|
+
</summary>
|
|
864
|
+
|
|
865
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sesv2/command/PutTenantSuppressionAttributesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sesv2/Interface/PutTenantSuppressionAttributesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sesv2/Interface/PutTenantSuppressionAttributesCommandOutput/)
|
|
866
|
+
</details>
|
|
867
|
+
<details>
|
|
868
|
+
<summary>
|
|
862
869
|
SendBulkEmail
|
|
863
870
|
</summary>
|
|
864
871
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -1261,6 +1261,18 @@ class PutSuppressedDestinationCommand extends client.Command
|
|
|
1261
1261
|
.build() {
|
|
1262
1262
|
}
|
|
1263
1263
|
|
|
1264
|
+
class PutTenantSuppressionAttributesCommand extends client.Command
|
|
1265
|
+
.classBuilder()
|
|
1266
|
+
.ep(commonParams)
|
|
1267
|
+
.m(function (Command, cs, config, o) {
|
|
1268
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1269
|
+
})
|
|
1270
|
+
.s("SimpleEmailService_v2", "PutTenantSuppressionAttributes", {})
|
|
1271
|
+
.n("SESv2Client", "PutTenantSuppressionAttributesCommand")
|
|
1272
|
+
.sc(schemas_0.PutTenantSuppressionAttributes$)
|
|
1273
|
+
.build() {
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1264
1276
|
class SendBulkEmailCommand extends client.Command
|
|
1265
1277
|
.classBuilder()
|
|
1266
1278
|
.ep({
|
|
@@ -1570,6 +1582,7 @@ const commands = {
|
|
|
1570
1582
|
PutEmailIdentityFeedbackAttributesCommand,
|
|
1571
1583
|
PutEmailIdentityMailFromAttributesCommand,
|
|
1572
1584
|
PutSuppressedDestinationCommand,
|
|
1585
|
+
PutTenantSuppressionAttributesCommand,
|
|
1573
1586
|
SendBulkEmailCommand,
|
|
1574
1587
|
SendCustomVerificationEmailCommand,
|
|
1575
1588
|
SendEmailCommand,
|
|
@@ -1703,6 +1716,10 @@ const SuppressionListReason = {
|
|
|
1703
1716
|
BOUNCE: "BOUNCE",
|
|
1704
1717
|
COMPLAINT: "COMPLAINT",
|
|
1705
1718
|
};
|
|
1719
|
+
const SuppressionListScope = {
|
|
1720
|
+
ACCOUNT: "ACCOUNT",
|
|
1721
|
+
TENANT: "TENANT",
|
|
1722
|
+
};
|
|
1706
1723
|
const FeatureStatus = {
|
|
1707
1724
|
DISABLED: "DISABLED",
|
|
1708
1725
|
ENABLED: "ENABLED",
|
|
@@ -2047,6 +2064,7 @@ exports.PutEmailIdentityDkimSigningAttributesCommand = PutEmailIdentityDkimSigni
|
|
|
2047
2064
|
exports.PutEmailIdentityFeedbackAttributesCommand = PutEmailIdentityFeedbackAttributesCommand;
|
|
2048
2065
|
exports.PutEmailIdentityMailFromAttributesCommand = PutEmailIdentityMailFromAttributesCommand;
|
|
2049
2066
|
exports.PutSuppressedDestinationCommand = PutSuppressedDestinationCommand;
|
|
2067
|
+
exports.PutTenantSuppressionAttributesCommand = PutTenantSuppressionAttributesCommand;
|
|
2050
2068
|
exports.QueryErrorCode = QueryErrorCode;
|
|
2051
2069
|
exports.RecommendationImpact = RecommendationImpact;
|
|
2052
2070
|
exports.RecommendationStatus = RecommendationStatus;
|
|
@@ -2067,6 +2085,7 @@ exports.SubscriptionStatus = SubscriptionStatus;
|
|
|
2067
2085
|
exports.SuppressionConfidenceVerdictThreshold = SuppressionConfidenceVerdictThreshold;
|
|
2068
2086
|
exports.SuppressionListImportAction = SuppressionListImportAction;
|
|
2069
2087
|
exports.SuppressionListReason = SuppressionListReason;
|
|
2088
|
+
exports.SuppressionListScope = SuppressionListScope;
|
|
2070
2089
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2071
2090
|
exports.TestRenderEmailTemplateCommand = TestRenderEmailTemplateCommand;
|
|
2072
2091
|
exports.TlsPolicy = TlsPolicy;
|
|
@@ -5,11 +5,11 @@ exports.DeliveryOptions$ = exports.DeliverabilityTestReport$ = exports.DeleteTen
|
|
|
5
5
|
exports.GetDomainStatisticsReportRequest$ = exports.GetDomainDeliverabilityCampaignResponse$ = exports.GetDomainDeliverabilityCampaignRequest$ = exports.GetDeliverabilityTestReportResponse$ = exports.GetDeliverabilityTestReportRequest$ = exports.GetDeliverabilityDashboardOptionsResponse$ = exports.GetDeliverabilityDashboardOptionsRequest$ = exports.GetDedicatedIpsResponse$ = exports.GetDedicatedIpsRequest$ = exports.GetDedicatedIpResponse$ = exports.GetDedicatedIpRequest$ = exports.GetDedicatedIpPoolResponse$ = exports.GetDedicatedIpPoolRequest$ = exports.GetCustomVerificationEmailTemplateResponse$ = exports.GetCustomVerificationEmailTemplateRequest$ = exports.GetContactResponse$ = exports.GetContactRequest$ = exports.GetContactListResponse$ = exports.GetContactListRequest$ = exports.GetConfigurationSetResponse$ = exports.GetConfigurationSetRequest$ = exports.GetConfigurationSetEventDestinationsResponse$ = exports.GetConfigurationSetEventDestinationsRequest$ = exports.GetBlacklistReportsResponse$ = exports.GetBlacklistReportsRequest$ = exports.GetAccountResponse$ = exports.GetAccountRequest$ = exports.FailureInfo$ = exports.ExportStatistics$ = exports.ExportMetric$ = exports.ExportJobSummary$ = exports.ExportDestination$ = exports.ExportDataSource$ = exports.EventDetails$ = exports.EventDestinationDefinition$ = exports.EventDestination$ = exports.EventBridgeDestination$ = exports.EmailTemplateMetadata$ = exports.EmailTemplateContent$ = exports.EmailInsights$ = exports.EmailContent$ = exports.EmailAddressInsightsVerdict$ = exports.EmailAddressInsightsMailboxEvaluations$ = exports.DomainIspPlacement$ = exports.DomainDeliverabilityTrackingOption$ = exports.DomainDeliverabilityCampaign$ = exports.DkimSigningAttributes$ = exports.DkimAttributes$ = exports.Details$ = exports.Destination$ = void 0;
|
|
6
6
|
exports.ListEmailIdentitiesResponse$ = exports.ListEmailIdentitiesRequest$ = exports.ListDomainDeliverabilityCampaignsResponse$ = exports.ListDomainDeliverabilityCampaignsRequest$ = exports.ListDeliverabilityTestReportsResponse$ = exports.ListDeliverabilityTestReportsRequest$ = exports.ListDedicatedIpPoolsResponse$ = exports.ListDedicatedIpPoolsRequest$ = exports.ListCustomVerificationEmailTemplatesResponse$ = exports.ListCustomVerificationEmailTemplatesRequest$ = exports.ListContactsResponse$ = exports.ListContactsRequest$ = exports.ListContactsFilter$ = exports.ListContactListsResponse$ = exports.ListContactListsRequest$ = exports.ListConfigurationSetsResponse$ = exports.ListConfigurationSetsRequest$ = exports.KinesisFirehoseDestination$ = exports.IspPlacement$ = exports.InsightsEvent$ = exports.InboxPlacementTrackingOption$ = exports.ImportJobSummary$ = exports.ImportDestination$ = exports.ImportDataSource$ = exports.IdentityInfo$ = exports.GuardianOptions$ = exports.GuardianAttributes$ = exports.GetTenantResponse$ = exports.GetTenantRequest$ = exports.GetSuppressedDestinationResponse$ = exports.GetSuppressedDestinationRequest$ = exports.GetReputationEntityResponse$ = exports.GetReputationEntityRequest$ = exports.GetMultiRegionEndpointResponse$ = exports.GetMultiRegionEndpointRequest$ = exports.GetMessageInsightsResponse$ = exports.GetMessageInsightsRequest$ = exports.GetImportJobResponse$ = exports.GetImportJobRequest$ = exports.GetExportJobResponse$ = exports.GetExportJobRequest$ = exports.GetEmailTemplateResponse$ = exports.GetEmailTemplateRequest$ = exports.GetEmailIdentityResponse$ = exports.GetEmailIdentityRequest$ = exports.GetEmailIdentityPoliciesResponse$ = exports.GetEmailIdentityPoliciesRequest$ = exports.GetEmailAddressInsightsResponse$ = exports.GetEmailAddressInsightsRequest$ = exports.GetDomainStatisticsReportResponse$ = void 0;
|
|
7
7
|
exports.PutConfigurationSetDeliveryOptionsRequest$ = exports.PutConfigurationSetArchivingOptionsResponse$ = exports.PutConfigurationSetArchivingOptionsRequest$ = exports.PutAccountVdmAttributesResponse$ = exports.PutAccountVdmAttributesRequest$ = exports.PutAccountSuppressionAttributesResponse$ = exports.PutAccountSuppressionAttributesRequest$ = exports.PutAccountSendingAttributesResponse$ = exports.PutAccountSendingAttributesRequest$ = exports.PutAccountDetailsResponse$ = exports.PutAccountDetailsRequest$ = exports.PutAccountDedicatedIpWarmupAttributesResponse$ = exports.PutAccountDedicatedIpWarmupAttributesRequest$ = exports.PlacementStatistics$ = exports.PinpointDestination$ = exports.OverallVolume$ = exports.MultiRegionEndpoint$ = exports.MetricsDataSource$ = exports.MetricDataResult$ = exports.MetricDataError$ = exports.MessageTag$ = exports.MessageInsightsFilters$ = exports.MessageInsightsDataSource$ = exports.MessageHeader$ = exports.Message$ = exports.MailFromAttributes$ = exports.MailboxValidation$ = exports.ListTenantsResponse$ = exports.ListTenantsRequest$ = exports.ListTenantResourcesResponse$ = exports.ListTenantResourcesRequest$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListSuppressedDestinationsResponse$ = exports.ListSuppressedDestinationsRequest$ = exports.ListResourceTenantsResponse$ = exports.ListResourceTenantsRequest$ = exports.ListReputationEntitiesResponse$ = exports.ListReputationEntitiesRequest$ = exports.ListRecommendationsResponse$ = exports.ListRecommendationsRequest$ = exports.ListMultiRegionEndpointsResponse$ = exports.ListMultiRegionEndpointsRequest$ = exports.ListManagementOptions$ = exports.ListImportJobsResponse$ = exports.ListImportJobsRequest$ = exports.ListExportJobsResponse$ = exports.ListExportJobsRequest$ = exports.ListEmailTemplatesResponse$ = exports.ListEmailTemplatesRequest$ = void 0;
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.UpdateReputationEntityPolicy$ = exports.UpdateReputationEntityCustomerManagedStatus$ = exports.UpdateEmailTemplate$ = exports.UpdateEmailIdentityPolicy$ = exports.UpdateCustomVerificationEmailTemplate$ = exports.UpdateContactList$ = exports.UpdateContact$ = void 0;
|
|
8
|
+
exports.SendingOptions$ = exports.SendEmailResponse$ = exports.SendEmailRequest$ = exports.SendCustomVerificationEmailResponse$ = exports.SendCustomVerificationEmailRequest$ = exports.SendBulkEmailResponse$ = exports.SendBulkEmailRequest$ = exports.RouteDetails$ = exports.Route$ = exports.ReviewDetails$ = exports.ResourceTenantMetadata$ = exports.ReputationOptions$ = exports.ReputationEntity$ = exports.ReplacementTemplate$ = exports.ReplacementEmailContent$ = exports.Recommendation$ = exports.RawMessage$ = exports.PutTenantSuppressionAttributesResponse$ = exports.PutTenantSuppressionAttributesRequest$ = exports.PutSuppressedDestinationResponse$ = exports.PutSuppressedDestinationRequest$ = exports.PutEmailIdentityMailFromAttributesResponse$ = exports.PutEmailIdentityMailFromAttributesRequest$ = exports.PutEmailIdentityFeedbackAttributesResponse$ = exports.PutEmailIdentityFeedbackAttributesRequest$ = exports.PutEmailIdentityDkimSigningAttributesResponse$ = exports.PutEmailIdentityDkimSigningAttributesRequest$ = exports.PutEmailIdentityDkimAttributesResponse$ = exports.PutEmailIdentityDkimAttributesRequest$ = exports.PutEmailIdentityConfigurationSetAttributesResponse$ = exports.PutEmailIdentityConfigurationSetAttributesRequest$ = exports.PutDeliverabilityDashboardOptionResponse$ = exports.PutDeliverabilityDashboardOptionRequest$ = exports.PutDedicatedIpWarmupAttributesResponse$ = exports.PutDedicatedIpWarmupAttributesRequest$ = exports.PutDedicatedIpPoolScalingAttributesResponse$ = exports.PutDedicatedIpPoolScalingAttributesRequest$ = exports.PutDedicatedIpInPoolResponse$ = exports.PutDedicatedIpInPoolRequest$ = exports.PutConfigurationSetVdmOptionsResponse$ = exports.PutConfigurationSetVdmOptionsRequest$ = exports.PutConfigurationSetTrackingOptionsResponse$ = exports.PutConfigurationSetTrackingOptionsRequest$ = exports.PutConfigurationSetSuppressionOptionsResponse$ = exports.PutConfigurationSetSuppressionOptionsRequest$ = exports.PutConfigurationSetSendingOptionsResponse$ = exports.PutConfigurationSetSendingOptionsRequest$ = exports.PutConfigurationSetReputationOptionsResponse$ = exports.PutConfigurationSetReputationOptionsRequest$ = exports.PutConfigurationSetDeliveryOptionsResponse$ = void 0;
|
|
9
|
+
exports.VolumeStatistics$ = exports.VerificationInfo$ = exports.VdmOptions$ = exports.VdmAttributes$ = exports.UpdateReputationEntityPolicyResponse$ = exports.UpdateReputationEntityPolicyRequest$ = exports.UpdateReputationEntityCustomerManagedStatusResponse$ = exports.UpdateReputationEntityCustomerManagedStatusRequest$ = exports.UpdateEmailTemplateResponse$ = exports.UpdateEmailTemplateRequest$ = exports.UpdateEmailIdentityPolicyResponse$ = exports.UpdateEmailIdentityPolicyRequest$ = exports.UpdateCustomVerificationEmailTemplateResponse$ = exports.UpdateCustomVerificationEmailTemplateRequest$ = exports.UpdateContactResponse$ = exports.UpdateContactRequest$ = exports.UpdateContactListResponse$ = exports.UpdateContactListRequest$ = exports.UpdateConfigurationSetEventDestinationResponse$ = exports.UpdateConfigurationSetEventDestinationRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TrackingOptions$ = exports.TopicPreference$ = exports.TopicFilter$ = exports.Topic$ = exports.TestRenderEmailTemplateResponse$ = exports.TestRenderEmailTemplateRequest$ = exports.TenantSuppressionAttributes$ = exports.TenantResource$ = exports.TenantInfo$ = exports.Tenant$ = exports.Template$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.Tag$ = exports.SuppressionValidationOptions$ = exports.SuppressionValidationAttributes$ = exports.SuppressionOptions$ = exports.SuppressionListDestination$ = exports.SuppressionConfidenceThreshold$ = exports.SuppressionConditionThreshold$ = exports.SuppressionAttributes$ = exports.SuppressedDestinationSummary$ = exports.SuppressedDestinationAttributes$ = exports.SuppressedDestination$ = exports.StatusRecord$ = exports.SOARecord$ = exports.SnsDestination$ = exports.SendQuota$ = void 0;
|
|
10
|
+
exports.GetImportJob$ = exports.GetExportJob$ = exports.GetEmailTemplate$ = exports.GetEmailIdentityPolicies$ = exports.GetEmailIdentity$ = exports.GetEmailAddressInsights$ = exports.GetDomainStatisticsReport$ = exports.GetDomainDeliverabilityCampaign$ = exports.GetDeliverabilityTestReport$ = exports.GetDeliverabilityDashboardOptions$ = exports.GetDedicatedIps$ = exports.GetDedicatedIpPool$ = exports.GetDedicatedIp$ = exports.GetCustomVerificationEmailTemplate$ = exports.GetContactList$ = exports.GetContact$ = exports.GetConfigurationSetEventDestinations$ = exports.GetConfigurationSet$ = exports.GetBlacklistReports$ = exports.GetAccount$ = exports.DeleteTenantResourceAssociation$ = exports.DeleteTenant$ = exports.DeleteSuppressedDestination$ = exports.DeleteMultiRegionEndpoint$ = exports.DeleteEmailTemplate$ = exports.DeleteEmailIdentityPolicy$ = exports.DeleteEmailIdentity$ = exports.DeleteDedicatedIpPool$ = exports.DeleteCustomVerificationEmailTemplate$ = exports.DeleteContactList$ = exports.DeleteContact$ = exports.DeleteConfigurationSetEventDestination$ = exports.DeleteConfigurationSet$ = exports.CreateTenantResourceAssociation$ = exports.CreateTenant$ = exports.CreateMultiRegionEndpoint$ = exports.CreateImportJob$ = exports.CreateExportJob$ = exports.CreateEmailTemplate$ = exports.CreateEmailIdentityPolicy$ = exports.CreateEmailIdentity$ = exports.CreateDeliverabilityTestReport$ = exports.CreateDedicatedIpPool$ = exports.CreateCustomVerificationEmailTemplate$ = exports.CreateContactList$ = exports.CreateContact$ = exports.CreateConfigurationSetEventDestination$ = exports.CreateConfigurationSet$ = exports.CancelExportJob$ = exports.BatchGetMetricData$ = void 0;
|
|
11
|
+
exports.SendEmail$ = exports.SendCustomVerificationEmail$ = exports.SendBulkEmail$ = exports.PutTenantSuppressionAttributes$ = exports.PutSuppressedDestination$ = exports.PutEmailIdentityMailFromAttributes$ = exports.PutEmailIdentityFeedbackAttributes$ = exports.PutEmailIdentityDkimSigningAttributes$ = exports.PutEmailIdentityDkimAttributes$ = exports.PutEmailIdentityConfigurationSetAttributes$ = exports.PutDeliverabilityDashboardOption$ = exports.PutDedicatedIpWarmupAttributes$ = exports.PutDedicatedIpPoolScalingAttributes$ = exports.PutDedicatedIpInPool$ = exports.PutConfigurationSetVdmOptions$ = exports.PutConfigurationSetTrackingOptions$ = exports.PutConfigurationSetSuppressionOptions$ = exports.PutConfigurationSetSendingOptions$ = exports.PutConfigurationSetReputationOptions$ = exports.PutConfigurationSetDeliveryOptions$ = exports.PutConfigurationSetArchivingOptions$ = exports.PutAccountVdmAttributes$ = exports.PutAccountSuppressionAttributes$ = exports.PutAccountSendingAttributes$ = exports.PutAccountDetails$ = exports.PutAccountDedicatedIpWarmupAttributes$ = exports.ListTenants$ = exports.ListTenantResources$ = exports.ListTagsForResource$ = exports.ListSuppressedDestinations$ = exports.ListResourceTenants$ = exports.ListReputationEntities$ = exports.ListRecommendations$ = exports.ListMultiRegionEndpoints$ = exports.ListImportJobs$ = exports.ListExportJobs$ = exports.ListEmailTemplates$ = exports.ListEmailIdentities$ = exports.ListDomainDeliverabilityCampaigns$ = exports.ListDeliverabilityTestReports$ = exports.ListDedicatedIpPools$ = exports.ListCustomVerificationEmailTemplates$ = exports.ListContacts$ = exports.ListContactLists$ = exports.ListConfigurationSets$ = exports.GetTenant$ = exports.GetSuppressedDestination$ = exports.GetReputationEntity$ = exports.GetMultiRegionEndpoint$ = exports.GetMessageInsights$ = void 0;
|
|
12
|
+
exports.UpdateReputationEntityPolicy$ = exports.UpdateReputationEntityCustomerManagedStatus$ = exports.UpdateEmailTemplate$ = exports.UpdateEmailIdentityPolicy$ = exports.UpdateCustomVerificationEmailTemplate$ = exports.UpdateContactList$ = exports.UpdateContact$ = exports.UpdateConfigurationSetEventDestination$ = exports.UntagResource$ = exports.TestRenderEmailTemplate$ = exports.TagResource$ = void 0;
|
|
13
13
|
const _A = "Attachment";
|
|
14
14
|
const _AA = "ArchiveArn";
|
|
15
15
|
const _AAp = "ApplicationArn";
|
|
@@ -607,6 +607,9 @@ const _PSDR = "PutSuppressedDestinationRequest";
|
|
|
607
607
|
const _PSDRu = "PutSuppressedDestinationResponse";
|
|
608
608
|
const _PSl = "PlacementStatistics";
|
|
609
609
|
const _PSr = "ProjectedSpam";
|
|
610
|
+
const _PTSA = "PutTenantSuppressionAttributes";
|
|
611
|
+
const _PTSAR = "PutTenantSuppressionAttributesRequest";
|
|
612
|
+
const _PTSARu = "PutTenantSuppressionAttributesResponse";
|
|
610
613
|
const _PV = "ProjectedVolume";
|
|
611
614
|
const _Po = "Policies";
|
|
612
615
|
const _Q = "Queries";
|
|
@@ -703,7 +706,8 @@ const _SRt = "StatusRecord";
|
|
|
703
706
|
const _SS = "SendingStatus";
|
|
704
707
|
const _SSA = "SendingStatusAggregate";
|
|
705
708
|
const _SSD = "SubscriptionStartDate";
|
|
706
|
-
const _SSu = "
|
|
709
|
+
const _SSu = "SuppressionScope";
|
|
710
|
+
const _SSub = "SubscriptionStatus";
|
|
707
711
|
const _SU = "S3Url";
|
|
708
712
|
const _SVA = "SuppressionValidationAttributes";
|
|
709
713
|
const _SVO = "SuppressionValidationOptions";
|
|
@@ -745,6 +749,7 @@ const _TRRa = "TagResourceResponse";
|
|
|
745
749
|
const _TRa = "TagResource";
|
|
746
750
|
const _TRe = "TenantResource";
|
|
747
751
|
const _TS = "TemplateSubject";
|
|
752
|
+
const _TSA = "TenantSuppressionAttributes";
|
|
748
753
|
const _Ta = "Tags";
|
|
749
754
|
const _Tag = "Tag";
|
|
750
755
|
const _Te = "Template";
|
|
@@ -1141,8 +1146,8 @@ exports.CreateMultiRegionEndpointResponse$ = [3, n0, _CMRERr,
|
|
|
1141
1146
|
];
|
|
1142
1147
|
exports.CreateTenantRequest$ = [3, n0, _CTR,
|
|
1143
1148
|
0,
|
|
1144
|
-
[_TNe, _Ta],
|
|
1145
|
-
[0, () => TagList], 1
|
|
1149
|
+
[_TNe, _Ta, _SA],
|
|
1150
|
+
[0, () => TagList, () => exports.TenantSuppressionAttributes$], 1
|
|
1146
1151
|
];
|
|
1147
1152
|
exports.CreateTenantResourceAssociationRequest$ = [3, n0, _CTRAR,
|
|
1148
1153
|
0,
|
|
@@ -1156,8 +1161,8 @@ exports.CreateTenantResourceAssociationResponse$ = [3, n0, _CTRARr,
|
|
|
1156
1161
|
];
|
|
1157
1162
|
exports.CreateTenantResponse$ = [3, n0, _CTRr,
|
|
1158
1163
|
0,
|
|
1159
|
-
[_TNe, _TI, _TA, _CTr, _Ta, _SS],
|
|
1160
|
-
[0, 0, 0, 4, () => TagList, 0]
|
|
1164
|
+
[_TNe, _TI, _TA, _CTr, _Ta, _SS, _SA],
|
|
1165
|
+
[0, 0, 0, 4, () => TagList, 0, () => exports.TenantSuppressionAttributes$]
|
|
1161
1166
|
];
|
|
1162
1167
|
exports.CustomVerificationEmailTemplateMetadata$ = [3, n0, _CVETM,
|
|
1163
1168
|
0,
|
|
@@ -1291,8 +1296,8 @@ exports.DeleteMultiRegionEndpointResponse$ = [3, n0, _DMRERe,
|
|
|
1291
1296
|
];
|
|
1292
1297
|
exports.DeleteSuppressedDestinationRequest$ = [3, n0, _DSDR,
|
|
1293
1298
|
0,
|
|
1294
|
-
[_EA],
|
|
1295
|
-
[[0, 1]], 1
|
|
1299
|
+
[_EA, _TNe],
|
|
1300
|
+
[[0, 1], [0, { [_hQ]: _TNe }]], 1
|
|
1296
1301
|
];
|
|
1297
1302
|
exports.DeleteSuppressedDestinationResponse$ = [3, n0, _DSDRe,
|
|
1298
1303
|
0,
|
|
@@ -1676,8 +1681,8 @@ exports.GetReputationEntityResponse$ = [3, n0, _GRERe,
|
|
|
1676
1681
|
];
|
|
1677
1682
|
exports.GetSuppressedDestinationRequest$ = [3, n0, _GSDR,
|
|
1678
1683
|
0,
|
|
1679
|
-
[_EA],
|
|
1680
|
-
[[0, 1]], 1
|
|
1684
|
+
[_EA, _TNe],
|
|
1685
|
+
[[0, 1], [0, { [_hQ]: _TNe }]], 1
|
|
1681
1686
|
];
|
|
1682
1687
|
exports.GetSuppressedDestinationResponse$ = [3, n0, _GSDRe,
|
|
1683
1688
|
0,
|
|
@@ -1906,8 +1911,8 @@ exports.ListResourceTenantsResponse$ = [3, n0, _LRTRi,
|
|
|
1906
1911
|
];
|
|
1907
1912
|
exports.ListSuppressedDestinationsRequest$ = [3, n0, _LSDR,
|
|
1908
1913
|
0,
|
|
1909
|
-
[_Rea, _SD, _ED, _NT, _PS],
|
|
1910
|
-
[[64 | 0, { [_hQ]: _Reas }], [4, { [_hQ]: _SD }], [4, { [_hQ]: _ED }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
1914
|
+
[_TNe, _Rea, _SD, _ED, _NT, _PS],
|
|
1915
|
+
[[0, { [_hQ]: _TNe }], [64 | 0, { [_hQ]: _Reas }], [4, { [_hQ]: _SD }], [4, { [_hQ]: _ED }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
1911
1916
|
];
|
|
1912
1917
|
exports.ListSuppressedDestinationsResponse$ = [3, n0, _LSDRi,
|
|
1913
1918
|
0,
|
|
@@ -2106,8 +2111,8 @@ exports.PutConfigurationSetSendingOptionsResponse$ = [3, n0, _PCSSORu,
|
|
|
2106
2111
|
];
|
|
2107
2112
|
exports.PutConfigurationSetSuppressionOptionsRequest$ = [3, n0, _PCSSORut,
|
|
2108
2113
|
0,
|
|
2109
|
-
[_CSN, _SR, _VOa],
|
|
2110
|
-
[[0, 1], 64 | 0, () => exports.SuppressionValidationOptions$], 1
|
|
2114
|
+
[_CSN, _SSu, _SR, _VOa],
|
|
2115
|
+
[[0, 1], 0, 64 | 0, () => exports.SuppressionValidationOptions$], 1
|
|
2111
2116
|
];
|
|
2112
2117
|
exports.PutConfigurationSetSuppressionOptionsResponse$ = [3, n0, _PCSSORuto,
|
|
2113
2118
|
0,
|
|
@@ -2226,14 +2231,24 @@ exports.PutEmailIdentityMailFromAttributesResponse$ = [3, n0, _PEIMFARu,
|
|
|
2226
2231
|
];
|
|
2227
2232
|
exports.PutSuppressedDestinationRequest$ = [3, n0, _PSDR,
|
|
2228
2233
|
0,
|
|
2229
|
-
[_EA, _Reas],
|
|
2230
|
-
[0, 0], 2
|
|
2234
|
+
[_EA, _Reas, _TNe],
|
|
2235
|
+
[0, 0, 0], 2
|
|
2231
2236
|
];
|
|
2232
2237
|
exports.PutSuppressedDestinationResponse$ = [3, n0, _PSDRu,
|
|
2233
2238
|
0,
|
|
2234
2239
|
[],
|
|
2235
2240
|
[]
|
|
2236
2241
|
];
|
|
2242
|
+
exports.PutTenantSuppressionAttributesRequest$ = [3, n0, _PTSAR,
|
|
2243
|
+
0,
|
|
2244
|
+
[_TNe, _SR, _SSu],
|
|
2245
|
+
[0, 64 | 0, 0], 1
|
|
2246
|
+
];
|
|
2247
|
+
exports.PutTenantSuppressionAttributesResponse$ = [3, n0, _PTSARu,
|
|
2248
|
+
0,
|
|
2249
|
+
[],
|
|
2250
|
+
[]
|
|
2251
|
+
];
|
|
2237
2252
|
exports.RawMessage$ = [3, n0, _RM,
|
|
2238
2253
|
0,
|
|
2239
2254
|
[_Da],
|
|
@@ -2341,8 +2356,8 @@ exports.StatusRecord$ = [3, n0, _SRt,
|
|
|
2341
2356
|
];
|
|
2342
2357
|
exports.SuppressedDestination$ = [3, n0, _SDu,
|
|
2343
2358
|
0,
|
|
2344
|
-
[_EA, _Reas, _LUTa, _Att],
|
|
2345
|
-
[0, 0, 4, () => exports.SuppressedDestinationAttributes
|
|
2359
|
+
[_EA, _Reas, _LUTa, _Att, _TNe],
|
|
2360
|
+
[0, 0, 4, () => exports.SuppressedDestinationAttributes$, 0], 3
|
|
2346
2361
|
];
|
|
2347
2362
|
exports.SuppressedDestinationAttributes$ = [3, n0, _SDA,
|
|
2348
2363
|
0,
|
|
@@ -2376,8 +2391,8 @@ exports.SuppressionListDestination$ = [3, n0, _SLD,
|
|
|
2376
2391
|
];
|
|
2377
2392
|
exports.SuppressionOptions$ = [3, n0, _SOu,
|
|
2378
2393
|
0,
|
|
2379
|
-
[_SR, _VOa],
|
|
2380
|
-
[64 | 0, () => exports.SuppressionValidationOptions$]
|
|
2394
|
+
[_SR, _SSu, _VOa],
|
|
2395
|
+
[64 | 0, 0, () => exports.SuppressionValidationOptions$]
|
|
2381
2396
|
];
|
|
2382
2397
|
exports.SuppressionValidationAttributes$ = [3, n0, _SVA,
|
|
2383
2398
|
0,
|
|
@@ -2411,8 +2426,8 @@ exports.Template$ = [3, n0, _Te,
|
|
|
2411
2426
|
];
|
|
2412
2427
|
exports.Tenant$ = [3, n0, _Ten,
|
|
2413
2428
|
0,
|
|
2414
|
-
[_TNe, _TI, _TA, _CTr, _Ta, _SS],
|
|
2415
|
-
[0, 0, 0, 4, () => TagList, 0]
|
|
2429
|
+
[_TNe, _TI, _TA, _CTr, _Ta, _SS, _SA],
|
|
2430
|
+
[0, 0, 0, 4, () => TagList, 0, () => exports.TenantSuppressionAttributes$]
|
|
2416
2431
|
];
|
|
2417
2432
|
exports.TenantInfo$ = [3, n0, _TIe,
|
|
2418
2433
|
0,
|
|
@@ -2424,6 +2439,11 @@ exports.TenantResource$ = [3, n0, _TRe,
|
|
|
2424
2439
|
[_RTes, _RA],
|
|
2425
2440
|
[0, 0]
|
|
2426
2441
|
];
|
|
2442
|
+
exports.TenantSuppressionAttributes$ = [3, n0, _TSA,
|
|
2443
|
+
0,
|
|
2444
|
+
[_SR, _SSu],
|
|
2445
|
+
[64 | 0, 0]
|
|
2446
|
+
];
|
|
2427
2447
|
exports.TestRenderEmailTemplateRequest$ = [3, n0, _TRETR,
|
|
2428
2448
|
0,
|
|
2429
2449
|
[_TN, _TD],
|
|
@@ -2446,7 +2466,7 @@ exports.TopicFilter$ = [3, n0, _TF,
|
|
|
2446
2466
|
];
|
|
2447
2467
|
exports.TopicPreference$ = [3, n0, _TPo,
|
|
2448
2468
|
0,
|
|
2449
|
-
[_TNo,
|
|
2469
|
+
[_TNo, _SSub],
|
|
2450
2470
|
[0, 0], 2
|
|
2451
2471
|
];
|
|
2452
2472
|
exports.TrackingOptions$ = [3, n0, _TO,
|
|
@@ -3014,6 +3034,9 @@ exports.PutEmailIdentityMailFromAttributes$ = [9, n0, _PEIMFA,
|
|
|
3014
3034
|
exports.PutSuppressedDestination$ = [9, n0, _PSD,
|
|
3015
3035
|
{ [_h]: ["PUT", "/v2/email/suppression/addresses", 200] }, () => exports.PutSuppressedDestinationRequest$, () => exports.PutSuppressedDestinationResponse$
|
|
3016
3036
|
];
|
|
3037
|
+
exports.PutTenantSuppressionAttributes$ = [9, n0, _PTSA,
|
|
3038
|
+
{ [_h]: ["POST", "/v2/email/tenant/suppression", 200] }, () => exports.PutTenantSuppressionAttributesRequest$, () => exports.PutTenantSuppressionAttributesResponse$
|
|
3039
|
+
];
|
|
3017
3040
|
exports.SendBulkEmail$ = [9, n0, _SBE,
|
|
3018
3041
|
{ [_h]: ["POST", "/v2/email/outbound-bulk-emails", 200] }, () => exports.SendBulkEmailRequest$, () => exports.SendBulkEmailResponse$
|
|
3019
3042
|
];
|
package/dist-es/SESv2.js
CHANGED
|
@@ -95,6 +95,7 @@ import { PutEmailIdentityDkimSigningAttributesCommand, } from "./commands/PutEma
|
|
|
95
95
|
import { PutEmailIdentityFeedbackAttributesCommand, } from "./commands/PutEmailIdentityFeedbackAttributesCommand";
|
|
96
96
|
import { PutEmailIdentityMailFromAttributesCommand, } from "./commands/PutEmailIdentityMailFromAttributesCommand";
|
|
97
97
|
import { PutSuppressedDestinationCommand, } from "./commands/PutSuppressedDestinationCommand";
|
|
98
|
+
import { PutTenantSuppressionAttributesCommand, } from "./commands/PutTenantSuppressionAttributesCommand";
|
|
98
99
|
import { SendBulkEmailCommand, } from "./commands/SendBulkEmailCommand";
|
|
99
100
|
import { SendCustomVerificationEmailCommand, } from "./commands/SendCustomVerificationEmailCommand";
|
|
100
101
|
import { SendEmailCommand } from "./commands/SendEmailCommand";
|
|
@@ -226,6 +227,7 @@ const commands = {
|
|
|
226
227
|
PutEmailIdentityFeedbackAttributesCommand,
|
|
227
228
|
PutEmailIdentityMailFromAttributesCommand,
|
|
228
229
|
PutSuppressedDestinationCommand,
|
|
230
|
+
PutTenantSuppressionAttributesCommand,
|
|
229
231
|
SendBulkEmailCommand,
|
|
230
232
|
SendCustomVerificationEmailCommand,
|
|
231
233
|
SendEmailCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { PutTenantSuppressionAttributes$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class PutTenantSuppressionAttributesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("SimpleEmailService_v2", "PutTenantSuppressionAttributes", {})
|
|
13
|
+
.n("SESv2Client", "PutTenantSuppressionAttributesCommand")
|
|
14
|
+
.sc(PutTenantSuppressionAttributes$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -94,6 +94,7 @@ export * from "./PutEmailIdentityDkimSigningAttributesCommand";
|
|
|
94
94
|
export * from "./PutEmailIdentityFeedbackAttributesCommand";
|
|
95
95
|
export * from "./PutEmailIdentityMailFromAttributesCommand";
|
|
96
96
|
export * from "./PutSuppressedDestinationCommand";
|
|
97
|
+
export * from "./PutTenantSuppressionAttributesCommand";
|
|
97
98
|
export * from "./SendBulkEmailCommand";
|
|
98
99
|
export * from "./SendCustomVerificationEmailCommand";
|
|
99
100
|
export * from "./SendEmailCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -91,6 +91,10 @@ export const SuppressionListReason = {
|
|
|
91
91
|
BOUNCE: "BOUNCE",
|
|
92
92
|
COMPLAINT: "COMPLAINT",
|
|
93
93
|
};
|
|
94
|
+
export const SuppressionListScope = {
|
|
95
|
+
ACCOUNT: "ACCOUNT",
|
|
96
|
+
TENANT: "TENANT",
|
|
97
|
+
};
|
|
94
98
|
export const FeatureStatus = {
|
|
95
99
|
DISABLED: "DISABLED",
|
|
96
100
|
ENABLED: "ENABLED",
|
|
@@ -595,6 +595,9 @@ const _PSDR = "PutSuppressedDestinationRequest";
|
|
|
595
595
|
const _PSDRu = "PutSuppressedDestinationResponse";
|
|
596
596
|
const _PSl = "PlacementStatistics";
|
|
597
597
|
const _PSr = "ProjectedSpam";
|
|
598
|
+
const _PTSA = "PutTenantSuppressionAttributes";
|
|
599
|
+
const _PTSAR = "PutTenantSuppressionAttributesRequest";
|
|
600
|
+
const _PTSARu = "PutTenantSuppressionAttributesResponse";
|
|
598
601
|
const _PV = "ProjectedVolume";
|
|
599
602
|
const _Po = "Policies";
|
|
600
603
|
const _Q = "Queries";
|
|
@@ -691,7 +694,8 @@ const _SRt = "StatusRecord";
|
|
|
691
694
|
const _SS = "SendingStatus";
|
|
692
695
|
const _SSA = "SendingStatusAggregate";
|
|
693
696
|
const _SSD = "SubscriptionStartDate";
|
|
694
|
-
const _SSu = "
|
|
697
|
+
const _SSu = "SuppressionScope";
|
|
698
|
+
const _SSub = "SubscriptionStatus";
|
|
695
699
|
const _SU = "S3Url";
|
|
696
700
|
const _SVA = "SuppressionValidationAttributes";
|
|
697
701
|
const _SVO = "SuppressionValidationOptions";
|
|
@@ -733,6 +737,7 @@ const _TRRa = "TagResourceResponse";
|
|
|
733
737
|
const _TRa = "TagResource";
|
|
734
738
|
const _TRe = "TenantResource";
|
|
735
739
|
const _TS = "TemplateSubject";
|
|
740
|
+
const _TSA = "TenantSuppressionAttributes";
|
|
736
741
|
const _Ta = "Tags";
|
|
737
742
|
const _Tag = "Tag";
|
|
738
743
|
const _Te = "Template";
|
|
@@ -1129,8 +1134,8 @@ export var CreateMultiRegionEndpointResponse$ = [3, n0, _CMRERr,
|
|
|
1129
1134
|
];
|
|
1130
1135
|
export var CreateTenantRequest$ = [3, n0, _CTR,
|
|
1131
1136
|
0,
|
|
1132
|
-
[_TNe, _Ta],
|
|
1133
|
-
[0, () => TagList], 1
|
|
1137
|
+
[_TNe, _Ta, _SA],
|
|
1138
|
+
[0, () => TagList, () => TenantSuppressionAttributes$], 1
|
|
1134
1139
|
];
|
|
1135
1140
|
export var CreateTenantResourceAssociationRequest$ = [3, n0, _CTRAR,
|
|
1136
1141
|
0,
|
|
@@ -1144,8 +1149,8 @@ export var CreateTenantResourceAssociationResponse$ = [3, n0, _CTRARr,
|
|
|
1144
1149
|
];
|
|
1145
1150
|
export var CreateTenantResponse$ = [3, n0, _CTRr,
|
|
1146
1151
|
0,
|
|
1147
|
-
[_TNe, _TI, _TA, _CTr, _Ta, _SS],
|
|
1148
|
-
[0, 0, 0, 4, () => TagList, 0]
|
|
1152
|
+
[_TNe, _TI, _TA, _CTr, _Ta, _SS, _SA],
|
|
1153
|
+
[0, 0, 0, 4, () => TagList, 0, () => TenantSuppressionAttributes$]
|
|
1149
1154
|
];
|
|
1150
1155
|
export var CustomVerificationEmailTemplateMetadata$ = [3, n0, _CVETM,
|
|
1151
1156
|
0,
|
|
@@ -1279,8 +1284,8 @@ export var DeleteMultiRegionEndpointResponse$ = [3, n0, _DMRERe,
|
|
|
1279
1284
|
];
|
|
1280
1285
|
export var DeleteSuppressedDestinationRequest$ = [3, n0, _DSDR,
|
|
1281
1286
|
0,
|
|
1282
|
-
[_EA],
|
|
1283
|
-
[[0, 1]], 1
|
|
1287
|
+
[_EA, _TNe],
|
|
1288
|
+
[[0, 1], [0, { [_hQ]: _TNe }]], 1
|
|
1284
1289
|
];
|
|
1285
1290
|
export var DeleteSuppressedDestinationResponse$ = [3, n0, _DSDRe,
|
|
1286
1291
|
0,
|
|
@@ -1664,8 +1669,8 @@ export var GetReputationEntityResponse$ = [3, n0, _GRERe,
|
|
|
1664
1669
|
];
|
|
1665
1670
|
export var GetSuppressedDestinationRequest$ = [3, n0, _GSDR,
|
|
1666
1671
|
0,
|
|
1667
|
-
[_EA],
|
|
1668
|
-
[[0, 1]], 1
|
|
1672
|
+
[_EA, _TNe],
|
|
1673
|
+
[[0, 1], [0, { [_hQ]: _TNe }]], 1
|
|
1669
1674
|
];
|
|
1670
1675
|
export var GetSuppressedDestinationResponse$ = [3, n0, _GSDRe,
|
|
1671
1676
|
0,
|
|
@@ -1894,8 +1899,8 @@ export var ListResourceTenantsResponse$ = [3, n0, _LRTRi,
|
|
|
1894
1899
|
];
|
|
1895
1900
|
export var ListSuppressedDestinationsRequest$ = [3, n0, _LSDR,
|
|
1896
1901
|
0,
|
|
1897
|
-
[_Rea, _SD, _ED, _NT, _PS],
|
|
1898
|
-
[[64 | 0, { [_hQ]: _Reas }], [4, { [_hQ]: _SD }], [4, { [_hQ]: _ED }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
1902
|
+
[_TNe, _Rea, _SD, _ED, _NT, _PS],
|
|
1903
|
+
[[0, { [_hQ]: _TNe }], [64 | 0, { [_hQ]: _Reas }], [4, { [_hQ]: _SD }], [4, { [_hQ]: _ED }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _PS }]]
|
|
1899
1904
|
];
|
|
1900
1905
|
export var ListSuppressedDestinationsResponse$ = [3, n0, _LSDRi,
|
|
1901
1906
|
0,
|
|
@@ -2094,8 +2099,8 @@ export var PutConfigurationSetSendingOptionsResponse$ = [3, n0, _PCSSORu,
|
|
|
2094
2099
|
];
|
|
2095
2100
|
export var PutConfigurationSetSuppressionOptionsRequest$ = [3, n0, _PCSSORut,
|
|
2096
2101
|
0,
|
|
2097
|
-
[_CSN, _SR, _VOa],
|
|
2098
|
-
[[0, 1], 64 | 0, () => SuppressionValidationOptions$], 1
|
|
2102
|
+
[_CSN, _SSu, _SR, _VOa],
|
|
2103
|
+
[[0, 1], 0, 64 | 0, () => SuppressionValidationOptions$], 1
|
|
2099
2104
|
];
|
|
2100
2105
|
export var PutConfigurationSetSuppressionOptionsResponse$ = [3, n0, _PCSSORuto,
|
|
2101
2106
|
0,
|
|
@@ -2214,14 +2219,24 @@ export var PutEmailIdentityMailFromAttributesResponse$ = [3, n0, _PEIMFARu,
|
|
|
2214
2219
|
];
|
|
2215
2220
|
export var PutSuppressedDestinationRequest$ = [3, n0, _PSDR,
|
|
2216
2221
|
0,
|
|
2217
|
-
[_EA, _Reas],
|
|
2218
|
-
[0, 0], 2
|
|
2222
|
+
[_EA, _Reas, _TNe],
|
|
2223
|
+
[0, 0, 0], 2
|
|
2219
2224
|
];
|
|
2220
2225
|
export var PutSuppressedDestinationResponse$ = [3, n0, _PSDRu,
|
|
2221
2226
|
0,
|
|
2222
2227
|
[],
|
|
2223
2228
|
[]
|
|
2224
2229
|
];
|
|
2230
|
+
export var PutTenantSuppressionAttributesRequest$ = [3, n0, _PTSAR,
|
|
2231
|
+
0,
|
|
2232
|
+
[_TNe, _SR, _SSu],
|
|
2233
|
+
[0, 64 | 0, 0], 1
|
|
2234
|
+
];
|
|
2235
|
+
export var PutTenantSuppressionAttributesResponse$ = [3, n0, _PTSARu,
|
|
2236
|
+
0,
|
|
2237
|
+
[],
|
|
2238
|
+
[]
|
|
2239
|
+
];
|
|
2225
2240
|
export var RawMessage$ = [3, n0, _RM,
|
|
2226
2241
|
0,
|
|
2227
2242
|
[_Da],
|
|
@@ -2329,8 +2344,8 @@ export var StatusRecord$ = [3, n0, _SRt,
|
|
|
2329
2344
|
];
|
|
2330
2345
|
export var SuppressedDestination$ = [3, n0, _SDu,
|
|
2331
2346
|
0,
|
|
2332
|
-
[_EA, _Reas, _LUTa, _Att],
|
|
2333
|
-
[0, 0, 4, () => SuppressedDestinationAttributes
|
|
2347
|
+
[_EA, _Reas, _LUTa, _Att, _TNe],
|
|
2348
|
+
[0, 0, 4, () => SuppressedDestinationAttributes$, 0], 3
|
|
2334
2349
|
];
|
|
2335
2350
|
export var SuppressedDestinationAttributes$ = [3, n0, _SDA,
|
|
2336
2351
|
0,
|
|
@@ -2364,8 +2379,8 @@ export var SuppressionListDestination$ = [3, n0, _SLD,
|
|
|
2364
2379
|
];
|
|
2365
2380
|
export var SuppressionOptions$ = [3, n0, _SOu,
|
|
2366
2381
|
0,
|
|
2367
|
-
[_SR, _VOa],
|
|
2368
|
-
[64 | 0, () => SuppressionValidationOptions$]
|
|
2382
|
+
[_SR, _SSu, _VOa],
|
|
2383
|
+
[64 | 0, 0, () => SuppressionValidationOptions$]
|
|
2369
2384
|
];
|
|
2370
2385
|
export var SuppressionValidationAttributes$ = [3, n0, _SVA,
|
|
2371
2386
|
0,
|
|
@@ -2399,8 +2414,8 @@ export var Template$ = [3, n0, _Te,
|
|
|
2399
2414
|
];
|
|
2400
2415
|
export var Tenant$ = [3, n0, _Ten,
|
|
2401
2416
|
0,
|
|
2402
|
-
[_TNe, _TI, _TA, _CTr, _Ta, _SS],
|
|
2403
|
-
[0, 0, 0, 4, () => TagList, 0]
|
|
2417
|
+
[_TNe, _TI, _TA, _CTr, _Ta, _SS, _SA],
|
|
2418
|
+
[0, 0, 0, 4, () => TagList, 0, () => TenantSuppressionAttributes$]
|
|
2404
2419
|
];
|
|
2405
2420
|
export var TenantInfo$ = [3, n0, _TIe,
|
|
2406
2421
|
0,
|
|
@@ -2412,6 +2427,11 @@ export var TenantResource$ = [3, n0, _TRe,
|
|
|
2412
2427
|
[_RTes, _RA],
|
|
2413
2428
|
[0, 0]
|
|
2414
2429
|
];
|
|
2430
|
+
export var TenantSuppressionAttributes$ = [3, n0, _TSA,
|
|
2431
|
+
0,
|
|
2432
|
+
[_SR, _SSu],
|
|
2433
|
+
[64 | 0, 0]
|
|
2434
|
+
];
|
|
2415
2435
|
export var TestRenderEmailTemplateRequest$ = [3, n0, _TRETR,
|
|
2416
2436
|
0,
|
|
2417
2437
|
[_TN, _TD],
|
|
@@ -2434,7 +2454,7 @@ export var TopicFilter$ = [3, n0, _TF,
|
|
|
2434
2454
|
];
|
|
2435
2455
|
export var TopicPreference$ = [3, n0, _TPo,
|
|
2436
2456
|
0,
|
|
2437
|
-
[_TNo,
|
|
2457
|
+
[_TNo, _SSub],
|
|
2438
2458
|
[0, 0], 2
|
|
2439
2459
|
];
|
|
2440
2460
|
export var TrackingOptions$ = [3, n0, _TO,
|
|
@@ -3002,6 +3022,9 @@ export var PutEmailIdentityMailFromAttributes$ = [9, n0, _PEIMFA,
|
|
|
3002
3022
|
export var PutSuppressedDestination$ = [9, n0, _PSD,
|
|
3003
3023
|
{ [_h]: ["PUT", "/v2/email/suppression/addresses", 200] }, () => PutSuppressedDestinationRequest$, () => PutSuppressedDestinationResponse$
|
|
3004
3024
|
];
|
|
3025
|
+
export var PutTenantSuppressionAttributes$ = [9, n0, _PTSA,
|
|
3026
|
+
{ [_h]: ["POST", "/v2/email/tenant/suppression", 200] }, () => PutTenantSuppressionAttributesRequest$, () => PutTenantSuppressionAttributesResponse$
|
|
3027
|
+
];
|
|
3005
3028
|
export var SendBulkEmail$ = [9, n0, _SBE,
|
|
3006
3029
|
{ [_h]: ["POST", "/v2/email/outbound-bulk-emails", 200] }, () => SendBulkEmailRequest$, () => SendBulkEmailResponse$
|
|
3007
3030
|
];
|
package/dist-types/SESv2.d.ts
CHANGED
|
@@ -95,6 +95,7 @@ import { type PutEmailIdentityDkimSigningAttributesCommandInput, type PutEmailId
|
|
|
95
95
|
import { type PutEmailIdentityFeedbackAttributesCommandInput, type PutEmailIdentityFeedbackAttributesCommandOutput } from "./commands/PutEmailIdentityFeedbackAttributesCommand";
|
|
96
96
|
import { type PutEmailIdentityMailFromAttributesCommandInput, type PutEmailIdentityMailFromAttributesCommandOutput } from "./commands/PutEmailIdentityMailFromAttributesCommand";
|
|
97
97
|
import { type PutSuppressedDestinationCommandInput, type PutSuppressedDestinationCommandOutput } from "./commands/PutSuppressedDestinationCommand";
|
|
98
|
+
import { type PutTenantSuppressionAttributesCommandInput, type PutTenantSuppressionAttributesCommandOutput } from "./commands/PutTenantSuppressionAttributesCommand";
|
|
98
99
|
import { type SendBulkEmailCommandInput, type SendBulkEmailCommandOutput } from "./commands/SendBulkEmailCommand";
|
|
99
100
|
import { type SendCustomVerificationEmailCommandInput, type SendCustomVerificationEmailCommandOutput } from "./commands/SendCustomVerificationEmailCommand";
|
|
100
101
|
import { type SendEmailCommandInput, type SendEmailCommandOutput } from "./commands/SendEmailCommand";
|
|
@@ -707,6 +708,12 @@ export interface SESv2 {
|
|
|
707
708
|
putSuppressedDestination(args: PutSuppressedDestinationCommandInput, options?: __HttpHandlerOptions): Promise<PutSuppressedDestinationCommandOutput>;
|
|
708
709
|
putSuppressedDestination(args: PutSuppressedDestinationCommandInput, cb: (err: any, data?: PutSuppressedDestinationCommandOutput) => void): void;
|
|
709
710
|
putSuppressedDestination(args: PutSuppressedDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSuppressedDestinationCommandOutput) => void): void;
|
|
711
|
+
/**
|
|
712
|
+
* @see {@link PutTenantSuppressionAttributesCommand}
|
|
713
|
+
*/
|
|
714
|
+
putTenantSuppressionAttributes(args: PutTenantSuppressionAttributesCommandInput, options?: __HttpHandlerOptions): Promise<PutTenantSuppressionAttributesCommandOutput>;
|
|
715
|
+
putTenantSuppressionAttributes(args: PutTenantSuppressionAttributesCommandInput, cb: (err: any, data?: PutTenantSuppressionAttributesCommandOutput) => void): void;
|
|
716
|
+
putTenantSuppressionAttributes(args: PutTenantSuppressionAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutTenantSuppressionAttributesCommandOutput) => void): void;
|
|
710
717
|
/**
|
|
711
718
|
* @see {@link SendBulkEmailCommand}
|
|
712
719
|
*/
|
|
@@ -102,6 +102,7 @@ import type { PutEmailIdentityDkimSigningAttributesCommandInput, PutEmailIdentit
|
|
|
102
102
|
import type { PutEmailIdentityFeedbackAttributesCommandInput, PutEmailIdentityFeedbackAttributesCommandOutput } from "./commands/PutEmailIdentityFeedbackAttributesCommand";
|
|
103
103
|
import type { PutEmailIdentityMailFromAttributesCommandInput, PutEmailIdentityMailFromAttributesCommandOutput } from "./commands/PutEmailIdentityMailFromAttributesCommand";
|
|
104
104
|
import type { PutSuppressedDestinationCommandInput, PutSuppressedDestinationCommandOutput } from "./commands/PutSuppressedDestinationCommand";
|
|
105
|
+
import type { PutTenantSuppressionAttributesCommandInput, PutTenantSuppressionAttributesCommandOutput } from "./commands/PutTenantSuppressionAttributesCommand";
|
|
105
106
|
import type { SendBulkEmailCommandInput, SendBulkEmailCommandOutput } from "./commands/SendBulkEmailCommand";
|
|
106
107
|
import type { SendCustomVerificationEmailCommandInput, SendCustomVerificationEmailCommandOutput } from "./commands/SendCustomVerificationEmailCommand";
|
|
107
108
|
import type { SendEmailCommandInput, SendEmailCommandOutput } from "./commands/SendEmailCommand";
|
|
@@ -122,11 +123,11 @@ export { __Client };
|
|
|
122
123
|
/**
|
|
123
124
|
* @public
|
|
124
125
|
*/
|
|
125
|
-
export type ServiceInputTypes = BatchGetMetricDataCommandInput | CancelExportJobCommandInput | CreateConfigurationSetCommandInput | CreateConfigurationSetEventDestinationCommandInput | CreateContactCommandInput | CreateContactListCommandInput | CreateCustomVerificationEmailTemplateCommandInput | CreateDedicatedIpPoolCommandInput | CreateDeliverabilityTestReportCommandInput | CreateEmailIdentityCommandInput | CreateEmailIdentityPolicyCommandInput | CreateEmailTemplateCommandInput | CreateExportJobCommandInput | CreateImportJobCommandInput | CreateMultiRegionEndpointCommandInput | CreateTenantCommandInput | CreateTenantResourceAssociationCommandInput | DeleteConfigurationSetCommandInput | DeleteConfigurationSetEventDestinationCommandInput | DeleteContactCommandInput | DeleteContactListCommandInput | DeleteCustomVerificationEmailTemplateCommandInput | DeleteDedicatedIpPoolCommandInput | DeleteEmailIdentityCommandInput | DeleteEmailIdentityPolicyCommandInput | DeleteEmailTemplateCommandInput | DeleteMultiRegionEndpointCommandInput | DeleteSuppressedDestinationCommandInput | DeleteTenantCommandInput | DeleteTenantResourceAssociationCommandInput | GetAccountCommandInput | GetBlacklistReportsCommandInput | GetConfigurationSetCommandInput | GetConfigurationSetEventDestinationsCommandInput | GetContactCommandInput | GetContactListCommandInput | GetCustomVerificationEmailTemplateCommandInput | GetDedicatedIpCommandInput | GetDedicatedIpPoolCommandInput | GetDedicatedIpsCommandInput | GetDeliverabilityDashboardOptionsCommandInput | GetDeliverabilityTestReportCommandInput | GetDomainDeliverabilityCampaignCommandInput | GetDomainStatisticsReportCommandInput | GetEmailAddressInsightsCommandInput | GetEmailIdentityCommandInput | GetEmailIdentityPoliciesCommandInput | GetEmailTemplateCommandInput | GetExportJobCommandInput | GetImportJobCommandInput | GetMessageInsightsCommandInput | GetMultiRegionEndpointCommandInput | GetReputationEntityCommandInput | GetSuppressedDestinationCommandInput | GetTenantCommandInput | ListConfigurationSetsCommandInput | ListContactListsCommandInput | ListContactsCommandInput | ListCustomVerificationEmailTemplatesCommandInput | ListDedicatedIpPoolsCommandInput | ListDeliverabilityTestReportsCommandInput | ListDomainDeliverabilityCampaignsCommandInput | ListEmailIdentitiesCommandInput | ListEmailTemplatesCommandInput | ListExportJobsCommandInput | ListImportJobsCommandInput | ListMultiRegionEndpointsCommandInput | ListRecommendationsCommandInput | ListReputationEntitiesCommandInput | ListResourceTenantsCommandInput | ListSuppressedDestinationsCommandInput | ListTagsForResourceCommandInput | ListTenantResourcesCommandInput | ListTenantsCommandInput | PutAccountDedicatedIpWarmupAttributesCommandInput | PutAccountDetailsCommandInput | PutAccountSendingAttributesCommandInput | PutAccountSuppressionAttributesCommandInput | PutAccountVdmAttributesCommandInput | PutConfigurationSetArchivingOptionsCommandInput | PutConfigurationSetDeliveryOptionsCommandInput | PutConfigurationSetReputationOptionsCommandInput | PutConfigurationSetSendingOptionsCommandInput | PutConfigurationSetSuppressionOptionsCommandInput | PutConfigurationSetTrackingOptionsCommandInput | PutConfigurationSetVdmOptionsCommandInput | PutDedicatedIpInPoolCommandInput | PutDedicatedIpPoolScalingAttributesCommandInput | PutDedicatedIpWarmupAttributesCommandInput | PutDeliverabilityDashboardOptionCommandInput | PutEmailIdentityConfigurationSetAttributesCommandInput | PutEmailIdentityDkimAttributesCommandInput | PutEmailIdentityDkimSigningAttributesCommandInput | PutEmailIdentityFeedbackAttributesCommandInput | PutEmailIdentityMailFromAttributesCommandInput | PutSuppressedDestinationCommandInput | SendBulkEmailCommandInput | SendCustomVerificationEmailCommandInput | SendEmailCommandInput | TagResourceCommandInput | TestRenderEmailTemplateCommandInput | UntagResourceCommandInput | UpdateConfigurationSetEventDestinationCommandInput | UpdateContactCommandInput | UpdateContactListCommandInput | UpdateCustomVerificationEmailTemplateCommandInput | UpdateEmailIdentityPolicyCommandInput | UpdateEmailTemplateCommandInput | UpdateReputationEntityCustomerManagedStatusCommandInput | UpdateReputationEntityPolicyCommandInput;
|
|
126
|
+
export type ServiceInputTypes = BatchGetMetricDataCommandInput | CancelExportJobCommandInput | CreateConfigurationSetCommandInput | CreateConfigurationSetEventDestinationCommandInput | CreateContactCommandInput | CreateContactListCommandInput | CreateCustomVerificationEmailTemplateCommandInput | CreateDedicatedIpPoolCommandInput | CreateDeliverabilityTestReportCommandInput | CreateEmailIdentityCommandInput | CreateEmailIdentityPolicyCommandInput | CreateEmailTemplateCommandInput | CreateExportJobCommandInput | CreateImportJobCommandInput | CreateMultiRegionEndpointCommandInput | CreateTenantCommandInput | CreateTenantResourceAssociationCommandInput | DeleteConfigurationSetCommandInput | DeleteConfigurationSetEventDestinationCommandInput | DeleteContactCommandInput | DeleteContactListCommandInput | DeleteCustomVerificationEmailTemplateCommandInput | DeleteDedicatedIpPoolCommandInput | DeleteEmailIdentityCommandInput | DeleteEmailIdentityPolicyCommandInput | DeleteEmailTemplateCommandInput | DeleteMultiRegionEndpointCommandInput | DeleteSuppressedDestinationCommandInput | DeleteTenantCommandInput | DeleteTenantResourceAssociationCommandInput | GetAccountCommandInput | GetBlacklistReportsCommandInput | GetConfigurationSetCommandInput | GetConfigurationSetEventDestinationsCommandInput | GetContactCommandInput | GetContactListCommandInput | GetCustomVerificationEmailTemplateCommandInput | GetDedicatedIpCommandInput | GetDedicatedIpPoolCommandInput | GetDedicatedIpsCommandInput | GetDeliverabilityDashboardOptionsCommandInput | GetDeliverabilityTestReportCommandInput | GetDomainDeliverabilityCampaignCommandInput | GetDomainStatisticsReportCommandInput | GetEmailAddressInsightsCommandInput | GetEmailIdentityCommandInput | GetEmailIdentityPoliciesCommandInput | GetEmailTemplateCommandInput | GetExportJobCommandInput | GetImportJobCommandInput | GetMessageInsightsCommandInput | GetMultiRegionEndpointCommandInput | GetReputationEntityCommandInput | GetSuppressedDestinationCommandInput | GetTenantCommandInput | ListConfigurationSetsCommandInput | ListContactListsCommandInput | ListContactsCommandInput | ListCustomVerificationEmailTemplatesCommandInput | ListDedicatedIpPoolsCommandInput | ListDeliverabilityTestReportsCommandInput | ListDomainDeliverabilityCampaignsCommandInput | ListEmailIdentitiesCommandInput | ListEmailTemplatesCommandInput | ListExportJobsCommandInput | ListImportJobsCommandInput | ListMultiRegionEndpointsCommandInput | ListRecommendationsCommandInput | ListReputationEntitiesCommandInput | ListResourceTenantsCommandInput | ListSuppressedDestinationsCommandInput | ListTagsForResourceCommandInput | ListTenantResourcesCommandInput | ListTenantsCommandInput | PutAccountDedicatedIpWarmupAttributesCommandInput | PutAccountDetailsCommandInput | PutAccountSendingAttributesCommandInput | PutAccountSuppressionAttributesCommandInput | PutAccountVdmAttributesCommandInput | PutConfigurationSetArchivingOptionsCommandInput | PutConfigurationSetDeliveryOptionsCommandInput | PutConfigurationSetReputationOptionsCommandInput | PutConfigurationSetSendingOptionsCommandInput | PutConfigurationSetSuppressionOptionsCommandInput | PutConfigurationSetTrackingOptionsCommandInput | PutConfigurationSetVdmOptionsCommandInput | PutDedicatedIpInPoolCommandInput | PutDedicatedIpPoolScalingAttributesCommandInput | PutDedicatedIpWarmupAttributesCommandInput | PutDeliverabilityDashboardOptionCommandInput | PutEmailIdentityConfigurationSetAttributesCommandInput | PutEmailIdentityDkimAttributesCommandInput | PutEmailIdentityDkimSigningAttributesCommandInput | PutEmailIdentityFeedbackAttributesCommandInput | PutEmailIdentityMailFromAttributesCommandInput | PutSuppressedDestinationCommandInput | PutTenantSuppressionAttributesCommandInput | SendBulkEmailCommandInput | SendCustomVerificationEmailCommandInput | SendEmailCommandInput | TagResourceCommandInput | TestRenderEmailTemplateCommandInput | UntagResourceCommandInput | UpdateConfigurationSetEventDestinationCommandInput | UpdateContactCommandInput | UpdateContactListCommandInput | UpdateCustomVerificationEmailTemplateCommandInput | UpdateEmailIdentityPolicyCommandInput | UpdateEmailTemplateCommandInput | UpdateReputationEntityCustomerManagedStatusCommandInput | UpdateReputationEntityPolicyCommandInput;
|
|
126
127
|
/**
|
|
127
128
|
* @public
|
|
128
129
|
*/
|
|
129
|
-
export type ServiceOutputTypes = BatchGetMetricDataCommandOutput | CancelExportJobCommandOutput | CreateConfigurationSetCommandOutput | CreateConfigurationSetEventDestinationCommandOutput | CreateContactCommandOutput | CreateContactListCommandOutput | CreateCustomVerificationEmailTemplateCommandOutput | CreateDedicatedIpPoolCommandOutput | CreateDeliverabilityTestReportCommandOutput | CreateEmailIdentityCommandOutput | CreateEmailIdentityPolicyCommandOutput | CreateEmailTemplateCommandOutput | CreateExportJobCommandOutput | CreateImportJobCommandOutput | CreateMultiRegionEndpointCommandOutput | CreateTenantCommandOutput | CreateTenantResourceAssociationCommandOutput | DeleteConfigurationSetCommandOutput | DeleteConfigurationSetEventDestinationCommandOutput | DeleteContactCommandOutput | DeleteContactListCommandOutput | DeleteCustomVerificationEmailTemplateCommandOutput | DeleteDedicatedIpPoolCommandOutput | DeleteEmailIdentityCommandOutput | DeleteEmailIdentityPolicyCommandOutput | DeleteEmailTemplateCommandOutput | DeleteMultiRegionEndpointCommandOutput | DeleteSuppressedDestinationCommandOutput | DeleteTenantCommandOutput | DeleteTenantResourceAssociationCommandOutput | GetAccountCommandOutput | GetBlacklistReportsCommandOutput | GetConfigurationSetCommandOutput | GetConfigurationSetEventDestinationsCommandOutput | GetContactCommandOutput | GetContactListCommandOutput | GetCustomVerificationEmailTemplateCommandOutput | GetDedicatedIpCommandOutput | GetDedicatedIpPoolCommandOutput | GetDedicatedIpsCommandOutput | GetDeliverabilityDashboardOptionsCommandOutput | GetDeliverabilityTestReportCommandOutput | GetDomainDeliverabilityCampaignCommandOutput | GetDomainStatisticsReportCommandOutput | GetEmailAddressInsightsCommandOutput | GetEmailIdentityCommandOutput | GetEmailIdentityPoliciesCommandOutput | GetEmailTemplateCommandOutput | GetExportJobCommandOutput | GetImportJobCommandOutput | GetMessageInsightsCommandOutput | GetMultiRegionEndpointCommandOutput | GetReputationEntityCommandOutput | GetSuppressedDestinationCommandOutput | GetTenantCommandOutput | ListConfigurationSetsCommandOutput | ListContactListsCommandOutput | ListContactsCommandOutput | ListCustomVerificationEmailTemplatesCommandOutput | ListDedicatedIpPoolsCommandOutput | ListDeliverabilityTestReportsCommandOutput | ListDomainDeliverabilityCampaignsCommandOutput | ListEmailIdentitiesCommandOutput | ListEmailTemplatesCommandOutput | ListExportJobsCommandOutput | ListImportJobsCommandOutput | ListMultiRegionEndpointsCommandOutput | ListRecommendationsCommandOutput | ListReputationEntitiesCommandOutput | ListResourceTenantsCommandOutput | ListSuppressedDestinationsCommandOutput | ListTagsForResourceCommandOutput | ListTenantResourcesCommandOutput | ListTenantsCommandOutput | PutAccountDedicatedIpWarmupAttributesCommandOutput | PutAccountDetailsCommandOutput | PutAccountSendingAttributesCommandOutput | PutAccountSuppressionAttributesCommandOutput | PutAccountVdmAttributesCommandOutput | PutConfigurationSetArchivingOptionsCommandOutput | PutConfigurationSetDeliveryOptionsCommandOutput | PutConfigurationSetReputationOptionsCommandOutput | PutConfigurationSetSendingOptionsCommandOutput | PutConfigurationSetSuppressionOptionsCommandOutput | PutConfigurationSetTrackingOptionsCommandOutput | PutConfigurationSetVdmOptionsCommandOutput | PutDedicatedIpInPoolCommandOutput | PutDedicatedIpPoolScalingAttributesCommandOutput | PutDedicatedIpWarmupAttributesCommandOutput | PutDeliverabilityDashboardOptionCommandOutput | PutEmailIdentityConfigurationSetAttributesCommandOutput | PutEmailIdentityDkimAttributesCommandOutput | PutEmailIdentityDkimSigningAttributesCommandOutput | PutEmailIdentityFeedbackAttributesCommandOutput | PutEmailIdentityMailFromAttributesCommandOutput | PutSuppressedDestinationCommandOutput | SendBulkEmailCommandOutput | SendCustomVerificationEmailCommandOutput | SendEmailCommandOutput | TagResourceCommandOutput | TestRenderEmailTemplateCommandOutput | UntagResourceCommandOutput | UpdateConfigurationSetEventDestinationCommandOutput | UpdateContactCommandOutput | UpdateContactListCommandOutput | UpdateCustomVerificationEmailTemplateCommandOutput | UpdateEmailIdentityPolicyCommandOutput | UpdateEmailTemplateCommandOutput | UpdateReputationEntityCustomerManagedStatusCommandOutput | UpdateReputationEntityPolicyCommandOutput;
|
|
130
|
+
export type ServiceOutputTypes = BatchGetMetricDataCommandOutput | CancelExportJobCommandOutput | CreateConfigurationSetCommandOutput | CreateConfigurationSetEventDestinationCommandOutput | CreateContactCommandOutput | CreateContactListCommandOutput | CreateCustomVerificationEmailTemplateCommandOutput | CreateDedicatedIpPoolCommandOutput | CreateDeliverabilityTestReportCommandOutput | CreateEmailIdentityCommandOutput | CreateEmailIdentityPolicyCommandOutput | CreateEmailTemplateCommandOutput | CreateExportJobCommandOutput | CreateImportJobCommandOutput | CreateMultiRegionEndpointCommandOutput | CreateTenantCommandOutput | CreateTenantResourceAssociationCommandOutput | DeleteConfigurationSetCommandOutput | DeleteConfigurationSetEventDestinationCommandOutput | DeleteContactCommandOutput | DeleteContactListCommandOutput | DeleteCustomVerificationEmailTemplateCommandOutput | DeleteDedicatedIpPoolCommandOutput | DeleteEmailIdentityCommandOutput | DeleteEmailIdentityPolicyCommandOutput | DeleteEmailTemplateCommandOutput | DeleteMultiRegionEndpointCommandOutput | DeleteSuppressedDestinationCommandOutput | DeleteTenantCommandOutput | DeleteTenantResourceAssociationCommandOutput | GetAccountCommandOutput | GetBlacklistReportsCommandOutput | GetConfigurationSetCommandOutput | GetConfigurationSetEventDestinationsCommandOutput | GetContactCommandOutput | GetContactListCommandOutput | GetCustomVerificationEmailTemplateCommandOutput | GetDedicatedIpCommandOutput | GetDedicatedIpPoolCommandOutput | GetDedicatedIpsCommandOutput | GetDeliverabilityDashboardOptionsCommandOutput | GetDeliverabilityTestReportCommandOutput | GetDomainDeliverabilityCampaignCommandOutput | GetDomainStatisticsReportCommandOutput | GetEmailAddressInsightsCommandOutput | GetEmailIdentityCommandOutput | GetEmailIdentityPoliciesCommandOutput | GetEmailTemplateCommandOutput | GetExportJobCommandOutput | GetImportJobCommandOutput | GetMessageInsightsCommandOutput | GetMultiRegionEndpointCommandOutput | GetReputationEntityCommandOutput | GetSuppressedDestinationCommandOutput | GetTenantCommandOutput | ListConfigurationSetsCommandOutput | ListContactListsCommandOutput | ListContactsCommandOutput | ListCustomVerificationEmailTemplatesCommandOutput | ListDedicatedIpPoolsCommandOutput | ListDeliverabilityTestReportsCommandOutput | ListDomainDeliverabilityCampaignsCommandOutput | ListEmailIdentitiesCommandOutput | ListEmailTemplatesCommandOutput | ListExportJobsCommandOutput | ListImportJobsCommandOutput | ListMultiRegionEndpointsCommandOutput | ListRecommendationsCommandOutput | ListReputationEntitiesCommandOutput | ListResourceTenantsCommandOutput | ListSuppressedDestinationsCommandOutput | ListTagsForResourceCommandOutput | ListTenantResourcesCommandOutput | ListTenantsCommandOutput | PutAccountDedicatedIpWarmupAttributesCommandOutput | PutAccountDetailsCommandOutput | PutAccountSendingAttributesCommandOutput | PutAccountSuppressionAttributesCommandOutput | PutAccountVdmAttributesCommandOutput | PutConfigurationSetArchivingOptionsCommandOutput | PutConfigurationSetDeliveryOptionsCommandOutput | PutConfigurationSetReputationOptionsCommandOutput | PutConfigurationSetSendingOptionsCommandOutput | PutConfigurationSetSuppressionOptionsCommandOutput | PutConfigurationSetTrackingOptionsCommandOutput | PutConfigurationSetVdmOptionsCommandOutput | PutDedicatedIpInPoolCommandOutput | PutDedicatedIpPoolScalingAttributesCommandOutput | PutDedicatedIpWarmupAttributesCommandOutput | PutDeliverabilityDashboardOptionCommandOutput | PutEmailIdentityConfigurationSetAttributesCommandOutput | PutEmailIdentityDkimAttributesCommandOutput | PutEmailIdentityDkimSigningAttributesCommandOutput | PutEmailIdentityFeedbackAttributesCommandOutput | PutEmailIdentityMailFromAttributesCommandOutput | PutSuppressedDestinationCommandOutput | PutTenantSuppressionAttributesCommandOutput | SendBulkEmailCommandOutput | SendCustomVerificationEmailCommandOutput | SendEmailCommandOutput | TagResourceCommandOutput | TestRenderEmailTemplateCommandOutput | UntagResourceCommandOutput | UpdateConfigurationSetEventDestinationCommandOutput | UpdateContactCommandOutput | UpdateContactListCommandOutput | UpdateCustomVerificationEmailTemplateCommandOutput | UpdateEmailIdentityPolicyCommandOutput | UpdateEmailTemplateCommandOutput | UpdateReputationEntityCustomerManagedStatusCommandOutput | UpdateReputationEntityPolicyCommandOutput;
|
|
130
131
|
/**
|
|
131
132
|
* @public
|
|
132
133
|
*/
|
|
@@ -70,6 +70,7 @@ declare const CreateConfigurationSetCommand_base: {
|
|
|
70
70
|
* SuppressedReasons: [ // SuppressionListReasons
|
|
71
71
|
* "BOUNCE" || "COMPLAINT",
|
|
72
72
|
* ],
|
|
73
|
+
* SuppressionScope: "ACCOUNT" || "TENANT",
|
|
73
74
|
* ValidationOptions: { // SuppressionValidationOptions
|
|
74
75
|
* ConditionThreshold: { // SuppressionConditionThreshold
|
|
75
76
|
* ConditionThresholdEnabled: "ENABLED" || "DISABLED", // required
|