@aws-sdk/client-sesv2 3.1122.0 → 3.1124.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.
Files changed (56) hide show
  1. package/README.md +28 -0
  2. package/dist-cjs/index.js +180 -23
  3. package/dist-es/SESv2.js +10 -0
  4. package/dist-es/commands/AssociateEmailIdentityCertificateCommand.js +4 -0
  5. package/dist-es/commands/DisassociateEmailIdentityCertificateCommand.js +4 -0
  6. package/dist-es/commands/ListEmailIdentityCertificatesCommand.js +4 -0
  7. package/dist-es/commands/UpdateConfigurationSetCommand.js +4 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/enums.js +10 -0
  10. package/dist-es/models/errors.js +12 -12
  11. package/dist-es/pagination/ListEmailIdentityCertificatesPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +114 -10
  14. package/dist-types/SESv2.d.ts +35 -0
  15. package/dist-types/SESv2Client.d.ts +6 -2
  16. package/dist-types/commands/AssociateEmailIdentityCertificateCommand.d.ts +103 -0
  17. package/dist-types/commands/CreateConfigurationSetCommand.d.ts +8 -0
  18. package/dist-types/commands/DisassociateEmailIdentityCertificateCommand.d.ts +87 -0
  19. package/dist-types/commands/GetConfigurationSetCommand.d.ts +8 -0
  20. package/dist-types/commands/ListEmailIdentityCertificatesCommand.d.ts +99 -0
  21. package/dist-types/commands/PutConfigurationSetVdmOptionsCommand.d.ts +2 -1
  22. package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
  23. package/dist-types/commands/PutDedicatedIpPoolScalingAttributesCommand.d.ts +1 -1
  24. package/dist-types/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
  25. package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -1
  26. package/dist-types/commands/PutEmailIdentityConfigurationSetAttributesCommand.d.ts +1 -1
  27. package/dist-types/commands/UpdateConfigurationSetCommand.d.ts +88 -0
  28. package/dist-types/commands/index.d.ts +4 -0
  29. package/dist-types/models/enums.d.ts +26 -0
  30. package/dist-types/models/errors.d.ts +12 -12
  31. package/dist-types/models/models_0.d.ts +236 -136
  32. package/dist-types/models/models_1.d.ts +161 -2
  33. package/dist-types/pagination/ListEmailIdentityCertificatesPaginator.d.ts +7 -0
  34. package/dist-types/pagination/index.d.ts +1 -0
  35. package/dist-types/schemas/schemas_0.d.ts +18 -1
  36. package/dist-types/ts3.4/SESv2.d.ts +75 -0
  37. package/dist-types/ts3.4/SESv2Client.d.ts +24 -0
  38. package/dist-types/ts3.4/commands/AssociateEmailIdentityCertificateCommand.d.ts +42 -0
  39. package/dist-types/ts3.4/commands/DisassociateEmailIdentityCertificateCommand.d.ts +42 -0
  40. package/dist-types/ts3.4/commands/ListEmailIdentityCertificatesCommand.d.ts +42 -0
  41. package/dist-types/ts3.4/commands/PutConfigurationSetVdmOptionsCommand.d.ts +2 -4
  42. package/dist-types/ts3.4/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/PutDedicatedIpPoolScalingAttributesCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/PutEmailIdentityConfigurationSetAttributesCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/UpdateConfigurationSetCommand.d.ts +39 -0
  48. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  49. package/dist-types/ts3.4/models/enums.d.ts +13 -0
  50. package/dist-types/ts3.4/models/errors.d.ts +5 -5
  51. package/dist-types/ts3.4/models/models_0.d.ts +63 -26
  52. package/dist-types/ts3.4/models/models_1.d.ts +34 -0
  53. package/dist-types/ts3.4/pagination/ListEmailIdentityCertificatesPaginator.d.ts +11 -0
  54. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  55. package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -1
  56. package/package.json +2 -2
