Documentation
¶
Overview ¶
Copyright © 2023 Manoj Sharma manoj.sharma@synectiks.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var AwsxLambdaCmd = &cobra.Command{ Use: "lambda", Short: "get Lambda Details command gets resource counts", Long: `get Lambda Details command gets resource counts details of an AWS account`, Run: func(cmd *cobra.Command, args []string) { log.Println("Command lambda started") authFlag, clientAuth, err := authenticate.CommandAuth(cmd) if err != nil { cmd.Help() return } marker := cmd.Flags().Lookup("marker").Value.String() all, _ := cmd.Flags().GetBool("all") if authFlag { if all { controllers.AllLambdaListController(*clientAuth) } else { controllers.LambdaListController(marker, *clientAuth) } } }, }
AwsxCloudElementsCmd represents the base command when called without any subcommands
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.