aws-sdk 2.93.0 → 2.97.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/.changes/2.94.0.json +32 -0
- package/.changes/2.95.0.json +17 -0
- package/.changes/2.96.0.json +12 -0
- package/.changes/2.97.0.json +22 -0
- package/CHANGELOG.md +24 -1
- package/README.md +1 -1
- package/apis/clouddirectory-2016-05-10.min.json +51 -32
- package/apis/codedeploy-2014-10-06.min.json +82 -29
- package/apis/cognito-idp-2016-04-18.min.json +477 -185
- package/apis/config-2014-11-12.min.json +43 -5
- package/apis/ec2-2016-11-15.min.json +1 -0
- package/apis/ec2-2016-11-15.waiters2.json +5 -0
- package/apis/elasticbeanstalk-2010-12-01.min.json +69 -63
- package/apis/elasticloadbalancingv2-2015-12-01.waiters2.json +36 -0
- package/apis/email-2010-12-01.examples.json +2 -0
- package/apis/email-2010-12-01.min.json +54 -45
- package/apis/email-2010-12-01.paginators.json +2 -2
- package/apis/pinpoint-2016-12-01.min.json +287 -142
- package/clients/clouddirectory.d.ts +20 -0
- package/clients/cloudsearchdomain.d.ts +2 -1
- package/clients/codebuild.d.ts +2 -2
- package/clients/codedeploy.d.ts +62 -8
- package/clients/cognitoidentityserviceprovider.d.ts +376 -12
- package/clients/configservice.d.ts +54 -6
- package/clients/ec2.d.ts +12 -8
- package/clients/elasticbeanstalk.d.ts +27 -10
- package/clients/elbv2.d.ts +16 -0
- package/clients/glacier.d.ts +2 -1
- package/clients/lambda.d.ts +2 -1
- package/clients/lexruntime.d.ts +2 -1
- package/clients/pinpoint.d.ts +154 -15
- package/clients/polly.d.ts +2 -1
- package/clients/rds.d.ts +68 -68
- package/clients/s3.d.ts +2 -1
- package/clients/ses.d.ts +25 -15
- package/dist/aws-sdk-core-react-native.js +868 -574
- package/dist/aws-sdk-react-native.js +887 -586
- package/dist/aws-sdk.js +798 -333
- package/dist/aws-sdk.min.js +43 -43
- package/lib/core.js +1 -1
- package/lib/credentials/credential_provider_chain.d.ts +4 -0
- package/lib/protocol/rest_json.js +8 -0
- package/lib/services/s3.js +8 -1
- package/lib/util.js +14 -1
- package/package.json +1 -1
- package/scripts/lib/ts-generator.js +51 -2
package/clients/s3.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import {ConfigBase as Config} from '../lib/config';
|
|
|
7
7
|
import {UseDualstackConfigOptions} from '../lib/config_use_dualstack';
|
|
8
8
|
import {ManagedUpload as managed_upload} from '../lib/s3/managed_upload';
|
|
9
9
|
import {PresignedPost as presigned_post} from '../lib/s3/presigned_post';
|
|
10
|
+
import {Readable} from 'stream';
|
|
10
11
|
interface Blob {}
|
|
11
12
|
declare class S3 extends S3Customizations {
|
|
12
13
|
/**
|
|
@@ -743,7 +744,7 @@ declare namespace S3 {
|
|
|
743
744
|
Prefix?: Prefix;
|
|
744
745
|
}
|
|
745
746
|
export type AnalyticsS3ExportFileFormat = "CSV"|string;
|
|
746
|
-
export type Body = Buffer|Uint8Array|Blob|string;
|
|
747
|
+
export type Body = Buffer|Uint8Array|Blob|string|Readable;
|
|
747
748
|
export interface Bucket {
|
|
748
749
|
/**
|
|
749
750
|
* The name of the bucket.
|
package/clients/ses.d.ts
CHANGED
|
@@ -28,11 +28,11 @@ declare class SES extends Service {
|
|
|
28
28
|
*/
|
|
29
29
|
createConfigurationSet(callback?: (err: AWSError, data: SES.Types.CreateConfigurationSetResponse) => void): Request<SES.Types.CreateConfigurationSetResponse, AWSError>;
|
|
30
30
|
/**
|
|
31
|
-
* Creates a configuration set event destination. When you create or update an event destination, you must provide one, and only one, destination. The destination can be
|
|
31
|
+
* Creates a configuration set event destination. When you create or update an event destination, you must provide one, and only one, destination. The destination can be Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). An event destination is the AWS service to which Amazon SES publishes the email sending events associated with a configuration set. For information about using configuration sets, see the Amazon SES Developer Guide. This action is throttled at one request per second.
|
|
32
32
|
*/
|
|
33
33
|
createConfigurationSetEventDestination(params: SES.Types.CreateConfigurationSetEventDestinationRequest, callback?: (err: AWSError, data: SES.Types.CreateConfigurationSetEventDestinationResponse) => void): Request<SES.Types.CreateConfigurationSetEventDestinationResponse, AWSError>;
|
|
34
34
|
/**
|
|
35
|
-
* Creates a configuration set event destination. When you create or update an event destination, you must provide one, and only one, destination. The destination can be
|
|
35
|
+
* Creates a configuration set event destination. When you create or update an event destination, you must provide one, and only one, destination. The destination can be Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). An event destination is the AWS service to which Amazon SES publishes the email sending events associated with a configuration set. For information about using configuration sets, see the Amazon SES Developer Guide. This action is throttled at one request per second.
|
|
36
36
|
*/
|
|
37
37
|
createConfigurationSetEventDestination(callback?: (err: AWSError, data: SES.Types.CreateConfigurationSetEventDestinationResponse) => void): Request<SES.Types.CreateConfigurationSetEventDestinationResponse, AWSError>;
|
|
38
38
|
/**
|
|
@@ -188,11 +188,11 @@ declare class SES extends Service {
|
|
|
188
188
|
*/
|
|
189
189
|
getIdentityPolicies(callback?: (err: AWSError, data: SES.Types.GetIdentityPoliciesResponse) => void): Request<SES.Types.GetIdentityPoliciesResponse, AWSError>;
|
|
190
190
|
/**
|
|
191
|
-
* Given a list of identities (email addresses and/or domains), returns the verification status and (for domain identities) the verification token for each identity. This action is throttled at one request per second and can only get verification attributes for up to 100 identities at a time.
|
|
191
|
+
* Given a list of identities (email addresses and/or domains), returns the verification status and (for domain identities) the verification token for each identity. The verification status of an email address is "Pending" until the email address owner clicks the link within the verification email that Amazon SES sent to that address. If the email address owner clicks the link within 24 hours, the verification status of the email address changes to "Success". If the link is not clicked within 24 hours, the verification status changes to "Failed." In that case, if you still want to verify the email address, you must restart the verification process from the beginning. For domain identities, the domain's verification status is "Pending" as Amazon SES searches for the required TXT record in the DNS settings of the domain. When Amazon SES detects the record, the domain's verification status changes to "Success". If Amazon SES is unable to detect the record within 72 hours, the domain's verification status changes to "Failed." In that case, if you still want to verify the domain, you must restart the verification process from the beginning. This action is throttled at one request per second and can only get verification attributes for up to 100 identities at a time.
|
|
192
192
|
*/
|
|
193
193
|
getIdentityVerificationAttributes(params: SES.Types.GetIdentityVerificationAttributesRequest, callback?: (err: AWSError, data: SES.Types.GetIdentityVerificationAttributesResponse) => void): Request<SES.Types.GetIdentityVerificationAttributesResponse, AWSError>;
|
|
194
194
|
/**
|
|
195
|
-
* Given a list of identities (email addresses and/or domains), returns the verification status and (for domain identities) the verification token for each identity. This action is throttled at one request per second and can only get verification attributes for up to 100 identities at a time.
|
|
195
|
+
* Given a list of identities (email addresses and/or domains), returns the verification status and (for domain identities) the verification token for each identity. The verification status of an email address is "Pending" until the email address owner clicks the link within the verification email that Amazon SES sent to that address. If the email address owner clicks the link within 24 hours, the verification status of the email address changes to "Success". If the link is not clicked within 24 hours, the verification status changes to "Failed." In that case, if you still want to verify the email address, you must restart the verification process from the beginning. For domain identities, the domain's verification status is "Pending" as Amazon SES searches for the required TXT record in the DNS settings of the domain. When Amazon SES detects the record, the domain's verification status changes to "Success". If Amazon SES is unable to detect the record within 72 hours, the domain's verification status changes to "Failed." In that case, if you still want to verify the domain, you must restart the verification process from the beginning. This action is throttled at one request per second and can only get verification attributes for up to 100 identities at a time.
|
|
196
196
|
*/
|
|
197
197
|
getIdentityVerificationAttributes(callback?: (err: AWSError, data: SES.Types.GetIdentityVerificationAttributesResponse) => void): Request<SES.Types.GetIdentityVerificationAttributesResponse, AWSError>;
|
|
198
198
|
/**
|
|
@@ -272,19 +272,19 @@ declare class SES extends Service {
|
|
|
272
272
|
*/
|
|
273
273
|
sendBounce(callback?: (err: AWSError, data: SES.Types.SendBounceResponse) => void): Request<SES.Types.SendBounceResponse, AWSError>;
|
|
274
274
|
/**
|
|
275
|
-
* Composes an email message based on input data, and then immediately queues the message for sending. There are several important points to know about SendEmail: You can only send email from verified email addresses and domains; otherwise, you will get an "Email address not verified" error. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the Amazon SES Developer Guide. The total size of the message cannot exceed 10 MB. This includes any attachments that are part of the message. Amazon SES has a limit on the total number of recipients per message. The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group. For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the Amazon SES Developer Guide.
|
|
275
|
+
* Composes an email message based on input data, and then immediately queues the message for sending. There are several important points to know about SendEmail: You can only send email from verified email addresses and domains; otherwise, you will get an "Email address not verified" error. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the Amazon SES Developer Guide. The total size of the message cannot exceed 10 MB. This includes any attachments that are part of the message. You must provide at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If any email address you provide is invalid, Amazon SES rejects the entire email. Amazon SES has a limit on the total number of recipients per message. The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group. For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the Amazon SES Developer Guide.
|
|
276
276
|
*/
|
|
277
277
|
sendEmail(params: SES.Types.SendEmailRequest, callback?: (err: AWSError, data: SES.Types.SendEmailResponse) => void): Request<SES.Types.SendEmailResponse, AWSError>;
|
|
278
278
|
/**
|
|
279
|
-
* Composes an email message based on input data, and then immediately queues the message for sending. There are several important points to know about SendEmail: You can only send email from verified email addresses and domains; otherwise, you will get an "Email address not verified" error. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the Amazon SES Developer Guide. The total size of the message cannot exceed 10 MB. This includes any attachments that are part of the message. Amazon SES has a limit on the total number of recipients per message. The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group. For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the Amazon SES Developer Guide.
|
|
279
|
+
* Composes an email message based on input data, and then immediately queues the message for sending. There are several important points to know about SendEmail: You can only send email from verified email addresses and domains; otherwise, you will get an "Email address not verified" error. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the Amazon SES Developer Guide. The total size of the message cannot exceed 10 MB. This includes any attachments that are part of the message. You must provide at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If any email address you provide is invalid, Amazon SES rejects the entire email. Amazon SES has a limit on the total number of recipients per message. The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group. For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the Amazon SES Developer Guide.
|
|
280
280
|
*/
|
|
281
281
|
sendEmail(callback?: (err: AWSError, data: SES.Types.SendEmailResponse) => void): Request<SES.Types.SendEmailResponse, AWSError>;
|
|
282
282
|
/**
|
|
283
|
-
* Sends an email message, with header and content specified by the client. The SendRawEmail action is useful for sending multipart MIME emails. The raw text of the message must comply with Internet email standards; otherwise, the message cannot be sent. There are several important points to know about SendRawEmail: You can only send email from verified email addresses and domains; otherwise, you will get an "Email address not verified" error. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the Amazon SES Developer Guide. The total size of the message cannot exceed 10 MB. This includes any attachments that are part of the message. Amazon SES has a limit on the total number of recipients per message. The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group. The To:, CC:, and BCC: headers in the raw message can contain a group list. Note that each recipient in a group list counts towards the 50-recipient limit. Amazon SES overrides any Message-ID and Date headers you provide. For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the Amazon SES Developer Guide. If you are using sending authorization to send on behalf of another user, SendRawEmail enables you to specify the cross-account identity for the email's "Source," "From," and "Return-Path" parameters in one of two ways: you can pass optional parameters SourceArn, FromArn, and/or ReturnPathArn to the API, or you can include the following X-headers in the header of your raw email: X-SES-SOURCE-ARN X-SES-FROM-ARN X-SES-RETURN-PATH-ARN Do not include these X-headers in the DKIM signature, because they are removed by Amazon SES before sending the email. For the most common sending authorization use case, we recommend that you specify the SourceIdentityArn and do not specify either the FromIdentityArn or ReturnPathIdentityArn. (The same note applies to the corresponding X-headers.) If you only specify the SourceIdentityArn, Amazon SES will simply set the "From" address and the "Return Path" address to the identity specified in SourceIdentityArn. For more information about sending authorization, see the Amazon SES Developer Guide.
|
|
283
|
+
* Sends an email message, with header and content specified by the client. The SendRawEmail action is useful for sending multipart MIME emails. The raw text of the message must comply with Internet email standards; otherwise, the message cannot be sent. There are several important points to know about SendRawEmail: You can only send email from verified email addresses and domains; otherwise, you will get an "Email address not verified" error. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the Amazon SES Developer Guide. The total size of the message cannot exceed 10 MB. This includes any attachments that are part of the message. You must provide at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If any email address you provide is invalid, Amazon SES rejects the entire email. Amazon SES has a limit on the total number of recipients per message. The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group. The To:, CC:, and BCC: headers in the raw message can contain a group list. Note that each recipient in a group list counts towards the 50-recipient limit. Amazon SES overrides any Message-ID and Date headers you provide. For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the Amazon SES Developer Guide. If you are using sending authorization to send on behalf of another user, SendRawEmail enables you to specify the cross-account identity for the email's "Source," "From," and "Return-Path" parameters in one of two ways: you can pass optional parameters SourceArn, FromArn, and/or ReturnPathArn to the API, or you can include the following X-headers in the header of your raw email: X-SES-SOURCE-ARN X-SES-FROM-ARN X-SES-RETURN-PATH-ARN Do not include these X-headers in the DKIM signature, because they are removed by Amazon SES before sending the email. For the most common sending authorization use case, we recommend that you specify the SourceIdentityArn and do not specify either the FromIdentityArn or ReturnPathIdentityArn. (The same note applies to the corresponding X-headers.) If you only specify the SourceIdentityArn, Amazon SES will simply set the "From" address and the "Return Path" address to the identity specified in SourceIdentityArn. For more information about sending authorization, see the Amazon SES Developer Guide.
|
|
284
284
|
*/
|
|
285
285
|
sendRawEmail(params: SES.Types.SendRawEmailRequest, callback?: (err: AWSError, data: SES.Types.SendRawEmailResponse) => void): Request<SES.Types.SendRawEmailResponse, AWSError>;
|
|
286
286
|
/**
|
|
287
|
-
* Sends an email message, with header and content specified by the client. The SendRawEmail action is useful for sending multipart MIME emails. The raw text of the message must comply with Internet email standards; otherwise, the message cannot be sent. There are several important points to know about SendRawEmail: You can only send email from verified email addresses and domains; otherwise, you will get an "Email address not verified" error. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the Amazon SES Developer Guide. The total size of the message cannot exceed 10 MB. This includes any attachments that are part of the message. Amazon SES has a limit on the total number of recipients per message. The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group. The To:, CC:, and BCC: headers in the raw message can contain a group list. Note that each recipient in a group list counts towards the 50-recipient limit. Amazon SES overrides any Message-ID and Date headers you provide. For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the Amazon SES Developer Guide. If you are using sending authorization to send on behalf of another user, SendRawEmail enables you to specify the cross-account identity for the email's "Source," "From," and "Return-Path" parameters in one of two ways: you can pass optional parameters SourceArn, FromArn, and/or ReturnPathArn to the API, or you can include the following X-headers in the header of your raw email: X-SES-SOURCE-ARN X-SES-FROM-ARN X-SES-RETURN-PATH-ARN Do not include these X-headers in the DKIM signature, because they are removed by Amazon SES before sending the email. For the most common sending authorization use case, we recommend that you specify the SourceIdentityArn and do not specify either the FromIdentityArn or ReturnPathIdentityArn. (The same note applies to the corresponding X-headers.) If you only specify the SourceIdentityArn, Amazon SES will simply set the "From" address and the "Return Path" address to the identity specified in SourceIdentityArn. For more information about sending authorization, see the Amazon SES Developer Guide.
|
|
287
|
+
* Sends an email message, with header and content specified by the client. The SendRawEmail action is useful for sending multipart MIME emails. The raw text of the message must comply with Internet email standards; otherwise, the message cannot be sent. There are several important points to know about SendRawEmail: You can only send email from verified email addresses and domains; otherwise, you will get an "Email address not verified" error. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the Amazon SES Developer Guide. The total size of the message cannot exceed 10 MB. This includes any attachments that are part of the message. You must provide at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If any email address you provide is invalid, Amazon SES rejects the entire email. Amazon SES has a limit on the total number of recipients per message. The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group. The To:, CC:, and BCC: headers in the raw message can contain a group list. Note that each recipient in a group list counts towards the 50-recipient limit. Amazon SES overrides any Message-ID and Date headers you provide. For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the Amazon SES Developer Guide. If you are using sending authorization to send on behalf of another user, SendRawEmail enables you to specify the cross-account identity for the email's "Source," "From," and "Return-Path" parameters in one of two ways: you can pass optional parameters SourceArn, FromArn, and/or ReturnPathArn to the API, or you can include the following X-headers in the header of your raw email: X-SES-SOURCE-ARN X-SES-FROM-ARN X-SES-RETURN-PATH-ARN Do not include these X-headers in the DKIM signature, because they are removed by Amazon SES before sending the email. For the most common sending authorization use case, we recommend that you specify the SourceIdentityArn and do not specify either the FromIdentityArn or ReturnPathIdentityArn. (The same note applies to the corresponding X-headers.) If you only specify the SourceIdentityArn, Amazon SES will simply set the "From" address and the "Return Path" address to the identity specified in SourceIdentityArn. For more information about sending authorization, see the Amazon SES Developer Guide.
|
|
288
288
|
*/
|
|
289
289
|
sendRawEmail(callback?: (err: AWSError, data: SES.Types.SendRawEmailResponse) => void): Request<SES.Types.SendRawEmailResponse, AWSError>;
|
|
290
290
|
/**
|
|
@@ -344,11 +344,11 @@ declare class SES extends Service {
|
|
|
344
344
|
*/
|
|
345
345
|
setReceiptRulePosition(callback?: (err: AWSError, data: SES.Types.SetReceiptRulePositionResponse) => void): Request<SES.Types.SetReceiptRulePositionResponse, AWSError>;
|
|
346
346
|
/**
|
|
347
|
-
* Updates the event destination of a configuration set. When you create or update an event destination, you must provide one, and only one, destination. The destination can be
|
|
347
|
+
* Updates the event destination of a configuration set. When you create or update an event destination, you must provide one, and only one, destination. The destination can be Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). Event destinations are associated with configuration sets, which enable you to publish email sending events to Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). For information about using configuration sets, see the Amazon SES Developer Guide. This action is throttled at one request per second.
|
|
348
348
|
*/
|
|
349
349
|
updateConfigurationSetEventDestination(params: SES.Types.UpdateConfigurationSetEventDestinationRequest, callback?: (err: AWSError, data: SES.Types.UpdateConfigurationSetEventDestinationResponse) => void): Request<SES.Types.UpdateConfigurationSetEventDestinationResponse, AWSError>;
|
|
350
350
|
/**
|
|
351
|
-
* Updates the event destination of a configuration set. When you create or update an event destination, you must provide one, and only one, destination. The destination can be
|
|
351
|
+
* Updates the event destination of a configuration set. When you create or update an event destination, you must provide one, and only one, destination. The destination can be Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). Event destinations are associated with configuration sets, which enable you to publish email sending events to Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). For information about using configuration sets, see the Amazon SES Developer Guide. This action is throttled at one request per second.
|
|
352
352
|
*/
|
|
353
353
|
updateConfigurationSetEventDestination(callback?: (err: AWSError, data: SES.Types.UpdateConfigurationSetEventDestinationResponse) => void): Request<SES.Types.UpdateConfigurationSetEventDestinationResponse, AWSError>;
|
|
354
354
|
/**
|
|
@@ -735,7 +735,7 @@ declare namespace SES {
|
|
|
735
735
|
}
|
|
736
736
|
export type DiagnosticCode = string;
|
|
737
737
|
export type DimensionName = string;
|
|
738
|
-
export type DimensionValueSource = "messageTag"|"emailHeader"|string;
|
|
738
|
+
export type DimensionValueSource = "messageTag"|"emailHeader"|"linkTag"|string;
|
|
739
739
|
export type DkimAttributes = {[key: string]: IdentityDkimAttributes};
|
|
740
740
|
export type Domain = string;
|
|
741
741
|
export type DsnAction = "failed"|"delayed"|"delivered"|"relayed"|"expanded"|string;
|
|
@@ -762,10 +762,14 @@ declare namespace SES {
|
|
|
762
762
|
* An object that contains the names, default values, and sources of the dimensions associated with an Amazon CloudWatch event destination.
|
|
763
763
|
*/
|
|
764
764
|
CloudWatchDestination?: CloudWatchDestination;
|
|
765
|
+
/**
|
|
766
|
+
* An object that contains the topic ARN associated with an Amazon Simple Notification Service (Amazon SNS) event destination.
|
|
767
|
+
*/
|
|
768
|
+
SNSDestination?: SNSDestination;
|
|
765
769
|
}
|
|
766
770
|
export type EventDestinationName = string;
|
|
767
771
|
export type EventDestinations = EventDestination[];
|
|
768
|
-
export type EventType = "send"|"reject"|"bounce"|"complaint"|"delivery"|string;
|
|
772
|
+
export type EventType = "send"|"reject"|"bounce"|"complaint"|"delivery"|"open"|"click"|string;
|
|
769
773
|
export type EventTypes = EventType[];
|
|
770
774
|
export type Explanation = string;
|
|
771
775
|
export interface ExtensionField {
|
|
@@ -1120,7 +1124,7 @@ declare namespace SES {
|
|
|
1120
1124
|
}
|
|
1121
1125
|
export interface RawMessage {
|
|
1122
1126
|
/**
|
|
1123
|
-
* The raw data of the message.
|
|
1127
|
+
* The raw data of the message. This data needs to base64-encoded if you are accessing Amazon SES directly through the HTTPS interface. If you are accessing Amazon SES using an AWS SDK, the SDK takes care of the base 64-encoding for you. In all cases, the client must ensure that the message format complies with Internet email standards regarding email header fields, MIME types, and MIME encoding. The To:, CC:, and BCC: headers in the raw message can contain a group list. If you are using SendRawEmail with sending authorization, you can include X-headers in the raw message to specify the "Source," "From," and "Return-Path" addresses. For more information, see the documentation for SendRawEmail. Do not include these X-headers in the DKIM signature, because they are removed by Amazon SES before sending the email. For more information, go to the Amazon SES Developer Guide.
|
|
1124
1128
|
*/
|
|
1125
1129
|
Data: RawMessageData;
|
|
1126
1130
|
}
|
|
@@ -1298,6 +1302,12 @@ declare namespace SES {
|
|
|
1298
1302
|
Encoding?: SNSActionEncoding;
|
|
1299
1303
|
}
|
|
1300
1304
|
export type SNSActionEncoding = "UTF-8"|"Base64"|string;
|
|
1305
|
+
export interface SNSDestination {
|
|
1306
|
+
/**
|
|
1307
|
+
* The ARN of the Amazon SNS topic to which you want to publish email sending events. An example of an Amazon SNS topic ARN is arn:aws:sns:us-west-2:123456789012:MyTopic. For more information about Amazon SNS topics, see the Amazon SNS Developer Guide .
|
|
1308
|
+
*/
|
|
1309
|
+
TopicARN: AmazonResourceName;
|
|
1310
|
+
}
|
|
1301
1311
|
export interface SendBounceRequest {
|
|
1302
1312
|
/**
|
|
1303
1313
|
* The message ID of the message to be bounced.
|
|
@@ -1407,7 +1417,7 @@ declare namespace SES {
|
|
|
1407
1417
|
*/
|
|
1408
1418
|
Destinations?: AddressList;
|
|
1409
1419
|
/**
|
|
1410
|
-
* The raw text of the message. The client is responsible for ensuring the following: Message must contain a header and a body, separated by a blank line. All required header fields must be present. Each part of a multipart MIME message must be formatted properly. MIME content types must be among those supported by Amazon SES. For more information, go to the Amazon SES Developer Guide. Must be base64-encoded.
|
|
1420
|
+
* The raw text of the message. The client is responsible for ensuring the following: Message must contain a header and a body, separated by a blank line. All required header fields must be present. Each part of a multipart MIME message must be formatted properly. MIME content types must be among those supported by Amazon SES. For more information, go to the Amazon SES Developer Guide. Must be base64-encoded. Per RFC 5321, the maximum length of each line of text, including the <CRLF>, must not exceed 1,000 characters.
|
|
1411
1421
|
*/
|
|
1412
1422
|
RawMessage: RawMessage;
|
|
1413
1423
|
/**
|
|
@@ -1595,7 +1605,7 @@ declare namespace SES {
|
|
|
1595
1605
|
}
|
|
1596
1606
|
export interface VerifyDomainIdentityResponse {
|
|
1597
1607
|
/**
|
|
1598
|
-
* A TXT record that must
|
|
1608
|
+
* A TXT record that you must place in the DNS settings of the domain to complete domain verification with Amazon SES. As Amazon SES searches for the TXT record, the domain's verification status is "Pending". When Amazon SES detects the record, the domain's verification status changes to "Success". If Amazon SES is unable to detect the record within 72 hours, the domain's verification status changes to "Failed." In that case, if you still want to verify the domain, you must restart the verification process from the beginning.
|
|
1599
1609
|
*/
|
|
1600
1610
|
VerificationToken: VerificationToken;
|
|
1601
1611
|
}
|