agent-claw: automated task changes
This commit is contained in:
38
cdk/node_modules/aws-cdk-lib/aws-ses-actions/lib/sns.d.ts
generated
vendored
Normal file
38
cdk/node_modules/aws-cdk-lib/aws-ses-actions/lib/sns.d.ts
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
import type * as ses from '../../aws-ses';
|
||||
import type * as sns from '../../aws-sns';
|
||||
/**
|
||||
* The type of email encoding to use for a SNS action.
|
||||
*/
|
||||
export declare enum EmailEncoding {
|
||||
/**
|
||||
* Base 64
|
||||
*/
|
||||
BASE64 = "Base64",
|
||||
/**
|
||||
* UTF-8
|
||||
*/
|
||||
UTF8 = "UTF-8"
|
||||
}
|
||||
/**
|
||||
* Construction properties for a SNS action.
|
||||
*/
|
||||
export interface SnsProps {
|
||||
/**
|
||||
* The encoding to use for the email within the Amazon SNS notification.
|
||||
*
|
||||
* @default UTF-8
|
||||
*/
|
||||
readonly encoding?: EmailEncoding;
|
||||
/**
|
||||
* The SNS topic to notify.
|
||||
*/
|
||||
readonly topic: sns.ITopic;
|
||||
}
|
||||
/**
|
||||
* Publishes the email content within a notification to Amazon SNS.
|
||||
*/
|
||||
export declare class Sns implements ses.IReceiptRuleAction {
|
||||
private readonly props;
|
||||
constructor(props: SnsProps);
|
||||
bind(_rule: ses.IReceiptRuleRef): ses.ReceiptRuleActionConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user