1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-06-29 00:52:03 +02:00
Files
golang-saas-starter-kit/tools/devops/cmd/cicd/deploy_function.go

12 lines
257 B
Go
Raw Normal View History

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"`
}