// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package applicationdiscoveryservice import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type CreateApplicationInput struct { _ struct{} `type:"structure"` // Description of the application to be created. Description *string `locationName:"description" type:"string"` // Name of the application to be created. // // Name is a required field Name *string `locationName:"name" type:"string" required:"true"` } // String returns the string representation func (s CreateApplicationInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateApplicationInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "CreateApplicationInput"} if s.Name == nil { invalidParams.Add(aws.NewErrParamRequired("Name")) } if invalidParams.Len() > 0 { return invalidParams } return nil } type CreateApplicationOutput struct { _ struct{} `type:"structure"` // Configuration ID of an application to be created. ConfigurationId *string `locationName:"configurationId" type:"string"` } // String returns the string representation func (s CreateApplicationOutput) String() string { return awsutil.Prettify(s) } const opCreateApplication = "CreateApplication" // CreateApplicationRequest returns a request value for making API operation for // AWS Application Discovery Service. // // Creates an application with the given name and description. // // // Example sending a request using CreateApplicationRequest. // req := client.CreateApplicationRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/discovery-2015-11-01/CreateApplication func (c *Client) CreateApplicationRequest(input *CreateApplicationInput) CreateApplicationRequest { op := &aws.Operation{ Name: opCreateApplication, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CreateApplicationInput{} } req := c.newRequest(op, input, &CreateApplicationOutput{}) return CreateApplicationRequest{Request: req, Input: input, Copy: c.CreateApplicationRequest} } // CreateApplicationRequest is the request type for the // CreateApplication API operation. type CreateApplicationRequest struct { *aws.Request Input *CreateApplicationInput Copy func(*CreateApplicationInput) CreateApplicationRequest } // Send marshals and sends the CreateApplication API request. func (r CreateApplicationRequest) Send(ctx context.Context) (*CreateApplicationResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &CreateApplicationResponse{ CreateApplicationOutput: r.Request.Data.(*CreateApplicationOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // CreateApplicationResponse is the response type for the // CreateApplication API operation. type CreateApplicationResponse struct { *CreateApplicationOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // CreateApplication request. func (r *CreateApplicationResponse) SDKResponseMetdata() *aws.Response { return r.response }