@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
@@ -37,18 +37,6 @@ export declare class BadRequestException extends __BaseException {
37
37
  */
38
38
  constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
39
39
  }
40
- /**
41
- * <p>The request couldn't be processed because an error occurred with the Amazon SES API v2.</p>
42
- * @public
43
- */
44
- export declare class InternalServiceErrorException extends __BaseException {
45
- readonly name: "InternalServiceErrorException";
46
- readonly $fault: "server";
47
- /**
48
- * @internal
49
- */
50
- constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
51
- }
52
40
  /**
53
41
  * <p>The resource you attempted to access doesn't exist.</p>
54
42
  * @public
@@ -73,6 +61,18 @@ export declare class TooManyRequestsException extends __BaseException {
73
61
  */
74
62
  constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
75
63
  }
64
+ /**
65
+ * <p>The request couldn't be processed because an error occurred with the Amazon SES API v2.</p>
66
+ * @public
67
+ */
68
+ export declare class InternalServiceErrorException extends __BaseException {
69
+ readonly name: "InternalServiceErrorException";
70
+ readonly $fault: "server";
71
+ /**
72
+ * @internal
73
+ */
74
+ constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
75
+ }
76
76
  /**
77
77
  * <p>The resource is being modified by another operation or thread.</p>
78
78
  * @public
@@ -1,4 +1,4 @@
1
- import type { AttachmentContentDisposition, AttachmentContentTransferEncoding, BehaviorOnMxFailure, BounceType, BulkEmailStatus, ContactLanguage, ContactListImportAction, DataFormat, DeliverabilityDashboardAccountStatus, DeliverabilityTestStatus, DeliveryEventType, DimensionValueSource, DkimSigningAttributesOrigin, DkimSigningKeyLength, DkimStatus, EmailAddressInsightsConfidenceVerdict, EngagementEventType, EventType, ExportSourceType, FeatureStatus, HttpsPolicy, IdentityType, ImportDestinationType, JobStatus, ListRecommendationsFilterKey, ListTenantResourcesFilterKey, MailFromDomainStatus, MailType, Metric, MetricAggregation, MetricDimensionName, MetricNamespace, PricingPlan, QueryErrorCode, RecommendationImpact, RecommendationStatus, RecommendationType, ReputationEntityFilterKey, ReputationEntityType, ResourceType, ReviewStatus, ScalingMode, SendingStatus, Status, SubscriptionStatus, SuppressionConfidenceVerdictThreshold, SuppressionListImportAction, SuppressionListReason, SuppressionListScope, TlsPolicy, VerificationError, VerificationStatus, WarmupStatus } from "./enums";
1
+ import type { AttachmentContentDisposition, AttachmentContentTransferEncoding, BehaviorOnMxFailure, BounceType, BulkEmailStatus, ContactLanguage, ContactListImportAction, DataFormat, DeliverabilityDashboardAccountStatus, DeliverabilityTestStatus, DeliveryEventType, DimensionValueSource, DkimSigningAttributesOrigin, DkimSigningKeyLength, DkimStatus, EmailAddressInsightsConfidenceVerdict, EngagementEventType, EventType, ExportSourceType, FeatureStatus, HttpsPolicy, IdentityCertificateStatus, IdentityType, ImportDestinationType, JobStatus, ListRecommendationsFilterKey, ListTenantResourcesFilterKey, MailFromDomainStatus, MailType, Metric, MetricAggregation, MetricDimensionName, MetricNamespace, PricingPlan, QueryErrorCode, RecommendationImpact, RecommendationStatus, RecommendationType, ReputationEntityFilterKey, ReputationEntityType, ResourceType, ReviewStatus, ScalingMode, SendingStatus, SignatureFormat, Status, SubscriptionStatus, SuppressionConfidenceVerdictThreshold, SuppressionListImportAction, SuppressionListReason, SuppressionListScope, TlsPolicy, VerificationError, VerificationStatus, WarmupStatus } from "./enums";
2
2
  /**
3
3
  * <p>An object that contains information about your account details review.</p>
4
4
  * @public
@@ -104,6 +104,39 @@ export interface ArchivingOptions {
104
104
  */
105
105
  ArchiveArn?: string | undefined;
106
106
  }