@@ -6,6 +6,7 @@ import { type HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/cor
6
6
  import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/core/retry";
7
7
  import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
8
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
9
+ import type { AssociateEmailIdentityCertificateCommandInput, AssociateEmailIdentityCertificateCommandOutput } from "./commands/AssociateEmailIdentityCertificateCommand";
9
10
  import type { BatchGetMetricDataCommandInput, BatchGetMetricDataCommandOutput } from "./commands/BatchGetMetricDataCommand";
10
11
  import type { CancelExportJobCommandInput, CancelExportJobCommandOutput } from "./commands/CancelExportJobCommand";
11
12
  import type { CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput } from "./commands/CreateConfigurationSetCommand";
@@ -36,6 +37,7 @@ import type { DeleteMultiRegionEndpointCommandInput, DeleteMultiRegionEndpointCo
36
37
  import type { DeleteSuppressedDestinationCommandInput, DeleteSuppressedDestinationCommandOutput } from "./commands/DeleteSuppressedDestinationCommand";
37
38
  import type { DeleteTenantCommandInput, DeleteTenantCommandOutput } from "./commands/DeleteTenantCommand";
38
39
  import type { DeleteTenantResourceAssociationCommandInput, DeleteTenantResourceAssociationCommandOutput } from "./commands/DeleteTenantResourceAssociationCommand";
40
+ import type { DisassociateEmailIdentityCertificateCommandInput, DisassociateEmailIdentityCertificateCommandOutput } from "./commands/DisassociateEmailIdentityCertificateCommand";
39
41
  import type { GetAccountCommandInput, GetAccountCommandOutput } from "./commands/GetAccountCommand";
40
42
  import type { GetBlacklistReportsCommandInput, GetBlacklistReportsCommandOutput } from "./commands/GetBlacklistReportsCommand";
41
43
  import type { GetConfigurationSetCommandInput, GetConfigurationSetCommandOutput } from "./commands/GetConfigurationSetCommand";
@@ -69,6 +71,7 @@ import type { ListDedicatedIpPoolsCommandInput, ListDedicatedIpPoolsCommandOutpu
69
71
  import type { ListDeliverabilityTestReportsCommandInput, ListDeliverabilityTestReportsCommandOutput } from "./commands/ListDeliverabilityTestReportsCommand";
70
72
  import type { ListDomainDeliverabilityCampaignsCommandInput, ListDomainDeliverabilityCampaignsCommandOutput } from "./commands/ListDomainDeliverabilityCampaignsCommand";
71
73
  import type { ListEmailIdentitiesCommandInput, ListEmailIdentitiesCommandOutput } from "./commands/ListEmailIdentitiesCommand";
74
+ import type { ListEmailIdentityCertificatesCommandInput, ListEmailIdentityCertificatesCommandOutput } from "./commands/ListEmailIdentityCertificatesCommand";
72
75
  import type { ListEmailTemplatesCommandInput, ListEmailTemplatesCommandOutput } from "./commands/ListEmailTemplatesCommand";
73
76
  import type { ListExportJobsCommandInput, ListExportJobsCommandOutput } from "./commands/ListExportJobsCommand";
74
77
  import type { ListImportJobsCommandInput, ListImportJobsCommandOutput } from "./commands/ListImportJobsCommand";
@@ -110,6 +113,7 @@ import type { SendEmailCommandInput, SendEmailCommandOutput } from "./commands/S
110
113
  import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
111
114
  import type { TestRenderEmailTemplateCommandInput, TestRenderEmailTemplateCommandOutput } from "./commands/TestRenderEmailTemplateCommand";
112
115
  import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
116
+ import type { UpdateConfigurationSetCommandInput, UpdateConfigurationSetCommandOutput } from "./commands/UpdateConfigurationSetCommand";
113
117
  import type { UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput } from "./commands/UpdateConfigurationSetEventDestinationCommand";
114
118
  import type { UpdateContactCommandInput, UpdateContactCommandOutput } from "./commands/UpdateContactCommand";
115
119
  import type { UpdateContactListCommandInput, UpdateContactListCommandOutput } from "./commands/UpdateContactListCommand";
@@ -124,11 +128,11 @@ export { __Client };
124
128
  /**
125
129
  * @public
126
130
  */
127
- 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 | PutAccountPricingAttributesCommandInput | 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;
131
+ export type ServiceInputTypes = AssociateEmailIdentityCertificateCommandInput | 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 | DisassociateEmailIdentityCertificateCommandInput | 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 | ListEmailIdentityCertificatesCommandInput | ListEmailTemplatesCommandInput | ListExportJobsCommandInput | ListImportJobsCommandInput | ListMultiRegionEndpointsCommandInput | ListRecommendationsCommandInput | ListReputationEntitiesCommandInput | ListResourceTenantsCommandInput | ListSuppressedDestinationsCommandInput | ListTagsForResourceCommandInput | ListTenantResourcesCommandInput | ListTenantsCommandInput | PutAccountDedicatedIpWarmupAttributesCommandInput | PutAccountDetailsCommandInput | PutAccountPricingAttributesCommandInput | 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 | UpdateConfigurationSetCommandInput | UpdateConfigurationSetEventDestinationCommandInput | UpdateContactCommandInput | UpdateContactListCommandInput | UpdateCustomVerificationEmailTemplateCommandInput | UpdateEmailIdentityPolicyCommandInput | UpdateEmailTemplateCommandInput | UpdateReputationEntityCustomerManagedStatusCommandInput | UpdateReputationEntityPolicyCommandInput;
128
132
  /**
129
133
  * @public
130
134
  */
131
- 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 | PutAccountPricingAttributesCommandOutput | 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;
135
+ export type ServiceOutputTypes = AssociateEmailIdentityCertificateCommandOutput | 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 | DisassociateEmailIdentityCertificateCommandOutput | 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 | ListEmailIdentityCertificatesCommandOutput | ListEmailTemplatesCommandOutput | ListExportJobsCommandOutput | ListImportJobsCommandOutput | ListMultiRegionEndpointsCommandOutput | ListRecommendationsCommandOutput | ListReputationEntitiesCommandOutput | ListResourceTenantsCommandOutput | ListSuppressedDestinationsCommandOutput | ListTagsForResourceCommandOutput | ListTenantResourcesCommandOutput | ListTenantsCommandOutput | PutAccountDedicatedIpWarmupAttributesCommandOutput | PutAccountDetailsCommandOutput | PutAccountPricingAttributesCommandOutput | 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 | UpdateConfigurationSetCommandOutput | UpdateConfigurationSetEventDestinationCommandOutput | UpdateContactCommandOutput | UpdateContactListCommandOutput | UpdateCustomVerificationEmailTemplateCommandOutput | UpdateEmailIdentityPolicyCommandOutput | UpdateEmailTemplateCommandOutput | UpdateReputationEntityCustomerManagedStatusCommandOutput | UpdateReputationEntityPolicyCommandOutput;
132
136
  /**
133
137
  * @public
134
138
  */
@@ -0,0 +1,103 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { AssociateEmailIdentityCertificateRequest, AssociateEmailIdentityCertificateResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link AssociateEmailIdentityCertificateCommand}.
11
+ */
12
+ export interface AssociateEmailIdentityCertificateCommandInput extends AssociateEmailIdentityCertificateRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link AssociateEmailIdentityCertificateCommand}.
18
+ */
19
+ export interface AssociateEmailIdentityCertificateCommandOutput extends AssociateEmailIdentityCertificateResponse, __MetadataBearer {
20
+ }
21
+ declare const AssociateEmailIdentityCertificateCommand_base: {
22
+ new (input: AssociateEmailIdentityCertificateCommandInput): import("@smithy/core/client").CommandImpl<AssociateEmailIdentityCertificateCommandInput, AssociateEmailIdentityCertificateCommandOutput, import("..").SESv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: AssociateEmailIdentityCertificateCommandInput): import("@smithy/core/client").CommandImpl<AssociateEmailIdentityCertificateCommandInput, AssociateEmailIdentityCertificateCommandOutput, import("..").SESv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Associates an S/MIME certificate with an email identity. After the certificate is
28
+ * active, Amazon SES API v2 can add an S/MIME signature to messages that you send from the associated
29
+ * address when signing is enabled on the configuration set used to send the message.</p>
30
+ * <p>The certificate is an X.509 certificate that you manage in Certificate Manager
31
+ * (ACM). You identify it by its Amazon Resource Name (ARN).</p>
32
+ * <ul>
33
+ * <li>
34
+ * <p>If the email identity is a domain, you must specify a <code>FromAddress</code>
35
+ * that belongs to that domain or one of its subdomains. The certificate applies to
36
+ * messages sent from that address.</p>
37
+ * </li>
38
+ * <li>
39
+ * <p>If the email identity is an email address, <code>FromAddress</code> is
40
+ * optional. If you specify it, it must exactly match the email identity.</p>
41
+ * </li>
42
+ * </ul>
43
+ * <p>When the association is created, the certificate begins provisioning and its status is
44
+ * <code>PROVISIONING</code>. The status changes to <code>ACTIVE</code> when the certificate
45
+ * is ready to use for signing. Each email address can have only one certificate
46
+ * association. If an association already exists for the address, this operation returns an
47
+ * error, unless the existing association is in the <code>DEPROVISIONING</code> state.</p>
48
+ * @example
49
+ * Use a bare-bones client and the command you need to make an API call.
50
+ * ```javascript
51
+ * import { SESv2Client, AssociateEmailIdentityCertificateCommand } from "@aws-sdk/client-sesv2"; // ES Modules import
52
+ * // const { SESv2Client, AssociateEmailIdentityCertificateCommand } = require("@aws-sdk/client-sesv2"); // CommonJS import
53
+ * // import type { SESv2ClientConfig } from "@aws-sdk/client-sesv2";
54
+ * const config = {}; // type is SESv2ClientConfig
55
+ * const client = new SESv2Client(config);
56
+ * const input = { // AssociateEmailIdentityCertificateRequest
57
+ * EmailIdentity: "STRING_VALUE", // required
58
+ * FromAddress: "STRING_VALUE",
59
+ * CertificateArn: "STRING_VALUE", // required
60
+ * };
61
+ * const command = new AssociateEmailIdentityCertificateCommand(input);
62
+ * const response = await client.send(command);
63
+ * // {};
64
+ *
65
+ * ```
66
+ *
67
+ * @param AssociateEmailIdentityCertificateCommandInput - {@link AssociateEmailIdentityCertificateCommandInput}
68
+ * @returns {@link AssociateEmailIdentityCertificateCommandOutput}
69
+ * @see {@link AssociateEmailIdentityCertificateCommandInput} for command's `input` shape.
70
+ * @see {@link AssociateEmailIdentityCertificateCommandOutput} for command's `response` shape.
71
+ * @see {@link SESv2ClientResolvedConfig | config} for SESv2Client's `config` shape.
72
+ *
73
+ * @throws {@link AlreadyExistsException} (client fault)
74
+ * <p>The resource specified in your request already exists.</p>
75
+ *
76
+ * @throws {@link BadRequestException} (client fault)
77
+ * <p>The input you provided is invalid.</p>
78
+ *
79
+ * @throws {@link NotFoundException} (client fault)
80
+ * <p>The resource you attempted to access doesn't exist.</p>
81
+ *
82
+ * @throws {@link TooManyRequestsException} (client fault)
83
+ * <p>Too many requests have been made to the operation.</p>
84
+ *
85
+ * @throws {@link SESv2ServiceException}
86
+ * <p>Base exception class for all service exceptions from SESv2 service.</p>
87
+ *
88
+ *
89
+ * @public
90
+ */
91
+ export declare class AssociateEmailIdentityCertificateCommand extends AssociateEmailIdentityCertificateCommand_base {
92
+ /** @internal type navigation helper, not in runtime. */
93
+ protected static __types: {
94
+ api: {
95
+ input: AssociateEmailIdentityCertificateRequest;
96
+ output: {};
97
+ };
98
+ sdk: {
99
+ input: AssociateEmailIdentityCertificateCommandInput;
100
+ output: AssociateEmailIdentityCertificateCommandOutput;
101
+ };
102
+ };
103
+ }
@@ -86,6 +86,14 @@ declare const CreateConfigurationSetCommand_base: {
86
86
  * ArchivingOptions: { // ArchivingOptions
87
87
  * ArchiveArn: "STRING_VALUE",
88
88
  * },
89
+ * MessageSecurityOptions: { // MessageSecurityOptions
90
+ * SigningScheme: { // SigningScheme Union: only one key present
91
+ * DefaultScheme: {},
92
+ * SmimeScheme: { // SmimeSigningScheme
93
+ * SignatureFormat: "DETACHED",
94
+ * },
95
+ * },
96
+ * },
89
97
  * };
90
98
  * const command = new CreateConfigurationSetCommand(input);
91
99
  * const response = await client.send(command);
@@ -0,0 +1,87 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { DisassociateEmailIdentityCertificateRequest, DisassociateEmailIdentityCertificateResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link DisassociateEmailIdentityCertificateCommand}.
11
+ */
12
+ export interface DisassociateEmailIdentityCertificateCommandInput extends DisassociateEmailIdentityCertificateRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link DisassociateEmailIdentityCertificateCommand}.
18
+ */
19
+ export interface DisassociateEmailIdentityCertificateCommandOutput extends DisassociateEmailIdentityCertificateResponse, __MetadataBearer {
20
+ }
21
+ declare const DisassociateEmailIdentityCertificateCommand_base: {
22
+ new (input: DisassociateEmailIdentityCertificateCommandInput): import("@smithy/core/client").CommandImpl<DisassociateEmailIdentityCertificateCommandInput, DisassociateEmailIdentityCertificateCommandOutput, import("..").SESv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DisassociateEmailIdentityCertificateCommandInput): import("@smithy/core/client").CommandImpl<DisassociateEmailIdentityCertificateCommandInput, DisassociateEmailIdentityCertificateCommandOutput, import("..").SESv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Removes the association between an S/MIME certificate and an email identity. After the
28
+ * association is removed, Amazon SES API v2 stops adding an S/MIME signature to messages sent from
29
+ * that address.</p>
30
+ * <p>If the email identity is a domain, specify the <code>FromAddress</code> whose
31
+ * certificate association you want to remove.</p>
32
+ * <p>This operation is idempotent. If the specified email identity exists but there's no
33
+ * matching certificate association, the operation succeeds without making any changes.
34
+ * Amazon SES API v2 returns a <code>NotFoundException</code> only when the specified email identity
35
+ * doesn't exist.</p>
36
+ * @example
37
+ * Use a bare-bones client and the command you need to make an API call.
38
+ * ```javascript
39
+ * import { SESv2Client, DisassociateEmailIdentityCertificateCommand } from "@aws-sdk/client-sesv2"; // ES Modules import
40
+ * // const { SESv2Client, DisassociateEmailIdentityCertificateCommand } = require("@aws-sdk/client-sesv2"); // CommonJS import
41
+ * // import type { SESv2ClientConfig } from "@aws-sdk/client-sesv2";
42
+ * const config = {}; // type is SESv2ClientConfig
43
+ * const client = new SESv2Client(config);
44
+ * const input = { // DisassociateEmailIdentityCertificateRequest
45
+ * EmailIdentity: "STRING_VALUE", // required
46
+ * FromAddress: "STRING_VALUE",
47
+ * };
48
+ * const command = new DisassociateEmailIdentityCertificateCommand(input);
49
+ * const response = await client.send(command);
50
+ * // {};
51
+ *
52
+ * ```
53
+ *
54
+ * @param DisassociateEmailIdentityCertificateCommandInput - {@link DisassociateEmailIdentityCertificateCommandInput}
55
+ * @returns {@link DisassociateEmailIdentityCertificateCommandOutput}
56
+ * @see {@link DisassociateEmailIdentityCertificateCommandInput} for command's `input` shape.
57
+ * @see {@link DisassociateEmailIdentityCertificateCommandOutput} for command's `response` shape.
58
+ * @see {@link SESv2ClientResolvedConfig | config} for SESv2Client's `config` shape.
59
+ *
60
+ * @throws {@link BadRequestException} (client fault)
61
+ * <p>The input you provided is invalid.</p>
62
+ *
63
+ * @throws {@link NotFoundException} (client fault)
64
+ * <p>The resource you attempted to access doesn't exist.</p>
65
+ *
66
+ * @throws {@link TooManyRequestsException} (client fault)
67
+ * <p>Too many requests have been made to the operation.</p>
68
+ *
69
+ * @throws {@link SESv2ServiceException}
70
+ * <p>Base exception class for all service exceptions from SESv2 service.</p>
71
+ *
72
+ *
73
+ * @public
74
+ */
75
+ export declare class DisassociateEmailIdentityCertificateCommand extends DisassociateEmailIdentityCertificateCommand_base {
76
+ /** @internal type navigation helper, not in runtime. */
77
+ protected static __types: {
78
+ api: {
79
+ input: DisassociateEmailIdentityCertificateRequest;
80
+ output: {};
81
+ };
82
+ sdk: {
83
+ input: DisassociateEmailIdentityCertificateCommandInput;
84
+ output: DisassociateEmailIdentityCertificateCommandOutput;
85
+ };
86
+ };
87
+ }
@@ -94,6 +94,14 @@ declare const GetConfigurationSetCommand_base: {
94
94
  * // ArchivingOptions: { // ArchivingOptions
95
95
  * // ArchiveArn: "STRING_VALUE",
96
96
  * // },
97
+ * // MessageSecurityOptions: { // MessageSecurityOptions
98
+ * // SigningScheme: { // SigningScheme Union: only one key present
99
+ * // DefaultScheme: {},
100
+ * // SmimeScheme: { // SmimeSigningScheme
101
+ * // SignatureFormat: "DETACHED",
102
+ * // },
103
+ * // },
104
+ * // },
97
105
  * // };
98
106
  *
99
107
  * ```
@@ -0,0 +1,99 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { ListEmailIdentityCertificatesRequest, ListEmailIdentityCertificatesResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link ListEmailIdentityCertificatesCommand}.
11
+ */
12
+ export interface ListEmailIdentityCertificatesCommandInput extends ListEmailIdentityCertificatesRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link ListEmailIdentityCertificatesCommand}.
18
+ */
19
+ export interface ListEmailIdentityCertificatesCommandOutput extends ListEmailIdentityCertificatesResponse, __MetadataBearer {
20
+ }
21
+ declare const ListEmailIdentityCertificatesCommand_base: {
22
+ new (input: ListEmailIdentityCertificatesCommandInput): import("@smithy/core/client").CommandImpl<ListEmailIdentityCertificatesCommandInput, ListEmailIdentityCertificatesCommandOutput, import("..").SESv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListEmailIdentityCertificatesCommandInput): import("@smithy/core/client").CommandImpl<ListEmailIdentityCertificatesCommandInput, ListEmailIdentityCertificatesCommandOutput, import("..").SESv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Lists the S/MIME certificates that are associated with the specified email identity.
28
+ * The results include certificates in all states, such as <code>PROVISIONING</code>,
29
+ * <code>ACTIVE</code>, <code>INACTIVE</code>, <code>DEPROVISIONING</code>, and
30
+ * <code>FAILED</code>.</p>
31
+ * <p>If a certificate has passed its expiration time, it's returned with a status of
32
+ * <code>FAILED</code>.</p>
33
+ * <p>We recommend using pagination to ensure that the operation returns quickly and
34
+ * successfully. When there are more results than fit in a single response, the response
35
+ * includes a <code>NextToken</code> value that you use in a subsequent call to retrieve
36
+ * the next set of results.</p>
37
+ * @example
38
+ * Use a bare-bones client and the command you need to make an API call.
39
+ * ```javascript
40
+ * import { SESv2Client, ListEmailIdentityCertificatesCommand } from "@aws-sdk/client-sesv2"; // ES Modules import
41
+ * // const { SESv2Client, ListEmailIdentityCertificatesCommand } = require("@aws-sdk/client-sesv2"); // CommonJS import
42
+ * // import type { SESv2ClientConfig } from "@aws-sdk/client-sesv2";
43
+ * const config = {}; // type is SESv2ClientConfig
44
+ * const client = new SESv2Client(config);
45
+ * const input = { // ListEmailIdentityCertificatesRequest
46
+ * EmailIdentity: "STRING_VALUE", // required
47
+ * NextToken: "STRING_VALUE",
48
+ * PageSize: Number("int"),
49
+ * };
50
+ * const command = new ListEmailIdentityCertificatesCommand(input);
51
+ * const response = await client.send(command);
52
+ * // { // ListEmailIdentityCertificatesResponse
53
+ * // Certificates: [ // IdentityCertificateList
54
+ * // { // IdentityCertificate
55
+ * // FromAddress: "STRING_VALUE",
56
+ * // Status: "PROVISIONING" || "INACTIVE" || "DEPROVISIONING" || "ACTIVE" || "FAILED",
57
+ * // CertificateArn: "STRING_VALUE",
58
+ * // CertificateExpiryTime: new Date("TIMESTAMP"),
59
+ * // },
60
+ * // ],
61
+ * // NextToken: "STRING_VALUE",
62
+ * // };
63
+ *
64
+ * ```
65
+ *
66
+ * @param ListEmailIdentityCertificatesCommandInput - {@link ListEmailIdentityCertificatesCommandInput}
67
+ * @returns {@link ListEmailIdentityCertificatesCommandOutput}
68
+ * @see {@link ListEmailIdentityCertificatesCommandInput} for command's `input` shape.
69
+ * @see {@link ListEmailIdentityCertificatesCommandOutput} for command's `response` shape.
70
+ * @see {@link SESv2ClientResolvedConfig | config} for SESv2Client's `config` shape.
71
+ *
72
+ * @throws {@link BadRequestException} (client fault)
73
+ * <p>The input you provided is invalid.</p>
74
+ *
75
+ * @throws {@link NotFoundException} (client fault)
76
+ * <p>The resource you attempted to access doesn't exist.</p>
77
+ *
78
+ * @throws {@link TooManyRequestsException} (client fault)
79
+ * <p>Too many requests have been made to the operation.</p>
80
+ *
81
+ * @throws {@link SESv2ServiceException}
82
+ * <p>Base exception class for all service exceptions from SESv2 service.</p>
83
+ *
84
+ *
85
+ * @public
86
+ */
87
+ export declare class ListEmailIdentityCertificatesCommand extends ListEmailIdentityCertificatesCommand_base {
88
+ /** @internal type navigation helper, not in runtime. */
89
+ protected static __types: {
90
+ api: {
91
+ input: ListEmailIdentityCertificatesRequest;
92
+ output: ListEmailIdentityCertificatesResponse;
93
+ };
94
+ sdk: {
95
+ input: ListEmailIdentityCertificatesCommandInput;
96
+ output: ListEmailIdentityCertificatesCommandOutput;
97
+ };
98
+ };
99
+ }
@@ -1,5 +1,6 @@
1
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import type { PutConfigurationSetVdmOptionsRequest, PutConfigurationSetVdmOptionsResponse } from "../models/models_0";
2
+ import type { PutConfigurationSetVdmOptionsRequest } from "../models/models_0";
3
+ import type { PutConfigurationSetVdmOptionsResponse } from "../models/models_1";
3
4
  /**
4
5
  * @public
5
6
  */
@@ -1,5 +1,5 @@
1
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import type { PutDedicatedIpInPoolRequest, PutDedicatedIpInPoolResponse } from "../models/models_0";
2
+ import type { PutDedicatedIpInPoolRequest, PutDedicatedIpInPoolResponse } from "../models/models_1";
3
3
  /**
4
4
  * @public
5
5
  */
@@ -1,5 +1,5 @@
1
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import type { PutDedicatedIpPoolScalingAttributesRequest, PutDedicatedIpPoolScalingAttributesResponse } from "../models/models_0";
2
+ import type { PutDedicatedIpPoolScalingAttributesRequest, PutDedicatedIpPoolScalingAttributesResponse } from "../models/models_1";
3
3
  /**
4
4
  * @public
5
5
  */
@@ -1,5 +1,5 @@
1
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import type { PutDedicatedIpWarmupAttributesRequest, PutDedicatedIpWarmupAttributesResponse } from "../models/models_0";
2
+ import type { PutDedicatedIpWarmupAttributesRequest, PutDedicatedIpWarmupAttributesResponse } from "../models/models_1";
3
3
  /**
4
4
  * @public
5
5
  */
@@ -1,5 +1,5 @@
1
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import type { PutDeliverabilityDashboardOptionRequest, PutDeliverabilityDashboardOptionResponse } from "../models/models_0";
2
+ import type { PutDeliverabilityDashboardOptionRequest, PutDeliverabilityDashboardOptionResponse } from "../models/models_1";
3
3
  /**
4
4
  * @public
5
5
  */
@@ -1,5 +1,5 @@
1
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import type { PutEmailIdentityConfigurationSetAttributesRequest, PutEmailIdentityConfigurationSetAttributesResponse } from "../models/models_0";
2
+ import type { PutEmailIdentityConfigurationSetAttributesRequest, PutEmailIdentityConfigurationSetAttributesResponse } from "../models/models_1";
3
3
  /**
4
4
  * @public
5
5
  */
@@ -0,0 +1,88 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { UpdateConfigurationSetRequest, UpdateConfigurationSetResponse } from "../models/models_1";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link UpdateConfigurationSetCommand}.
11
+ */
12
+ export interface UpdateConfigurationSetCommandInput extends UpdateConfigurationSetRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link UpdateConfigurationSetCommand}.
18
+ */
19
+ export interface UpdateConfigurationSetCommandOutput extends UpdateConfigurationSetResponse, __MetadataBearer {
20
+ }
21
+ declare const UpdateConfigurationSetCommand_base: {
22
+ new (input: UpdateConfigurationSetCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationSetCommandInput, UpdateConfigurationSetCommandOutput, import("..").SESv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateConfigurationSetCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationSetCommandInput, UpdateConfigurationSetCommandOutput, import("..").SESv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Updates an existing configuration set.</p>
28
+ * <p>This operation performs a partial update. Only the attributes that you include in the
29
+ * request are updated; any omitted attribute is left unchanged.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { SESv2Client, UpdateConfigurationSetCommand } from "@aws-sdk/client-sesv2"; // ES Modules import
34
+ * // const { SESv2Client, UpdateConfigurationSetCommand } = require("@aws-sdk/client-sesv2"); // CommonJS import
35
+ * // import type { SESv2ClientConfig } from "@aws-sdk/client-sesv2";
36
+ * const config = {}; // type is SESv2ClientConfig
37
+ * const client = new SESv2Client(config);
38
+ * const input = { // UpdateConfigurationSetRequest
39
+ * ConfigurationSetName: "STRING_VALUE", // required
40
+ * MessageSecurityOptions: { // MessageSecurityOptions
41
+ * SigningScheme: { // SigningScheme Union: only one key present
42
+ * DefaultScheme: {},
43
+ * SmimeScheme: { // SmimeSigningScheme
44
+ * SignatureFormat: "DETACHED",
45
+ * },
46
+ * },
47
+ * },
48
+ * };
49
+ * const command = new UpdateConfigurationSetCommand(input);
50
+ * const response = await client.send(command);
51
+ * // {};
52
+ *
53
+ * ```
54
+ *
55
+ * @param UpdateConfigurationSetCommandInput - {@link UpdateConfigurationSetCommandInput}
56
+ * @returns {@link UpdateConfigurationSetCommandOutput}
57
+ * @see {@link UpdateConfigurationSetCommandInput} for command's `input` shape.
58
+ * @see {@link UpdateConfigurationSetCommandOutput} for command's `response` shape.
59
+ * @see {@link SESv2ClientResolvedConfig | config} for SESv2Client's `config` shape.
60
+ *
61
+ * @throws {@link BadRequestException} (client fault)
62
+ * <p>The input you provided is invalid.</p>
63
+ *
64
+ * @throws {@link NotFoundException} (client fault)
65
+ * <p>The resource you attempted to access doesn't exist.</p>
66
+ *
67
+ * @throws {@link TooManyRequestsException} (client fault)
68
+ * <p>Too many requests have been made to the operation.</p>
69
+ *
70
+ * @throws {@link SESv2ServiceException}
71
+ * <p>Base exception class for all service exceptions from SESv2 service.</p>
72
+ *
73
+ *
74
+ * @public
75
+ */
76
+ export declare class UpdateConfigurationSetCommand extends UpdateConfigurationSetCommand_base {
77
+ /** @internal type navigation helper, not in runtime. */
78
+ protected static __types: {
79
+ api: {
80
+ input: UpdateConfigurationSetRequest;
81
+ output: {};
82
+ };
83
+ sdk: {
84
+ input: UpdateConfigurationSetCommandInput;
85
+ output: UpdateConfigurationSetCommandOutput;
86
+ };
87
+ };
88
+ }
@@ -1,3 +1,4 @@
1
+ export * from "./AssociateEmailIdentityCertificateCommand";
1
2
  export * from "./BatchGetMetricDataCommand";
2
3
  export * from "./CancelExportJobCommand";
3
4
  export * from "./CreateConfigurationSetCommand";
@@ -28,6 +29,7 @@ export * from "./DeleteMultiRegionEndpointCommand";
28
29
  export * from "./DeleteSuppressedDestinationCommand";
29
30
  export * from "./DeleteTenantCommand";
30
31
  export * from "./DeleteTenantResourceAssociationCommand";
32
+ export * from "./DisassociateEmailIdentityCertificateCommand";
31
33
  export * from "./GetAccountCommand";
32
34
  export * from "./GetBlacklistReportsCommand";
33
35
  export * from "./GetConfigurationSetCommand";
@@ -61,6 +63,7 @@ export * from "./ListDedicatedIpPoolsCommand";
61
63
  export * from "./ListDeliverabilityTestReportsCommand";
62
64
  export * from "./ListDomainDeliverabilityCampaignsCommand";
63
65
  export * from "./ListEmailIdentitiesCommand";
66
+ export * from "./ListEmailIdentityCertificatesCommand";
64
67
  export * from "./ListEmailTemplatesCommand";
65
68
  export * from "./ListExportJobsCommand";
66
69
  export * from "./ListImportJobsCommand";
@@ -102,6 +105,7 @@ export * from "./SendEmailCommand";
102
105
  export * from "./TagResourceCommand";
103
106
  export * from "./TestRenderEmailTemplateCommand";
104
107
  export * from "./UntagResourceCommand";
108
+ export * from "./UpdateConfigurationSetCommand";
105
109
  export * from "./UpdateConfigurationSetEventDestinationCommand";
106
110
  export * from "./UpdateContactCommand";
107
111
  export * from "./UpdateContactListCommand";
@@ -227,6 +227,17 @@ export declare const TlsPolicy: {
227
227
  * @public
228
228
  */
229
229
  export type TlsPolicy = (typeof TlsPolicy)[keyof typeof TlsPolicy];
230
+ /**
231
+ * @public
232
+ * @enum
233
+ */
234
+ export declare const SignatureFormat: {
235
+ readonly DETACHED: "DETACHED";
236
+ };
237
+ /**
238
+ * @public
239
+ */
240
+ export type SignatureFormat = (typeof SignatureFormat)[keyof typeof SignatureFormat];
230
241
  /**
231
242
  * @public
232
243
  * @enum
@@ -645,6 +656,21 @@ export declare const RecommendationImpact: {
645
656
  * @public
646
657
  */
647
658
  export type RecommendationImpact = (typeof RecommendationImpact)[keyof typeof RecommendationImpact];
659
+ /**
660
+ * @public
661
+ * @enum
662
+ */
663
+ export declare const IdentityCertificateStatus: {
664
+ readonly ACTIVE: "ACTIVE";
665
+ readonly DEPROVISIONING: "DEPROVISIONING";
666
+ readonly FAILED: "FAILED";
667
+ readonly INACTIVE: "INACTIVE";
668
+ readonly PROVISIONING: "PROVISIONING";
669
+ };
670
+ /**
671
+ * @public
672
+ */
673
+ export type IdentityCertificateStatus = (typeof IdentityCertificateStatus)[keyof typeof IdentityCertificateStatus];
648
674
  /**
649
675
  * @public
650
676
  * @enum