# Functions

CloudWatchLogGroupExists checks if a log group exists Using the client provided, it will check the CloudWatch Logs service to verify the log group sess := session.Must(aws.NewConfig()) svc := cloudwatchlogs.New(sess) // checks if the pineapple-pizza log group exists ok, err := LogGroupExists(svc, "pineapple-pizza") if err != nil { panic(err) } if ok { // do something }.
CreateNewCloudWatchLogGroup creates a log group in CloudWatch Logs.
CreateNewLogStream creates a log stream inside of a LogGroup.
New sets up a logger that writes to the stderr.
NewCloudWatchLogsProvider creates a io.Writer that writes to a specifc log group.
SetProviderLogOutput ...