ResumeService
Source:
src/AWS/AppRunner/ResumeService.ts
Resume a paused App Runner Service from a Lambda (or other AWS
runtime). App Runner re-provisions compute capacity and the endpoint
starts serving again. The call is asynchronous; pair with
ListOperations to track the returned OperationId.
Provide AppRunner.ResumeServiceHttp on the hosting function’s Effect to
implement the binding.
Pausing and Resuming
Section titled “Pausing and Resuming”const resumeService = yield* AppRunner.ResumeService(service);const { Service: resumed } = yield* resumeService();// resumed.Status -> "OPERATION_IN_PROGRESS" (settles to "RUNNING")