Skip to content

Commit

Permalink
docs: format
Browse files Browse the repository at this point in the history
  • Loading branch information
tmokmss committed Sep 19, 2024
1 parent a124d63 commit 0f46c77
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});
```

Expand Down

0 comments on commit 0f46c77

Please sign in to comment.