Sam Sussman

Results 110 issues of Sam Sussman

Add API Gateway Invoke to Step Functions, App Sync, Lambda, and Event Bridge. ```ts const api = new API(stack, "api"); const api2 = API.fromApi(stack, "api", "arn/uri") const method = new...

api-gateway

```ts const func = new Function(...); new StepFunction(..., async () => { await func.async(...); }) ``` ## Lambda `Lambda.InvokeAsync` operation. ## Step Functions https://docs.aws.amazon.com/step-functions/latest/dg/connect-lambda.html > It is also possible to...

lambda

Currently, the Functionless service integrations may be usable by external integrators, but not officially so. In #108, #113, #103 and a few other recent changes, we are starting to see...

aside: do we support `Array.isArray`? _Originally posted by @sam-goodwin in https://github.com/functionless/functionless/pull/399#discussion_r942876164_

step-functions

From #442. Functionless Step Functions treats `==` and `===` the same currently, however `==` has a more complex algorithm called the [abstract equality comparison algorithm](https://262.ecma-international.org/5.1/#sec-11.9.3). * [ ] Update step...

step-functions

> ReferenceError: Cannot access 'chargeCard' before initialization at ReferenceExpr.ref (/home/sussmans/functionless/test-app/src/order-processing-queue.ts:404:37) ```ts // use a Standard Step Function to orchestrate order fulfillment const processOrder = new StepFunction( stack, "ProcessOrder", async (order:...

step-functions
appsync

Tyler gave great feedback, including some rough documentation transitions from lambda to SFN, smooth these out. https://docs.google.com/document/d/1Sq3MVC7rh0OpIZXFtoMMifxXrYG6QoJ40THAgn70itM

documentation
step-functions

Tracking ticket for support secrets in all Resources. * Secret forms * [x] #192 * [ ] `SecretValue` token * Resources * [ ] Lambda/Function * [ ] Step Functions...

step-functions
appsync
api-gateway
lambda
secrets

https://mathiasbynens.be/notes/javascript-properties ```ts test("unicode variable names", () => { const { stack } = initStepFunctionApp(); const definition = new StepFunction(stack, "machine1", async () => { var HECOMḚṮH = 42; const _...

step-functions

Standard Step Functions price model is based on transitions. In general, to assign a variable in SFN costs at least one state transition to generate the state to do so....

step-functions