Generating mocks for AWS Go SDK

One way to generate mocks for AWS SDK is to use mockgen with go generate command.

Example below shows generating the mock for CloudWatchLogsAPI and placing mock into mocks directory.

package cloudwatchlogs

import (…