107
+ /**
108
+ * <p>A request to associate an S/MIME certificate with an email identity.</p>
109
+ * @public
110
+ */
111
+ export interface AssociateEmailIdentityCertificateRequest {
112
+ /**
113
+ * <p>The email identity, either an email address or a domain, to associate the certificate
114
+ * with.</p>
115
+ * @public
116
+ */
117
+ EmailIdentity: string | undefined;
118
+ /**
119
+ * <p>The email address that the certificate applies to. This value is required when the
120
+ * email identity is a domain, and the address must belong to that domain or one of its
121
+ * subdomains. When the email identity is an email address, this value is optional. If you
122
+ * specify it, it must exactly match the email identity.</p>
123
+ * @public
124
+ */
125
+ FromAddress?: string | undefined;
126
+ /**
127
+ * <p>The Amazon Resource Name (ARN) of the Certificate Manager (ACM) certificate to
128
+ * associate with the email identity.</p>
129
+ * @public
130
+ */
131
+ CertificateArn: string | undefined;
132
+ }
133
+ /**
134
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
135
+ * fails.</p>
136
+ * @public
137
+ */
138
+ export interface AssociateEmailIdentityCertificateResponse {
139
+ }
107
140
  /**
108
141
  * <p> Contains metadata and attachment raw content.</p>
109
142
  * @public
@@ -1104,6 +1137,89 @@ export interface DeliveryOptions {
1104
1137
  */
1105
1138
  MaxDeliverySeconds?: number | undefined;
1106
1139
  }
1140
+ /**
1141
+ * <p>Specifies the default signing scheme, in which Amazon SES API v2 doesn't apply S/MIME signing to
1142
+ * messages sent with the configuration set.</p>
1143
+ * @public
1144
+ */
1145
+ export interface DefaultSigningScheme {
1146
+ }
1147
+ /**
1148
+ * <p>Specifies that Amazon SES API v2 signs messages sent with the configuration set using
1149
+ * S/MIME.</p>
1150
+ * @public
1151
+ */
1152
+ export interface SmimeSigningScheme {
1153
+ /**
1154
+ * <p>The format of the S/MIME signature that Amazon SES API v2 applies to messages.</p>
1155
+ * @public
1156
+ */
1157
+ SignatureFormat?: SignatureFormat | undefined;
1158
+ }
1159
+ /**
1160
+ * <p>Specifies the signing scheme to apply to messages sent with a configuration set. This
1161
+ * is a union type, so you specify exactly one of its members.</p>
1162
+ * @public
1163
+ */
1164
+ export type SigningScheme = SigningScheme.DefaultSchemeMember | SigningScheme.SmimeSchemeMember | SigningScheme.$UnknownMember;
1165
+ /**
1166
+ * @public
1167
+ */
1168
+ export declare namespace SigningScheme {
1169
+ /**
1170
+ * <p>Use the default signing behavior. When you select this option, Amazon SES API v2 doesn't add an
1171
+ * S/MIME signature to messages sent with the configuration set.</p>
1172
+ * @public
1173
+ */
1174
+ interface DefaultSchemeMember {
1175
+ DefaultScheme: DefaultSigningScheme;
1176
+ SmimeScheme?: never;
1177
+ $unknown?: never;
1178
+ }
1179
+ /**
1180
+ * <p>Sign messages sent with the configuration set using S/MIME. For signing to apply, the
1181
+ * email identity used to send a message must have an active S/MIME certificate
1182
+ * association.</p>
1183
+ * @public
1184
+ */
1185
+ interface SmimeSchemeMember {
1186
+ DefaultScheme?: never;
1187
+ SmimeScheme: SmimeSigningScheme;
1188
+ $unknown?: never;
1189
+ }
1190
+ /**
1191
+ * @public
1192
+ */
1193
+ interface $UnknownMember {
1194
+ DefaultScheme?: never;
1195
+ SmimeScheme?: never;
1196
+ $unknown: [string, any];
1197
+ }
1198
+ /**
1199
+ * @deprecated unused in schema-serde mode.
1200
+ *
1201
+ */
1202
+ interface Visitor<T> {
1203
+ DefaultScheme: (value: DefaultSigningScheme) => T;
1204
+ SmimeScheme: (value: SmimeSigningScheme) => T;
1205
+ _: (name: string, value: any) => T;
1206
+ }
1207
+ }
1208
+ /**
1209
+ * <p>An object that defines the message-level security options that apply to messages that
1210
+ * you send using the configuration set. Currently, these options determine whether Amazon SES API v2
1211
+ * adds an S/MIME signature to your messages and, if so, the format of that
1212
+ * signature.</p>
1213
+ * @public
1214
+ */
1215
+ export interface MessageSecurityOptions {
1216
+ /**
1217
+ * <p>The signing scheme that Amazon SES API v2 applies to messages sent with the configuration
1218
+ * set.</p>
1219
+ * @public
1220
+ */
1221
+ SigningScheme?: SigningScheme | undefined;
1222
+ }
1107
1223
  /**
1108
1224
  * <p>Enable or disable collection of reputation metrics for emails that you send using this
1109
1225
  * configuration set in the current Amazon Web Services Region. </p>
@@ -1432,6 +1548,12 @@ export interface CreateConfigurationSetRequest {
1432
1548
  * @public
1433
1549
  */
