add description to Function def
This commit is contained in:
parent
72c3c797ea
commit
6f8900a1c2
2 changed files with 4 additions and 0 deletions
|
@ -12,6 +12,9 @@ boto3 = "^1.13.18"
|
||||||
pyyaml = "^5.3.1"
|
pyyaml = "^5.3.1"
|
||||||
attrs = "^19.3.0"
|
attrs = "^19.3.0"
|
||||||
|
|
||||||
|
[tool.poetry.scripts]
|
||||||
|
tripod = 'tripod:cli'
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
|
|
|
@ -13,6 +13,7 @@ import typing
|
||||||
@attr.s(auto_attribs=True)
|
@attr.s(auto_attribs=True)
|
||||||
class Function:
|
class Function:
|
||||||
name: str
|
name: str
|
||||||
|
description: str
|
||||||
runtime: str
|
runtime: str
|
||||||
role_arn: str
|
role_arn: str
|
||||||
handler: str
|
handler: str
|
||||||
|
|
Loading…
Reference in a new issue