// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package cloudwatch import ( "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/signer/v4" "github.com/aws/aws-sdk-go-v2/private/protocol/query" ) // CloudWatch provides the API operation methods for making requests to // Amazon CloudWatch. See this package's package overview docs // for details on the service. // // CloudWatch methods are safe to use concurrently. It is not safe to // modify mutate any of the struct's properties though. type CloudWatch struct { *aws.Client } // Used for custom client initialization logic var initClient func(*CloudWatch) // Used for custom request initialization logic var initRequest func(*CloudWatch, *aws.Request) // Service information constants const ( ServiceName = "monitoring" // Service endpoint prefix API calls made to. EndpointsID = ServiceName // Service ID for Regions and Endpoints metadata. ) // New creates a new instance of the CloudWatch client with a config. // // Example: // // Create a CloudWatch client from just a config. // svc := cloudwatch.New(myConfig) func New(config aws.Config) *CloudWatch { var signingName string signingRegion := config.Region svc := &CloudWatch{ Client: aws.NewClient( config, aws.Metadata{ ServiceName: ServiceName, SigningName: signingName, SigningRegion: signingRegion, APIVersion: "2010-08-01", }, ), } // Handlers svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) svc.Handlers.Build.PushBackNamed(query.BuildHandler) svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) // Run custom client initialization if present if initClient != nil { initClient(svc) } return svc } // newRequest creates a new request for a CloudWatch operation and runs any // custom request initialization. func (c *CloudWatch) newRequest(op *aws.Operation, params, data interface{}) *aws.Request { req := c.NewRequest(op, params, data) // Run custom request initialization if present if initRequest != nil { initRequest(c, req) } return req }