1434
1550
  ArchivingOptions?: ArchivingOptions | undefined;
1551
+ /**
1552
+ * <p>The message security options to apply to the configuration set, such as the signing
1553
+ * scheme used for messages that you send with the configuration set.</p>
1554
+ * @public
1555
+ */
1556
+ MessageSecurityOptions?: MessageSecurityOptions | undefined;
1435
1557
  }
1436
1558
  /**
1437
1559
  * <p>An HTTP 200 response if the request succeeds, or an error message if the request
@@ -2708,6 +2830,10 @@ export interface MessageInsightsDataSource {
2708
2830
  Exclude?: MessageInsightsFilters | undefined;
2709
2831
  /**
2710
2832
  * <p>The maximum number of results.</p>
2833
+ * <note>
2834
+ * <p>If you don't specify <code>MaxResults</code>, the export returns a maximum of
2835
+ * 1,000 results.</p>
2836
+ * </note>
2711
2837
  * @public
2712
2838
  */
2713
2839
  MaxResults?: number | undefined;
@@ -3770,6 +3896,32 @@ export interface DeliverabilityTestReport {
3770
3896
  */
3771
3897
  DeliverabilityTestStatus?: DeliverabilityTestStatus | undefined;
3772
3898
  }
3899
+ /**
3900
+ * <p>A request to remove the association between an S/MIME certificate and an email
3901
+ * identity.</p>
3902
+ * @public
3903
+ */
3904
+ export interface DisassociateEmailIdentityCertificateRequest {
3905
+ /**
3906
+ * <p>The email identity whose certificate association you want to remove.</p>
3907
+ * @public
3908
+ */
3909
+ EmailIdentity: string | undefined;
3910
+ /**
3911
+ * <p>The email address whose certificate association you want to remove. This value is
3912
+ * required when the email identity is a domain. When the email identity is an email
3913
+ * address, this value is optional.</p>
3914
+ * @public
3915
+ */
3916
+ FromAddress?: string | undefined;
3917
+ }
3918
+ /**
3919
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
3920
+ * fails.</p>
3921
+ * @public
3922
+ */
3923
+ export interface DisassociateEmailIdentityCertificateResponse {
3924
+ }
3773
3925
  /**
3774
3926
  * <p>An object that contains the deliverability data for a specific campaign. This data is
3775
3927
  * available for a campaign only if the campaign sent email by using a domain that the
@@ -4602,6 +4754,12 @@ export interface GetConfigurationSetResponse {
4602
4754
  * @public
4603
4755
  */
4604
4756
  ArchivingOptions?: ArchivingOptions | undefined;
4757
+ /**
4758
+ * <p>The message security options that are applied to the configuration set, such as the
4759
+ * signing scheme used for messages that you send with the configuration set.</p>
4760
+ * @public
4761
+ */
4762
+ MessageSecurityOptions?: MessageSecurityOptions | undefined;
4605
4763
  }
4606
4764
  /**
4607
4765
  * <p>A request to obtain information about the event destinations for a configuration
@@ -6021,6 +6179,35 @@ export interface GetTenantResponse {
6021
6179
  */
6022
6180
  Tenant?: Tenant | undefined;
6023
6181
  }
