agent-claw: automated task changes

This commit is contained in:
daniel
2026-05-06 18:55:16 -05:00
parent 38905bb1e9
commit 732b00fb66
8494 changed files with 2018127 additions and 4 deletions

View File

@@ -0,0 +1,26 @@
import type * as ses from '../../aws-ses';
/**
* Construction properties for a add header action.
*/
export interface AddHeaderProps {
/**
* The name of the header to add. Must be between 1 and 50 characters,
* inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters
* and dashes only.
*/
readonly name: string;
/**
* The value of the header to add. Must be less than 2048 characters,
* and must not contain newline characters ("\r" or "\n").
*/
readonly value: string;
}
/**
* Adds a header to the received email
*/
export declare class AddHeader implements ses.IReceiptRuleAction {
private readonly name;
private readonly value;
constructor(props: AddHeaderProps);
bind(_rule: ses.IReceiptRuleRef): ses.ReceiptRuleActionConfig;
}