amazon-web-services - 如何使用 AWS SAM 让我的函数按计划运行而不是 API 调用

标签 amazon-web-services aws-lambda aws-sdk

我刚刚开始使用 AWS SAM,我需要按计划运行 Lambda 函数,而不是 API 调用

这是我正在使用的 yaml 模板

AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: >
  shed

  Sample SAM Template for shed

# More info about Globals: https://github.com/awslabs/serverless-application-model/blob/master/docs/globals.rst
Globals:
  Function:
    Timeout: 3

Resources:
  HelloWorldFunction:
    Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
    Properties:
      CodeUri: hello-world/
      Handler: app.lambdaHandler
      Runtime: nodejs8.10
      Events:
        HelloWorld:
          Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
          Properties:
            Path: /hello
            Method: get

Outputs:
  # ServerlessRestApi is an implicit API created out of Events key under Serverless::Function
  # Find out more about other implicit resources you can reference within SAM
  # https://github.com/awslabs/serverless-application-model/blob/master/docs/internals/generated_resources.rst#api
  HelloWorldApi:
    Description: "API Gateway endpoint URL for Prod stage for Hello World function"
    Value: !Sub "https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/hello/"
  HelloWorldFunction:
    Description: "Hello World Lambda Function ARN"
    Value: !GetAtt HelloWorldFunction.Arn
  HelloWorldFunctionIamRole:
    Description: "Implicit IAM Role created for Hello World function"
    Value: !GetAtt HelloWorldFunctionRole.Arn

如何让我的 HelloWorldFunction 按计划(例如每周五 17:00)运行?

最佳答案

您需要更改 yaml 文件,资源部分需要更改为:


Resources:
  HelloWorldFunction:
    Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
    Properties:
      CodeUri: hello-world/
      Handler: app.lambdaHandler
      Runtime: nodejs8.10
      Events:
        EveryFriDay:
          Type: Schedule 
          Properties:
            Schedule: cron(0 0 17 ? * FRI *)

关于amazon-web-services - 如何使用 AWS SAM 让我的函数按计划运行而不是 API 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56398588/

相关文章:

aws-lambda - 模板资源属性无效 'Policies'

node.js - 在本地机器上使用 VSCode 中的 NodeJS 运行带有层的 AWS Lambda

javascript - 如何在 AWS 上获取凭证?我必须使用 AWS Cognito SDK 还是 AWS SDK?

aws-lambda - 获取 Alexa 语音的 AWS API

hadoop - AWS EMR 验证错误

amazon-web-services - Athena 查询返回值中的引号

python - 如何在不引发异常的情况下从 AWS lambda 授权方返回 401

ruby-on-rails - 将 ACL 设置为 public_read 的文件上传到 AWS S3

python - 使用 Python Lambda 处理 AWS Step Function 中的意外错误的最佳实践是什么?

amazon-web-services - AWS - 我的单个 EC2 微型实例如何突破 750 小时的限制?