6182
+ /**
6183
+ * <p>An object that contains information about an S/MIME certificate that's associated with
6184
+ * an email identity.</p>
6185
+ * @public
6186
+ */
6187
+ export interface IdentityCertificate {
6188
+ /**
6189
+ * <p>The email address that the certificate applies to.</p>
6190
+ * @public
6191
+ */
6192
+ FromAddress?: string | undefined;
6193
+ /**
6194
+ * <p>The status of the certificate association. A status of <code>ACTIVE</code> indicates
6195
+ * that the certificate is ready to use for signing.</p>
6196
+ * @public
6197
+ */
6198
+ Status?: IdentityCertificateStatus | undefined;
6199
+ /**
6200
+ * <p>The Amazon Resource Name (ARN) of the Certificate Manager (ACM) certificate that's
6201
+ * associated with the email identity.</p>
6202
+ * @public
6203
+ */
6204
+ CertificateArn?: string | undefined;
6205
+ /**
6206
+ * <p>The timestamp after which the certificate is no longer valid.</p>
6207
+ * @public
6208
+ */
6209
+ CertificateExpiryTime?: Date | undefined;
6210
+ }
6024
6211
  /**
6025
6212
  * <p>Information about an email identity.</p>
6026
6213
  * @public
@@ -6527,6 +6714,54 @@ export interface ListEmailIdentitiesResponse {
6527
6714
  */
6528
6715
  NextToken?: string | undefined;
6529
6716
  }
6717
+ /**
6718
+ * <p>A request to list the S/MIME certificates that are associated with an email
6719
+ * identity.</p>
6720
+ * @public
6721
+ */
6722
+ export interface ListEmailIdentityCertificatesRequest {
6723
+ /**
6724
+ * <p>The email identity whose certificate associations you want to list.</p>
6725
+ * @public
6726
+ */
6727
+ EmailIdentity: string | undefined;
6728
+ /**
6729
+ * <p>A token returned from a previous call to <code>ListEmailIdentityCertificates</code> to
6730
+ * indicate the position in the list of certificates.</p>
6731
+ * @public
6732
+ */
6733
+ NextToken?: string | undefined;
6734
+ /**
6735
+ * <p>The number of results to show in a single call to
6736
+ * <code>ListEmailIdentityCertificates</code>. If the number of results is larger than the
6737
+ * number you specified in this parameter, then the response includes a
6738
+ * <code>NextToken</code> element, which you can use to obtain additional results.</p>
6739
+ * @public
6740
+ */
6741
+ PageSize?: number | undefined;
6742
+ }
6743
+ /**
6744
+ * <p>Information about the S/MIME certificates that are associated with an email
6745
+ * identity.</p>
6746
+ * @public
6747
+ */
6748
+ export interface ListEmailIdentityCertificatesResponse {
6749
+ /**
6750
+ * <p>An array that contains the certificate associations for the email identity. Each entry
6751
+ * includes the from address, the certificate's status, its Amazon Resource Name (ARN),
6752
+ * and its expiry time.</p>
6753
+ * @public
6754
+ */
6755
+ Certificates?: IdentityCertificate[] | undefined;
6756
+ /**
6757
+ * <p>A token that indicates that there are additional certificates to list. To view
6758
+ * additional certificates, issue another request to
6759
+ * <code>ListEmailIdentityCertificates</code>, and pass this token in the
6760
+ * <code>NextToken</code> parameter.</p>
6761
+ * @public
6762
+ */
6763
+ NextToken?: string | undefined;
6764
+ }
6530
6765
  /**
6531
6766
  * <p>Represents a request to list the email templates present in your Amazon SES account in the
6532
6767
  * current Amazon Web Services Region. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Amazon SES Developer
@@ -7643,138 +7878,3 @@ export interface PutConfigurationSetVdmOptionsRequest {
7643
7878
  */
7644
7879
  VdmOptions?: VdmOptions | undefined;
7645
7880
  }
