agent-claw: automated task changes
This commit is contained in:
33
cdk/node_modules/aws-cdk-lib/aws-lambda/lib/architecture.d.ts
generated
vendored
Normal file
33
cdk/node_modules/aws-cdk-lib/aws-lambda/lib/architecture.d.ts
generated
vendored
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user