You've already forked golang-saas-starter-kit
mirror of
https://github.com/raseels-repos/golang-saas-starter-kit.git
synced 2025-06-29 00:52:03 +02:00
12 lines
257 B
Go
12 lines
257 B
Go
![]() |
package cicd
|
||
|
|
||
|
|
||
|
// deployLambdaFuncRequest defines the details needed to deploy a function to AWS Lambda.
|
||
|
type deployLambdaFuncRequest struct {
|
||
|
EnableLambdaVPC bool `validate:"omitempty"`
|
||
|
|
||
|
FuncName string `validate:"required"`
|
||
|
|
||
|
}
|
||
|
|