7646
- /**
7647
- * <p>An HTTP 200 response if the request succeeds, or an error message if the request
7648
- * fails.</p>
7649
- * @public
7650
- */
7651
- export interface PutConfigurationSetVdmOptionsResponse {
7652
- }
7653
- /**
7654
- * <p>A request to move a dedicated IP address to a dedicated IP pool.</p>
7655
- * @public
7656
- */
7657
- export interface PutDedicatedIpInPoolRequest {
7658
- /**
7659
- * <p>The IP address that you want to move to the dedicated IP pool. The value you specify
7660
- * has to be a dedicated IP address that's associated with your Amazon Web Services account.</p>
7661
- * @public
7662
- */
7663
- Ip: string | undefined;
7664
- /**
7665
- * <p>The name of the IP pool that you want to add the dedicated IP address to. You have to
7666
- * specify an IP pool that already exists.</p>
7667
- * @public
7668
- */
7669
- DestinationPoolName: string | undefined;
7670
- }
7671
- /**
7672
- * <p>An HTTP 200 response if the request succeeds, or an error message if the request
7673
- * fails.</p>
7674
- * @public
7675
- */
7676
- export interface PutDedicatedIpInPoolResponse {
7677
- }
7678
- /**
7679
- * <p>A request to convert a dedicated IP pool to a different scaling mode.</p>
7680
- * @public
7681
- */
7682
- export interface PutDedicatedIpPoolScalingAttributesRequest {
7683
- /**
7684
- * <p>The name of the dedicated IP pool.</p>
7685
- * @public
7686
- */
7687
- PoolName: string | undefined;
7688
- /**
7689
- * <p>The scaling mode to apply to the dedicated IP pool.</p>
7690
- * <note>
7691
- * <p>Changing the scaling mode from <code>MANAGED</code> to <code>STANDARD</code> is not supported.</p>
7692
- * </note>
7693
- * @public
7694
- */
7695
- ScalingMode: ScalingMode | undefined;
7696
- }
7697
- /**
7698
- * <p>An HTTP 200 response if the request succeeds, or an error message if the request
7699
- * fails.</p>
7700
- * @public
7701
- */
7702
- export interface PutDedicatedIpPoolScalingAttributesResponse {
7703
- }
7704
- /**
7705
- * <p>A request to change the warm-up attributes for a dedicated IP address. This operation
7706
- * is useful when you want to resume the warm-up process for an existing IP address.</p>
7707
- * @public
7708
- */
7709
- export interface PutDedicatedIpWarmupAttributesRequest {
7710
- /**
7711
- * <p>The dedicated IP address that you want to update the warm-up attributes for.</p>
7712
- * @public
7713
- */
7714
- Ip: string | undefined;
7715
- /**
7716
- * <p>The warm-up percentage that you want to associate with the dedicated IP
7717
- * address.</p>
7718
- * @public
7719
- */
7720
- WarmupPercentage: number | undefined;
7721
- }
7722
- /**
7723
- * <p>An HTTP 200 response if the request succeeds, or an error message if the request
7724
- * fails.</p>
7725
- * @public
7726
- */
7727
- export interface PutDedicatedIpWarmupAttributesResponse {
7728
- }
7729
- /**
7730
- * <p>Enable or disable the Deliverability dashboard. When you enable the Deliverability dashboard, you gain
7731
- * access to reputation, deliverability, and other metrics for the domains that you use to
7732
- * send email using Amazon SES API v2. You also gain the ability to perform predictive inbox placement tests.</p>
7733
- * <p>When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition
7734
- * to any other fees that you accrue by using Amazon SES and other Amazon Web Services services. For more
7735
- * information about the features and cost of a Deliverability dashboard subscription, see <a href="http://aws.amazon.com/pinpoint/pricing/">Amazon Pinpoint Pricing</a>.</p>
7736
- * @public
7737
- */
7738
- export interface PutDeliverabilityDashboardOptionRequest {
7739
- /**
7740
- * <p>Specifies whether to enable the Deliverability dashboard. To enable the dashboard, set this
7741
- * value to <code>true</code>.</p>
7742
- * @public
7743
- */
7744
- DashboardEnabled: boolean | undefined;
7745
- /**
7746
- * <p>An array of objects, one for each verified domain that you use to send email and
7747
- * enabled the Deliverability dashboard for.</p>
7748
- * @public
7749
- */
7750
- SubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
7751
- }
7752
- /**
7753
- * <p>A response that indicates whether the Deliverability dashboard is enabled.</p>
7754
- * @public
7755
- */
7756
- export interface PutDeliverabilityDashboardOptionResponse {
7757
- }
7758
- /**
7759
- * <p>A request to associate a configuration set with an email identity.</p>
7760
- * @public
7761
- */
7762
- export interface PutEmailIdentityConfigurationSetAttributesRequest {
7763
- /**
7764
- * <p>The email address or domain to associate with a configuration set.</p>
7765
- * @public
7766
- */
7767
- EmailIdentity: string | undefined;
7768
- /**
7769
- * <p>The configuration set to associate with an email identity.</p>
7770
- * @public
7771
- */
7772
- ConfigurationSetName?: string | undefined;
7773
- }
7774
- /**
7775
- * <p>If the action is successful, the service sends back an HTTP 200 response with an empty
7776
- * HTTP body.</p>
7777
- * @public
7778
- */
7779
- export interface PutEmailIdentityConfigurationSetAttributesResponse {
7780
- }
@@ -1,5 +1,140 @@
1
- import type { BehaviorOnMxFailure, DkimSigningAttributesOrigin, DkimStatus, ReputationEntityType, SendingStatus, SuppressionListReason, SuppressionListScope } from "./enums";
2
- import type { BulkEmailContent, BulkEmailEntry, BulkEmailEntryResult, ConfigurationOverrides, Destination, DkimSigningAttributes, EmailContent, EmailTemplateContent, EventDestinationDefinition, ListManagementOptions, MessageTag, Tag, Topic, TopicPreference } from "./models_0";
1
+ import type { BehaviorOnMxFailure, DkimSigningAttributesOrigin, DkimStatus, ReputationEntityType, ScalingMode, SendingStatus, SuppressionListReason, SuppressionListScope } from "./enums";
2
+ import type { BulkEmailContent, BulkEmailEntry, BulkEmailEntryResult, ConfigurationOverrides, Destination, DkimSigningAttributes, DomainDeliverabilityTrackingOption, EmailContent, EmailTemplateContent, EventDestinationDefinition, ListManagementOptions, MessageSecurityOptions, MessageTag, Tag, Topic, TopicPreference } from "./models_0";
3
+ /**
4
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
5
+ * fails.</p>
6
+ * @public
7
+ */
8
+ export interface PutConfigurationSetVdmOptionsResponse {
9
+ }
10
+ /**
11
+ * <p>A request to move a dedicated IP address to a dedicated IP pool.</p>
12
+ * @public
13
+ */
14
+ export interface PutDedicatedIpInPoolRequest {
15
+ /**
16
+ * <p>The IP address that you want to move to the dedicated IP pool. The value you specify
17
+ * has to be a dedicated IP address that's associated with your Amazon Web Services account.</p>
18
+ * @public
19
+ */
20
+ Ip: string | undefined;
21
+ /**
22
+ * <p>The name of the IP pool that you want to add the dedicated IP address to. You have to
23
+ * specify an IP pool that already exists.</p>
24
+ * @public
25
+ */
26
+ DestinationPoolName: string | undefined;
27
+ }
28
+ /**
29
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
30
+ * fails.</p>
31
+ * @public
32
+ */
33
+ export interface PutDedicatedIpInPoolResponse {
34
+ }
35
+ /**
36
+ * <p>A request to convert a dedicated IP pool to a different scaling mode.</p>
37
+ * @public
38
+ */
39
+ export interface PutDedicatedIpPoolScalingAttributesRequest {
40
+ /**
41
+ * <p>The name of the dedicated IP pool.</p>
42
+ * @public
43
+ */
44
+ PoolName: string | undefined;
45
+ /**
46
+ * <p>The scaling mode to apply to the dedicated IP pool.</p>
47
+ * <note>
48
+ * <p>Changing the scaling mode from <code>MANAGED</code> to <code>STANDARD</code> is not supported.</p>
49
+ * </note>
50
+ * @public
51
+ */
52
+ ScalingMode: ScalingMode | undefined;
53
+ }
54
+ /**
55
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
56
+ * fails.</p>
57
+ * @public
58
+ */
59
+ export interface PutDedicatedIpPoolScalingAttributesResponse {
60
+ }
61
+ /**
62
+ * <p>A request to change the warm-up attributes for a dedicated IP address. This operation
63
+ * is useful when you want to resume the warm-up process for an existing IP address.</p>
64
+ * @public
65
+ */
66
+ export interface PutDedicatedIpWarmupAttributesRequest {
67
+ /**
68
+ * <p>The dedicated IP address that you want to update the warm-up attributes for.</p>
69
+ * @public
70
+ */
71
+ Ip: string | undefined;
72
+ /**
73
+ * <p>The warm-up percentage that you want to associate with the dedicated IP
74
+ * address.</p>
75
+ * @public
76
+ */
77
+ WarmupPercentage: number | undefined;
78
+ }
79
+ /**
80
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
81
+ * fails.</p>
82
+ * @public
83
+ */
84
+ export interface PutDedicatedIpWarmupAttributesResponse {
85
+ }
86
+ /**
87
+ * <p>Enable or disable the Deliverability dashboard. When you enable the Deliverability dashboard, you gain
88
+ * access to reputation, deliverability, and other metrics for the domains that you use to
89
+ * send email using Amazon SES API v2. You also gain the ability to perform predictive inbox placement tests.</p>
90
+ * <p>When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition
91
+ * to any other fees that you accrue by using Amazon SES and other Amazon Web Services services. For more
92
+ * information about the features and cost of a Deliverability dashboard subscription, see <a href="http://aws.amazon.com/pinpoint/pricing/">Amazon Pinpoint Pricing</a>.</p>
93
+ * @public
94
+ */
95
+ export interface PutDeliverabilityDashboardOptionRequest {
96
+ /**
97
+ * <p>Specifies whether to enable the Deliverability dashboard. To enable the dashboard, set this
98
+ * value to <code>true</code>.</p>
99
+ * @public
100
+ */
101
+ DashboardEnabled: boolean | undefined;
102
+ /**
103
+ * <p>An array of objects, one for each verified domain that you use to send email and
104
+ * enabled the Deliverability dashboard for.</p>
105
+ * @public
106
+ */
107
+ SubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
108
+ }
109
+ /**
110
+ * <p>A response that indicates whether the Deliverability dashboard is enabled.</p>
111
+ * @public
112
+ */
113
+ export interface PutDeliverabilityDashboardOptionResponse {
114
+ }
115
+ /**
116
+ * <p>A request to associate a configuration set with an email identity.</p>
117
+ * @public
118
+ */
119
+ export interface PutEmailIdentityConfigurationSetAttributesRequest {
120
+ /**
121
+ * <p>The email address or domain to associate with a configuration set.</p>
122
+ * @public
123
+ */
124
+ EmailIdentity: string | undefined;
125
+ /**
126
+ * <p>The configuration set to associate with an email identity.</p>
127
+ * @public
128
+ */
129
+ ConfigurationSetName?: string | undefined;
130
+ }
131
+ /**
132
+ * <p>If the action is successful, the service sends back an HTTP 200 response with an empty
133
+ * HTTP body.</p>
134
+ * @public
135
+ */
136
+ export interface PutEmailIdentityConfigurationSetAttributesResponse {
137
+ }
3
138
  /**
4
139
  * <p>A request to enable or disable DKIM signing of email that you send from an email
5
140
  * identity.</p>
@@ -667,6 +802,30 @@ export interface UntagResourceRequest {
667
802
  */
