// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package devicefarm import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) // Represents a request to the create project operation. type CreateProjectInput struct { _ struct{} `type:"structure"` // Sets the execution timeout value (in minutes) for a project. All test runs // in this project use the specified execution timeout value unless overridden // when scheduling a run. DefaultJobTimeoutMinutes *int64 `locationName:"defaultJobTimeoutMinutes" type:"integer"` // The project's name. // // Name is a required field Name *string `locationName:"name" type:"string" required:"true"` } // String returns the string representation func (s CreateProjectInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateProjectInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "CreateProjectInput"} if s.Name == nil { invalidParams.Add(aws.NewErrParamRequired("Name")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // Represents the result of a create project request. type CreateProjectOutput struct { _ struct{} `type:"structure"` // The newly created project. Project *Project `locationName:"project" type:"structure"` } // String returns the string representation func (s CreateProjectOutput) String() string { return awsutil.Prettify(s) } const opCreateProject = "CreateProject" // CreateProjectRequest returns a request value for making API operation for // AWS Device Farm. // // Creates a project. // // // Example sending a request using CreateProjectRequest. // req := client.CreateProjectRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateProject func (c *Client) CreateProjectRequest(input *CreateProjectInput) CreateProjectRequest { op := &aws.Operation{ Name: opCreateProject, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CreateProjectInput{} } req := c.newRequest(op, input, &CreateProjectOutput{}) return CreateProjectRequest{Request: req, Input: input, Copy: c.CreateProjectRequest} } // CreateProjectRequest is the request type for the // CreateProject API operation. type CreateProjectRequest struct { *aws.Request Input *CreateProjectInput Copy func(*CreateProjectInput) CreateProjectRequest } // Send marshals and sends the CreateProject API request. func (r CreateProjectRequest) Send(ctx context.Context) (*CreateProjectResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &CreateProjectResponse{ CreateProjectOutput: r.Request.Data.(*CreateProjectOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // CreateProjectResponse is the response type for the // CreateProject API operation. type CreateProjectResponse struct { *CreateProjectOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // CreateProject request. func (r *CreateProjectResponse) SDKResponseMetdata() *aws.Response { return r.response }