LambdaClient.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. namespace Aws\Lambda;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with AWS Lambda
  6. *
  7. * @method \Aws\Result addPermission(array $args = [])
  8. * @method \GuzzleHttp\Promise\Promise addPermissionAsync(array $args = [])
  9. * @method \Aws\Result createAlias(array $args = [])
  10. * @method \GuzzleHttp\Promise\Promise createAliasAsync(array $args = [])
  11. * @method \Aws\Result createEventSourceMapping(array $args = [])
  12. * @method \GuzzleHttp\Promise\Promise createEventSourceMappingAsync(array $args = [])
  13. * @method \Aws\Result createFunction(array $args = [])
  14. * @method \GuzzleHttp\Promise\Promise createFunctionAsync(array $args = [])
  15. * @method \Aws\Result deleteAlias(array $args = [])
  16. * @method \GuzzleHttp\Promise\Promise deleteAliasAsync(array $args = [])
  17. * @method \Aws\Result deleteEventSourceMapping(array $args = [])
  18. * @method \GuzzleHttp\Promise\Promise deleteEventSourceMappingAsync(array $args = [])
  19. * @method \Aws\Result deleteFunction(array $args = [])
  20. * @method \GuzzleHttp\Promise\Promise deleteFunctionAsync(array $args = [])
  21. * @method \Aws\Result getAccountSettings(array $args = [])
  22. * @method \GuzzleHttp\Promise\Promise getAccountSettingsAsync(array $args = [])
  23. * @method \Aws\Result getAlias(array $args = [])
  24. * @method \GuzzleHttp\Promise\Promise getAliasAsync(array $args = [])
  25. * @method \Aws\Result getEventSourceMapping(array $args = [])
  26. * @method \GuzzleHttp\Promise\Promise getEventSourceMappingAsync(array $args = [])
  27. * @method \Aws\Result getFunction(array $args = [])
  28. * @method \GuzzleHttp\Promise\Promise getFunctionAsync(array $args = [])
  29. * @method \Aws\Result getFunctionConfiguration(array $args = [])
  30. * @method \GuzzleHttp\Promise\Promise getFunctionConfigurationAsync(array $args = [])
  31. * @method \Aws\Result getPolicy(array $args = [])
  32. * @method \GuzzleHttp\Promise\Promise getPolicyAsync(array $args = [])
  33. * @method \Aws\Result invoke(array $args = [])
  34. * @method \GuzzleHttp\Promise\Promise invokeAsync(array $args = [])
  35. * @method \Aws\Result invokeAsync(array $args = [])
  36. * @method \GuzzleHttp\Promise\Promise invokeAsyncAsync(array $args = [])
  37. * @method \Aws\Result listAliases(array $args = [])
  38. * @method \GuzzleHttp\Promise\Promise listAliasesAsync(array $args = [])
  39. * @method \Aws\Result listEventSourceMappings(array $args = [])
  40. * @method \GuzzleHttp\Promise\Promise listEventSourceMappingsAsync(array $args = [])
  41. * @method \Aws\Result listFunctions(array $args = [])
  42. * @method \GuzzleHttp\Promise\Promise listFunctionsAsync(array $args = [])
  43. * @method \Aws\Result listTags(array $args = [])
  44. * @method \GuzzleHttp\Promise\Promise listTagsAsync(array $args = [])
  45. * @method \Aws\Result listVersionsByFunction(array $args = [])
  46. * @method \GuzzleHttp\Promise\Promise listVersionsByFunctionAsync(array $args = [])
  47. * @method \Aws\Result publishVersion(array $args = [])
  48. * @method \GuzzleHttp\Promise\Promise publishVersionAsync(array $args = [])
  49. * @method \Aws\Result removePermission(array $args = [])
  50. * @method \GuzzleHttp\Promise\Promise removePermissionAsync(array $args = [])
  51. * @method \Aws\Result tagResource(array $args = [])
  52. * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
  53. * @method \Aws\Result untagResource(array $args = [])
  54. * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
  55. * @method \Aws\Result updateAlias(array $args = [])
  56. * @method \GuzzleHttp\Promise\Promise updateAliasAsync(array $args = [])
  57. * @method \Aws\Result updateEventSourceMapping(array $args = [])
  58. * @method \GuzzleHttp\Promise\Promise updateEventSourceMappingAsync(array $args = [])
  59. * @method \Aws\Result updateFunctionCode(array $args = [])
  60. * @method \GuzzleHttp\Promise\Promise updateFunctionCodeAsync(array $args = [])
  61. * @method \Aws\Result updateFunctionConfiguration(array $args = [])
  62. * @method \GuzzleHttp\Promise\Promise updateFunctionConfigurationAsync(array $args = [])
  63. */
  64. class LambdaClient extends AwsClient {}