1// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. 2 3package autoscalingplans 4 5import ( 6 "github.com/aws/aws-sdk-go/aws" 7 "github.com/aws/aws-sdk-go/aws/client" 8 "github.com/aws/aws-sdk-go/aws/client/metadata" 9 "github.com/aws/aws-sdk-go/aws/request" 10 "github.com/aws/aws-sdk-go/aws/signer/v4" 11 "github.com/aws/aws-sdk-go/private/protocol" 12 "github.com/aws/aws-sdk-go/private/protocol/jsonrpc" 13) 14 15// AutoScalingPlans provides the API operation methods for making requests to 16// AWS Auto Scaling Plans. See this package's package overview docs 17// for details on the service. 18// 19// AutoScalingPlans methods are safe to use concurrently. It is not safe to 20// modify mutate any of the struct's properties though. 21type AutoScalingPlans struct { 22 *client.Client 23} 24 25// Used for custom client initialization logic 26var initClient func(*client.Client) 27 28// Used for custom request initialization logic 29var initRequest func(*request.Request) 30 31// Service information constants 32const ( 33 ServiceName = "autoscaling" // Name of service. 34 EndpointsID = "autoscaling-plans" // ID to lookup a service endpoint with. 35 ServiceID = "Auto Scaling Plans" // ServiceID is a unique identifier of a specific service. 36) 37 38// New creates a new instance of the AutoScalingPlans client with a session. 39// If additional configuration is needed for the client instance use the optional 40// aws.Config parameter to add your extra config. 41// 42// Example: 43// mySession := session.Must(session.NewSession()) 44// 45// // Create a AutoScalingPlans client from just a session. 46// svc := autoscalingplans.New(mySession) 47// 48// // Create a AutoScalingPlans client with additional configuration 49// svc := autoscalingplans.New(mySession, aws.NewConfig().WithRegion("us-west-2")) 50func New(p client.ConfigProvider, cfgs ...*aws.Config) *AutoScalingPlans { 51 c := p.ClientConfig(EndpointsID, cfgs...) 52 if c.SigningNameDerived || len(c.SigningName) == 0 { 53 c.SigningName = "autoscaling-plans" 54 } 55 return newClient(*c.Config, c.Handlers, c.PartitionID, c.Endpoint, c.SigningRegion, c.SigningName) 56} 57 58// newClient creates, initializes and returns a new service client instance. 59func newClient(cfg aws.Config, handlers request.Handlers, partitionID, endpoint, signingRegion, signingName string) *AutoScalingPlans { 60 svc := &AutoScalingPlans{ 61 Client: client.New( 62 cfg, 63 metadata.ClientInfo{ 64 ServiceName: ServiceName, 65 ServiceID: ServiceID, 66 SigningName: signingName, 67 SigningRegion: signingRegion, 68 PartitionID: partitionID, 69 Endpoint: endpoint, 70 APIVersion: "2018-01-06", 71 JSONVersion: "1.1", 72 TargetPrefix: "AnyScaleScalingPlannerFrontendService", 73 }, 74 handlers, 75 ), 76 } 77 78 // Handlers 79 svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) 80 svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) 81 svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) 82 svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) 83 svc.Handlers.UnmarshalError.PushBackNamed( 84 protocol.NewUnmarshalErrorHandler(jsonrpc.NewUnmarshalTypedError(exceptionFromCode)).NamedHandler(), 85 ) 86 87 // Run custom client initialization if present 88 if initClient != nil { 89 initClient(svc.Client) 90 } 91 92 return svc 93} 94 95// newRequest creates a new request for a AutoScalingPlans operation and runs any 96// custom request initialization. 97func (c *AutoScalingPlans) newRequest(op *request.Operation, params, data interface{}) *request.Request { 98 req := c.NewRequest(op, params, data) 99 100 // Run custom request initialization if present 101 if initRequest != nil { 102 initRequest(req) 103 } 104 105 return req 106} 107