cdk-lambda-subminute 2.0.395 → 2.0.396
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/.jsii +4 -4
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/chatbot-2017-10-11.min.json +1 -1
- package/node_modules/aws-sdk/apis/sesv2-2019-09-27.min.json +117 -97
- package/node_modules/aws-sdk/clients/apigateway.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sesv2.d.ts +27 -6
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
@@ -2941,7 +2941,7 @@ declare namespace APIGateway {
|
|
2941
2941
|
*/
|
2942
2942
|
loggingLevel?: String;
|
2943
2943
|
/**
|
2944
|
-
* Specifies whether data trace logging is enabled for this method, which affects the log entries pushed to Amazon CloudWatch Logs.
|
2944
|
+
* Specifies whether data trace logging is enabled for this method, which affects the log entries pushed to Amazon CloudWatch Logs. This can be useful to troubleshoot APIs, but can result in logging sensitive data. We recommend that you don't enable this option for production APIs.
|
2945
2945
|
*/
|
2946
2946
|
dataTraceEnabled?: Boolean;
|
2947
2947
|
/**
|
@@ -708,11 +708,11 @@ declare class SESV2 extends Service {
|
|
708
708
|
*/
|
709
709
|
updateConfigurationSetEventDestination(callback?: (err: AWSError, data: SESV2.Types.UpdateConfigurationSetEventDestinationResponse) => void): Request<SESV2.Types.UpdateConfigurationSetEventDestinationResponse, AWSError>;
|
710
710
|
/**
|
711
|
-
* Updates a contact's preferences for a list.
|
711
|
+
* Updates a contact's preferences for a list. You must specify all existing topic preferences in the TopicPreferences object, not just the ones that need updating; otherwise, all your existing preferences will be removed.
|
712
712
|
*/
|
713
713
|
updateContact(params: SESV2.Types.UpdateContactRequest, callback?: (err: AWSError, data: SESV2.Types.UpdateContactResponse) => void): Request<SESV2.Types.UpdateContactResponse, AWSError>;
|
714
714
|
/**
|
715
|
-
* Updates a contact's preferences for a list.
|
715
|
+
* Updates a contact's preferences for a list. You must specify all existing topic preferences in the TopicPreferences object, not just the ones that need updating; otherwise, all your existing preferences will be removed.
|
716
716
|
*/
|
717
717
|
updateContact(callback?: (err: AWSError, data: SESV2.Types.UpdateContactResponse) => void): Request<SESV2.Types.UpdateContactResponse, AWSError>;
|
718
718
|
/**
|
@@ -1871,7 +1871,7 @@ declare namespace SESV2 {
|
|
1871
1871
|
*/
|
1872
1872
|
EnforcementStatus?: GeneralEnforcementStatus;
|
1873
1873
|
/**
|
1874
|
-
* Indicates whether or not your account has production access in the current Amazon Web Services Region. If the value is false, then your account is in the sandbox. When your account is in the sandbox, you can only send email to verified identities.
|
1874
|
+
* Indicates whether or not your account has production access in the current Amazon Web Services Region. If the value is false, then your account is in the sandbox. When your account is in the sandbox, you can only send email to verified identities. If the value is true, then your account has production access. When your account has production access, you can send email to any address. The sending quota and maximum sending rate for your account vary based on your specific use case.
|
1875
1875
|
*/
|
1876
1876
|
ProductionAccessEnabled?: Enabled;
|
1877
1877
|
/**
|
@@ -2913,9 +2913,26 @@ declare namespace SESV2 {
|
|
2913
2913
|
* The body of the message. You can specify an HTML version of the message, a text-only version of the message, or both.
|
2914
2914
|
*/
|
2915
2915
|
Body: Body;
|
2916
|
+
/**
|
2917
|
+
* The list of message headers that will be added to the email message.
|
2918
|
+
*/
|
2919
|
+
Headers?: MessageHeaderList;
|
2916
2920
|
}
|
2917
2921
|
export type MessageContent = string;
|
2918
2922
|
export type MessageData = string;
|
2923
|
+
export interface MessageHeader {
|
2924
|
+
/**
|
2925
|
+
* The name of the message header. The message header name has to meet the following criteria: Can contain any printable ASCII character (33 - 126) except for colon (:). Can contain no more than 126 characters.
|
2926
|
+
*/
|
2927
|
+
Name: MessageHeaderName;
|
2928
|
+
/**
|
2929
|
+
* The value of the message header. The message header value has to meet the following criteria: Can contain any printable ASCII character. Can contain no more than 870 characters.
|
2930
|
+
*/
|
2931
|
+
Value: MessageHeaderValue;
|
2932
|
+
}
|
2933
|
+
export type MessageHeaderList = MessageHeader[];
|
2934
|
+
export type MessageHeaderName = string;
|
2935
|
+
export type MessageHeaderValue = string;
|
2919
2936
|
export interface MessageInsightsDataSource {
|
2920
2937
|
/**
|
2921
2938
|
* Represents the start date for the export interval as a timestamp. The start date is inclusive.
|
@@ -3119,7 +3136,7 @@ declare namespace SESV2 {
|
|
3119
3136
|
*/
|
3120
3137
|
AdditionalContactEmailAddresses?: AdditionalContactEmailAddresses;
|
3121
3138
|
/**
|
3122
|
-
* Indicates whether or not your account should have production access in the current Amazon Web Services Region. If the value is false, then your account is in the sandbox. When your account is in the sandbox, you can only send email to verified identities.
|
3139
|
+
* Indicates whether or not your account should have production access in the current Amazon Web Services Region. If the value is false, then your account is in the sandbox. When your account is in the sandbox, you can only send email to verified identities. If the value is true, then your account has production access. When your account has production access, you can send email to any address. The sending quota and maximum sending rate for your account vary based on your specific use case.
|
3123
3140
|
*/
|
3124
3141
|
ProductionAccessEnabled?: EnabledWrapper;
|
3125
3142
|
}
|
@@ -3550,7 +3567,7 @@ declare namespace SESV2 {
|
|
3550
3567
|
*/
|
3551
3568
|
FeedbackForwardingEmailAddressIdentityArn?: AmazonResourceName;
|
3552
3569
|
/**
|
3553
|
-
* An object that contains the body of the message. You can send either a Simple message Raw message or a
|
3570
|
+
* An object that contains the body of the message. You can send either a Simple message, Raw message, or a Templated message.
|
3554
3571
|
*/
|
3555
3572
|
Content: EmailContent;
|
3556
3573
|
/**
|
@@ -3568,7 +3585,7 @@ declare namespace SESV2 {
|
|
3568
3585
|
}
|
3569
3586
|
export interface SendEmailResponse {
|
3570
3587
|
/**
|
3571
|
-
* A unique identifier for the message that is generated when the message is accepted. It's possible for Amazon SES to accept a message without sending it.
|
3588
|
+
* A unique identifier for the message that is generated when the message is accepted. It's possible for Amazon SES to accept a message without sending it. For example, this can happen when the message that you're trying to send has an attachment that contains a virus, or when you send a templated email that contains invalid personalization content.
|
3572
3589
|
*/
|
3573
3590
|
MessageId?: OutboundMessageId;
|
3574
3591
|
}
|
@@ -3707,6 +3724,10 @@ declare namespace SESV2 {
|
|
3707
3724
|
* An object that defines the values to use for message variables in the template. This object is a set of key-value pairs. Each key defines a message variable in the template. The corresponding value defines the value to use for that variable.
|
3708
3725
|
*/
|
3709
3726
|
TemplateData?: EmailTemplateData;
|
3727
|
+
/**
|
3728
|
+
* The list of message headers that will be added to the email message.
|
3729
|
+
*/
|
3730
|
+
Headers?: MessageHeaderList;
|
3710
3731
|
}
|
3711
3732
|
export type TemplateContent = string;
|
3712
3733
|
export interface TestRenderEmailTemplateRequest {
|