地域,名字,代码位置,内存,超时时间
next_function:
component: fc3
props:
region: ${vars.region}
functionName: next_function_example
description: 'hello world by serverless devs'
runtime: "custom-container"
codeUri: ./code/target
handler: main
memorySize: 128
timeout: 60此回答整理自钉群“阿里函数计算客户”。
参考如下配置文件:
edition: 1.0.0
name: hello-world-app
access: default
vars: # 全局变量
region: "cn-hangzhou"
service:
name: "hello-world-service"
description: 'hello world by serverless devs'
tracingConfig: Enable # 开启链路追踪功能
services:
helloworld: # 业务名称/模块名称
component: fc # 组件名称,Serverless Devs 工具本身类似于一种游戏机,不具备具体的业务能力,组件类似于游戏卡,用户通过向游戏机中插入不同的游戏卡实现不同的功能,即通过使用不同的组件实现不同的具体业务能力
props:
region: ${vars.region} # 关于变量的使用方法,可以参考:https://www.serverless-devs.com/serverless-devs/yaml#变量赋值
service: ${vars.service}
function:
name: "start-fc-event-python3"
description: 'hello world by serverless devs'
runtime: python3.9
codeUri: ./code
handler: index.handler
memorySize: 128
timeout: 60
——参考链接。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。