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,33 @@
/**
* Architectures supported by AWS Lambda
*/
export declare class Architecture {
/**
* 64 bit architecture with x86 instruction set.
*/
static readonly X86_64: Architecture;
/**
* 64 bit architecture with the ARM instruction set.
*/
static readonly ARM_64: Architecture;
/**
* Used to specify a custom architecture name.
* Use this if the architecture name is not yet supported by the CDK.
* @param name the architecture name as recognized by AWS Lambda.
* @param [dockerPlatform=linux/amd64] the platform to use for this architecture when building with Docker
*/
static custom(name: string, dockerPlatform?: string): Architecture;
/**
* The name of the architecture as recognized by the AWS Lambda service APIs.
*/
readonly name: string;
/**
* The platform to use for this architecture when building with Docker.
*/
readonly dockerPlatform: string;
private constructor();
/**
* Returns a string representation of the architecture using the name
*/
toString(): string;
}