668
803
  export interface UntagResourceResponse {
669
804
  }
805
+ /**
806
+ * <p>A request to update the configuration of an existing configuration set.</p>
807
+ * @public
808
+ */
809
+ export interface UpdateConfigurationSetRequest {
810
+ /**
811
+ * <p>The name of the configuration set to update.</p>
812
+ * @public
813
+ */
814
+ ConfigurationSetName: string | undefined;
815
+ /**
816
+ * <p>The security options that apply to the MIME message itself for messages sent with the
817
+ * configuration set.</p>
818
+ * @public
819
+ */
820
+ MessageSecurityOptions?: MessageSecurityOptions | undefined;
821
+ }
822
+ /**
823
+ * <p>An HTTP 200 response if the request succeeds, or an error message if the request
824
+ * fails.</p>
825
+ * @public
826
+ */
827
+ export interface UpdateConfigurationSetResponse {
828
+ }
670
829
  /**
671
830
  * <p>A request to change the settings for an event destination for a configuration
672
831
  * set.</p>
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListEmailIdentityCertificatesCommandInput, ListEmailIdentityCertificatesCommandOutput } from "../commands/ListEmailIdentityCertificatesCommand";
3
+ import type { SESv2PaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListEmailIdentityCertificates: (config: SESv2PaginationConfiguration, input: ListEmailIdentityCertificatesCommandInput, ...rest: any[]) => Paginator<ListEmailIdentityCertificatesCommandOutput>;
@@ -8,6 +8,7 @@ export * from "./ListDedicatedIpPoolsPaginator";
8
8
  export * from "./ListDeliverabilityTestReportsPaginator";
9
9
  export * from "./ListDomainDeliverabilityCampaignsPaginator";
10
10
  export * from "./ListEmailIdentitiesPaginator";
11
+ export * from "./ListEmailIdentityCertificatesPaginator";
11
12
  export * from "./ListEmailTemplatesPaginator";
12
13
  export * from "./ListExportJobsPaginator";
13
14
  export * from "./ListImportJobsPaginator";