// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package codestar import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type UpdateProjectInput struct { _ struct{} `type:"structure"` // The description of the project, if any. Description *string `locationName:"description" type:"string" sensitive:"true"` // The ID of the project you want to update. // // Id is a required field Id *string `locationName:"id" min:"2" type:"string" required:"true"` // The name of the project you want to update. Name *string `locationName:"name" min:"1" type:"string" sensitive:"true"` } // String returns the string representation func (s UpdateProjectInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateProjectInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "UpdateProjectInput"} if s.Id == nil { invalidParams.Add(aws.NewErrParamRequired("Id")) } if s.Id != nil && len(*s.Id) < 2 { invalidParams.Add(aws.NewErrParamMinLen("Id", 2)) } if s.Name != nil && len(*s.Name) < 1 { invalidParams.Add(aws.NewErrParamMinLen("Name", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } type UpdateProjectOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s UpdateProjectOutput) String() string { return awsutil.Prettify(s) } const opUpdateProject = "UpdateProject" // UpdateProjectRequest returns a request value for making API operation for // AWS CodeStar. // // Updates a project in AWS CodeStar. // // // Example sending a request using UpdateProjectRequest. // req := client.UpdateProjectRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/UpdateProject func (c *Client) UpdateProjectRequest(input *UpdateProjectInput) UpdateProjectRequest { op := &aws.Operation{ Name: opUpdateProject, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &UpdateProjectInput{} } req := c.newRequest(op, input, &UpdateProjectOutput{}) return UpdateProjectRequest{Request: req, Input: input, Copy: c.UpdateProjectRequest} } // UpdateProjectRequest is the request type for the // UpdateProject API operation. type UpdateProjectRequest struct { *aws.Request Input *UpdateProjectInput Copy func(*UpdateProjectInput) UpdateProjectRequest } // Send marshals and sends the UpdateProject API request. func (r UpdateProjectRequest) Send(ctx context.Context) (*UpdateProjectResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &UpdateProjectResponse{ UpdateProjectOutput: r.Request.Data.(*UpdateProjectOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // UpdateProjectResponse is the response type for the // UpdateProject API operation. type UpdateProjectResponse struct { *UpdateProjectOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // UpdateProject request. func (r *UpdateProjectResponse) SDKResponseMetdata() *aws.Response { return r.response }