aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
2 lines (1 loc) • 632 B
JavaScript
;Object.defineProperty(exports,"__esModule",{value:!0}),exports.Architecture=void 0;const JSII_RTTI_SYMBOL_1=Symbol.for("jsii.rtti");class Architecture{static[JSII_RTTI_SYMBOL_1]={fqn:"aws-cdk-lib.aws_lambda.Architecture",version:"2.233.0"};static X86_64=new Architecture("x86_64","linux/amd64");static ARM_64=new Architecture("arm64","linux/arm64");static custom(name,dockerPlatform){return new Architecture(name,dockerPlatform??"linux/amd64")}name;dockerPlatform;constructor(archName,dockerPlatform){this.name=archName,this.dockerPlatform=dockerPlatform}toString(){return this.name}}exports.Architecture=Architecture;