@aws-lite/lambda-types 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +174 -6
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -35,16 +35,37 @@ import {
35
35
  GetProvisionedConcurrencyConfigCommandOutput as GetProvisionedConcurrencyConfigResponse,
36
36
  GetRuntimeManagementConfigCommandOutput as GetRuntimeManagementConfigResponse,
37
37
  InvokeCommandOutput as InvokeResponse,
38
+ InvokeAsyncCommandOutput as InvokeAsyncResponse,
38
39
  ListAliasesCommandOutput as ListAliasesResponse,
39
40
  ListCodeSigningConfigsCommandOutput as ListCodeSigningConfigsResponse,
41
+ ListEventSourceMappingsCommandOutput as ListEventSourceMappingsResponse,
42
+ ListFunctionEventInvokeConfigsCommandOutput as ListFunctionEventInvokeConfigsResponse,
40
43
  ListFunctionsCommandOutput as ListFunctionsResponse,
44
+ ListFunctionsByCodeSigningConfigCommandOutput as ListFunctionsByCodeSigningConfigResponse,
41
45
  ListFunctionUrlConfigsCommandOutput as ListFunctionUrlConfigsResponse,
42
46
  ListLayersCommandOutput as ListLayersResponse,
43
47
  ListLayerVersionsCommandOutput as ListLayerVersionsResponse,
48
+ ListProvisionedConcurrencyConfigsCommandOutput as ListProvisionedConcurrencyConfigsResponse,
49
+ ListTagsCommandOutput as ListTagsResponse,
50
+ ListVersionsByFunctionCommandOutput as ListVersionsByFunctionResponse,
51
+ PublishLayerVersionCommandOutput as PublishLayerVersionResponse,
52
+ PublishVersionCommandOutput as PublishVersionResponse,
53
+ PutFunctionCodeSigningConfigCommandOutput as PutFunctionCodeSigningConfigResponse,
44
54
  PutFunctionConcurrencyCommandOutput as PutFunctionConcurrencyResponse,
55
+ PutFunctionEventInvokeConfigCommandOutput as PutFunctionEventInvokeConfigResponse,
56
+ PutProvisionedConcurrencyConfigCommandOutput as PutProvisionedConcurrencyConfigResponse,
57
+ PutRuntimeManagementConfigCommandOutput as PutRuntimeManagementConfigResponse,
58
+ RemoveLayerVersionPermissionCommandOutput as RemoveLayerVersionPermissionResponse,
59
+ RemovePermissionCommandOutput as RemovePermissionResponse,
60
+ TagResourceCommandOutput as TagResourceResponse,
61
+ UntagResourceCommandOutput as UntagResourceResponse,
45
62
  UpdateAliasCommandOutput as UpdateAliasResponse,
63
+ UpdateCodeSigningConfigCommandOutput as UpdateCodeSigningConfigResponse,
64
+ UpdateEventSourceMappingCommandOutput as UpdateEventSourceMappingResponse,
46
65
  UpdateFunctionCodeCommandOutput as UpdateFunctionCodeResponse,
47
66
  UpdateFunctionConfigurationCommandOutput as UpdateFunctionConfigurationResponse,
67
+ UpdateFunctionEventInvokeConfigCommandOutput as UpdateFunctionEventInvokeConfigResponse,
68
+ UpdateFunctionUrlConfigCommandOutput as UpdateFunctionUrlConfigResponse,
48
69
  // $IMPORTS_END
49
70
  } from "@aws-sdk/client-lambda";
50
71
 
