From 0f46c771b2b256d78f125fa01f9fdf6dee3687f9 Mon Sep 17 00:00:00 2001 From: tmokmss Date: Thu, 19 Sep 2024 14:32:04 +0900 Subject: [PATCH] docs: format --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0fcc79e..75b9c41 100644 --- a/README.md +++ b/README.md @@ -56,20 +56,20 @@ new LlrtFunction(this, 'Handler', { Note that we enable this flag automatically on Windows platform. -## Bundle Types +### Bundle Types LLRT publishes several binaries with different sets of bundled SDKs: -- `LlrtBundleType.FULL_SDK`: Includes all AWS SDKs -- `LlrtBundleType.NO_SDK`: No AWS SDKs included -- `LlrtBundleType.STANDARD`: Standard bundle (default) +- `LlrtBinaryType.FULL_SDK`: Includes all AWS SDKs +- `LlrtBinaryType.NO_SDK`: No AWS SDKs included +- `LlrtBinaryType.STANDARD`: Standard bundle (default) You can specify the bundle type when creating a new LlrtFunction: ```ts const handler = new LlrtFunction(this, 'Handler', { entry: 'lambda/index.ts', - bundleType: LlrtBundleType.FULL_SDK, + binaryType: LlrtBinaryType.FULL_SDK, }); ```