@@ -251,54 +272,168 @@ declare interface AwsLiteLambda {
251
272
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#Invoke Lambda: Invoke}
252
273
  */
253
274
  Invoke: (input: { FunctionName: string, InvocationType?: string, Payload: any[] | Record<string, any>, LogType?: string, ClientContext?: string, Qualifier?: string }) => Promise<InvokeResponse>
275
+ /**
276
+ * @description
277
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_InvokeAsync.html Lambda: InvokeAsync}
278
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#InvokeAsync Lambda: InvokeAsync}
279
+ */
280
+ InvokeAsync: (input: { FunctionName: string, InvokeArgs: Record<string, any> }) => Promise<InvokeAsyncResponse>
254
281
  /**
255
282
  * @description
256
283
  * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListAliases.html Lambda: ListAliases}
257
284
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#ListAliases Lambda: ListAliases}
258
285
  */
259
- ListAliases: (input: { FunctionName: string, FunctionVersion?: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListAliasesResponse>
286
+ ListAliases: (input: { FunctionName: string, FunctionVersion?: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListAliasesResponse>
260
287
  /**
261
288
  * @description
262
289
  * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListCodeSigningConfigs.html Lambda: ListCodeSigningConfigs}
263
290
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#ListCodeSigningConfigs Lambda: ListCodeSigningConfigs}
264
291
  */
265
- ListCodeSigningConfigs: (input: { Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListCodeSigningConfigsResponse>
292
+ ListCodeSigningConfigs: (input: { Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListCodeSigningConfigsResponse>
293
+ /**
294
+ * @description
295
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListEventSourceMappings.html Lambda: ListEventSourceMappings}
296
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#ListEventSourceMappings Lambda: ListEventSourceMappings}
297
+ */
298
+ ListEventSourceMappings: (input: { EventSourceArn?: string, FunctionName?: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListEventSourceMappingsResponse>
299
+ /**
300
+ * @description
301
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListFunctionEventInvokeConfigs.html Lambda: ListFunctionEventInvokeConfigs}
302
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#ListFunctionEventInvokeConfigs Lambda: ListFunctionEventInvokeConfigs}
303
+ */
304
+ ListFunctionEventInvokeConfigs: (input: { FunctionName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListFunctionEventInvokeConfigsResponse>
266
305
  /**
267
306
  * @description
268
307
  * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListFunctions.html Lambda: ListFunctions}
269
308
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#ListFunctions Lambda: ListFunctions}
270
309
  */
271
- ListFunctions: (input: { FunctionVersion?: string, Marker?: string, MasterRegion?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListFunctionsResponse>
310
+ ListFunctions: (input: { FunctionVersion?: string, Marker?: string, MasterRegion?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListFunctionsResponse>
311
+ /**
312
+ * @description
313
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListFunctionsByCodeSigningConfig.html Lambda: ListFunctionsByCodeSigningConfig}
314
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#ListFunctionsByCodeSigningConfig Lambda: ListFunctionsByCodeSigningConfig}
315
+ */
316
+ ListFunctionsByCodeSigningConfig: (input: { CodeSigningConfigArn: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListFunctionsByCodeSigningConfigResponse>
272
317
  /**
273
318
  * @description
274
319
  * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListFunctionUrlConfigs.html Lambda: ListFunctionUrlConfigs}
275
320
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#ListFunctionUrlConfigs Lambda: ListFunctionUrlConfigs}
276
321
  */
277
- ListFunctionUrlConfigs: (input: { FunctionName: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListFunctionUrlConfigsResponse>
322
+ ListFunctionUrlConfigs: (input: { FunctionName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListFunctionUrlConfigsResponse>
278
323
  /**
279
324
  * @description
280
325
  * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListLayers.html Lambda: ListLayers}
281
326
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#ListLayers Lambda: ListLayers}
282
327
  */
283
- ListLayers: (input: { CompatibleArchitecture?: string, CompatibleRuntime?: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListLayersResponse>
328
+ ListLayers: (input: { CompatibleArchitecture?: string, CompatibleRuntime?: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListLayersResponse>
284
329
  /**
285
330
  * @description
286
331
  * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListLayerVersions.html Lambda: ListLayerVersions}
287
332
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#ListLayerVersions Lambda: ListLayerVersions}
288
333
  */
289
- ListLayerVersions: (input: { LayerName: string, CompatibleArchitecture?: string, CompatibleRuntime?: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListLayerVersionsResponse>
334
+ ListLayerVersions: (input: { LayerName: string, CompatibleArchitecture?: string, CompatibleRuntime?: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListLayerVersionsResponse>
335
+ /**
336
+ * @description
337
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListProvisionedConcurrencyConfigs.html Lambda: ListProvisionedConcurrencyConfigs}
338
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#ListProvisionedConcurrencyConfigs Lambda: ListProvisionedConcurrencyConfigs}
339
+ */
340
+ ListProvisionedConcurrencyConfigs: (input: { FunctionName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListProvisionedConcurrencyConfigsResponse>
341
+ /**
342
+ * @description
343
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListTags.html Lambda: ListTags}
344
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#ListTags Lambda: ListTags}
345
+ */
346
+ ListTags: (input: { Resource: string }) => Promise<ListTagsResponse>
347
+ /**
348
+ * @description
349
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_ListVersionsByFunction.html Lambda: ListVersionsByFunction}
350
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#ListVersionsByFunction Lambda: ListVersionsByFunction}
351
+ */
352
+ ListVersionsByFunction: (input: { FunctionName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListVersionsByFunctionResponse>
353
+ /**
354
+ * @description
355
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PublishLayerVersion.html Lambda: PublishLayerVersion}
356
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#PublishLayerVersion Lambda: PublishLayerVersion}
357
+ */
358
+ PublishLayerVersion: (input: { Content: Record<string, any>, CompatibleArchitectures?: any[], CompatibleRuntimes?: any[], Description?: string, LiscenceInfo?: string }) => Promise<PublishLayerVersionResponse>
359
+ /**
360
+ * @description
361
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PublishVersion.html Lambda: PublishVersion}
362
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#PublishVersion Lambda: PublishVersion}
363
+ */
364
+ PublishVersion: (input: { FunctionName: string, CodeSha256?: string, Description?: string, RevisionId?: string }) => Promise<PublishVersionResponse>
365
+ /**
366
+ * @description
367
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PutFunctionCodeSigningConfig.html Lambda: PutFunctionCodeSigningConfig}
368
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#PutFunctionCodeSigningConfig Lambda: PutFunctionCodeSigningConfig}
369
+ */
370
+ PutFunctionCodeSigningConfig: (input: { FunctionName: string, CodeSigningConfigArn: string }) => Promise<PutFunctionCodeSigningConfigResponse>
290
371
  /**
291
372
  * @description
292
373
  * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PutFunctionConcurrency.html Lambda: PutFunctionConcurrency}
293
374
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#PutFunctionConcurrency Lambda: PutFunctionConcurrency}
294
375
  */
295
376
  PutFunctionConcurrency: (input: { FunctionName: string, ReservedConcurrentExecutions: number }) => Promise<PutFunctionConcurrencyResponse>
377
+ /**
378
+ * @description
379
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PutFunctionEventInvokeConfig.html Lambda: PutFunctionEventInvokeConfig}
380
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#PutFunctionEventInvokeConfig Lambda: PutFunctionEventInvokeConfig}
381
+ */
382
+ PutFunctionEventInvokeConfig: (input: { FunctionName: string, DestinationConfig?: Record<string, any>, MaximumEventAgeInSeconds?: number, MaximumRetryAttempts?: number, Qualifier?: string }) => Promise<PutFunctionEventInvokeConfigResponse>
383
+ /**
384
+ * @description
385
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PutProvisionedConcurrencyConfig.html Lambda: PutProvisionedConcurrencyConfig}
386
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#PutProvisionedConcurrencyConfig Lambda: PutProvisionedConcurrencyConfig}
387
+ */
388
+ PutProvisionedConcurrencyConfig: (input: { FunctionName: string, ProvisionedConcurrentExecutions: number, Qualifier: string }) => Promise<PutProvisionedConcurrencyConfigResponse>
389
+ /**
390
+ * @description
391
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_PutRuntimeManagementConfig.html Lambda: PutRuntimeManagementConfig}
392
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#PutRuntimeManagementConfig Lambda: PutRuntimeManagementConfig}
393
+ */
394
+ PutRuntimeManagementConfig: (input: { FunctionName: string, UpdateRuntimeOn: string, Qualifier?: string, RuntimeVersionArn?: string }) => Promise<PutRuntimeManagementConfigResponse>
395
+ /**
396
+ * @description
397
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_RemoveLayerVersionPermission.html Lambda: RemoveLayerVersionPermission}
398
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#RemoveLayerVersionPermission Lambda: RemoveLayerVersionPermission}
399
+ */
400
+ RemoveLayerVersionPermission: (input: { LayerName: string, StatementId: string, VersionNumber: number, RevisionId?: string }) => Promise<RemoveLayerVersionPermissionResponse>
401
+ /**
402
+ * @description
403
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_RemovePermission.html Lambda: RemovePermission}
404
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#RemovePermission Lambda: RemovePermission}
405
+ */
406
+ RemovePermission: (input: { FunctionName: string, StatementId: string, RevisionId?: string, Qualifier?: string }) => Promise<RemovePermissionResponse>
407
+ /**
408
+ * @description
409
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_TagResource.html Lambda: TagResource}
410
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#TagResource Lambda: TagResource}
411
+ */
412
+ TagResource: (input: { Resource: string, Tags: Record<string, any> }) => Promise<TagResourceResponse>
413
+ /**
414
+ * @description
415
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UntagResource.html Lambda: UntagResource}
416
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#UntagResource Lambda: UntagResource}
417
+ */
418
+ UntagResource: (input: { Resource: string, TagKeys: any[] }) => Promise<UntagResourceResponse>
296
419
  /**
297
420
  * @description
298
421
  * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateAlias.html Lambda: UpdateAlias}
299
422
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#UpdateAlias Lambda: UpdateAlias}
300
423
  */
301
424
  UpdateAlias: (input: { FunctionName: string, Name: string, Description?: string, FunctionVersion?: string, RevisionId?: string, RoutingConfig?: Record<string, any> }) => Promise<UpdateAliasResponse>
425
+ /**
426
+ * @description
427
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateCodeSigningConfig.html Lambda: UpdateCodeSigningConfig}
428
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#UpdateCodeSigningConfig Lambda: UpdateCodeSigningConfig}
429
+ */
430
+ UpdateCodeSigningConfig: (input: { CodeSigningConfigArn: string, AllowedPublishers?: Record<string, any>, CodeSigningPolicies?: Record<string, any>, Description?: string }) => Promise<UpdateCodeSigningConfigResponse>
431
+ /**
432
+ * @description
433
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateEventSourceMapping.html Lambda: UpdateEventSourceMapping}
434
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#UpdateEventSourceMapping Lambda: UpdateEventSourceMapping}
435
+ */
436
+ UpdateEventSourceMapping: (input: { UUID: string, AmazonManagedKafkaEventSourceConfig?: Record<string, any>, BatchSize?: number, BisectBatchOnFunctionError?: boolean, DestinationConfig?: Record<string, any>, DocumentDBEventSourceConfig?: Record<string, any>, Enabled?: boolean, FilterCriteria?: Record<string, any>, FunctionName?: string, FunctionResponseTypes?: any[], MaximumBatchingWindowInSeconds?: number, MaximumRecordAgeInSeconds?: number, MaximumRetryAttempts?: number, ParallelizationFactor?: number, Queues?: any[], ScalingConfig?: Record<string, any>, SourceAccessConfigurations?: any[], TumblingWindowInSeconds?: number }) => Promise<UpdateEventSourceMappingResponse>
302
437
  /**
303
438
  * @description
304
439
  * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateFunctionCode.html Lambda: UpdateFunctionCode}
@@ -311,6 +446,18 @@ declare interface AwsLiteLambda {
311
446
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#UpdateFunctionConfiguration Lambda: UpdateFunctionConfiguration}
312
447
  */
313
448
  UpdateFunctionConfiguration: (input: { FunctionName: string, DeadLetterConfig?: Record<string, any>, Description?: string, Environment?: Record<string, any>, EphemeralStorage?: Record<string, any>, FileSystemConfigs?: any[], Handler?: string, ImageConfig?: Record<string, any>, KMSKeyArn?: string, Layers?: any[], MemorySize?: number, RevisionId?: string, Role?: string, Runtime?: string, SnapStart?: Record<string, any>, Timeout?: number, TracingConfig?: Record<string, any>, VpcConfig?: Record<string, any> }) => Promise<UpdateFunctionConfigurationResponse>
449
+ /**
450
+ * @description
451
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateFunctionEventInvokeConfig.html Lambda: UpdateFunctionEventInvokeConfig}
452
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#UpdateFunctionEventInvokeConfig Lambda: UpdateFunctionEventInvokeConfig}
453
+ */
454
+ UpdateFunctionEventInvokeConfig: (input: { FunctionName: string, DestinationConfig?: Record<string, any>, MaximumEventAgeInSeconds?: number, MaximumRetryAttempts?: number }) => Promise<UpdateFunctionEventInvokeConfigResponse>
455
+ /**
456
+ * @description
457
+ * - AWS docs: {@link https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateFunctionUrlConfig.html Lambda: UpdateFunctionUrlConfig}
458
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/lambda/readme.md#UpdateFunctionUrlConfig Lambda: UpdateFunctionUrlConfig}
459
+ */
460
+ UpdateFunctionUrlConfig: (input: { FunctionName: string, AuthType?: string, Cors?: Record<string, any>, InvokeMode?: string, Qualifier?: string }) => Promise<UpdateFunctionUrlConfigResponse>
314
461
  // $METHODS_END
315
462
  }
316
463
 
@@ -358,15 +505,36 @@ export type {
358
505
  GetProvisionedConcurrencyConfigResponse,
359
506
  GetRuntimeManagementConfigResponse,
360
507
  InvokeResponse,
508
+ InvokeAsyncResponse,
361
509
  ListAliasesResponse,
362
510
  ListCodeSigningConfigsResponse,
511
+ ListEventSourceMappingsResponse,
512
+ ListFunctionEventInvokeConfigsResponse,
363
513
  ListFunctionsResponse,
514
+ ListFunctionsByCodeSigningConfigResponse,
364
515
  ListFunctionUrlConfigsResponse,
365
516
  ListLayersResponse,
366
517
  ListLayerVersionsResponse,
518
+ ListProvisionedConcurrencyConfigsResponse,
519
+ ListTagsResponse,
520
+ ListVersionsByFunctionResponse,
521
+ PublishLayerVersionResponse,
522
+ PublishVersionResponse,
523
+ PutFunctionCodeSigningConfigResponse,
367
524
  PutFunctionConcurrencyResponse,
525
+ PutFunctionEventInvokeConfigResponse,
526
+ PutProvisionedConcurrencyConfigResponse,
527
+ PutRuntimeManagementConfigResponse,
528
+ RemoveLayerVersionPermissionResponse,
529
+ RemovePermissionResponse,
530
+ TagResourceResponse,
531
+ UntagResourceResponse,
368
532
  UpdateAliasResponse,
533
+ UpdateCodeSigningConfigResponse,
534
+ UpdateEventSourceMappingResponse,
369
535
  UpdateFunctionCodeResponse,
370
536
  UpdateFunctionConfigurationResponse,
537
+ UpdateFunctionEventInvokeConfigResponse,
538
+ UpdateFunctionUrlConfigResponse,
371
539
  // $EXPORT_END
372
540
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-lite/lambda-types",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Type definitions for the `@aws-lite/lambda` plugin",
5
5
  "homepage": "https://aws-lite.org/services/lambda",
6
6
  "repository": {