// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package snowball import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type CancelJobInput struct { _ struct{} `type:"structure"` // The 39-character job ID for the job that you want to cancel, for example // JID123e4567-e89b-12d3-a456-426655440000. // // JobId is a required field JobId *string `min:"39" type:"string" required:"true"` } // String returns the string representation func (s CancelJobInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *CancelJobInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "CancelJobInput"} if s.JobId == nil { invalidParams.Add(aws.NewErrParamRequired("JobId")) } if s.JobId != nil && len(*s.JobId) < 39 { invalidParams.Add(aws.NewErrParamMinLen("JobId", 39)) } if invalidParams.Len() > 0 { return invalidParams } return nil } type CancelJobOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s CancelJobOutput) String() string { return awsutil.Prettify(s) } const opCancelJob = "CancelJob" // CancelJobRequest returns a request value for making API operation for // Amazon Import/Export Snowball. // // Cancels the specified job. You can only cancel a job before its JobState // value changes to PreparingAppliance. Requesting the ListJobs or DescribeJob // action returns a job's JobState as part of the response element data returned. // // // Example sending a request using CancelJobRequest. // req := client.CancelJobRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/CancelJob func (c *Client) CancelJobRequest(input *CancelJobInput) CancelJobRequest { op := &aws.Operation{ Name: opCancelJob, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CancelJobInput{} } req := c.newRequest(op, input, &CancelJobOutput{}) return CancelJobRequest{Request: req, Input: input, Copy: c.CancelJobRequest} } // CancelJobRequest is the request type for the // CancelJob API operation. type CancelJobRequest struct { *aws.Request Input *CancelJobInput Copy func(*CancelJobInput) CancelJobRequest } // Send marshals and sends the CancelJob API request. func (r CancelJobRequest) Send(ctx context.Context) (*CancelJobResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &CancelJobResponse{ CancelJobOutput: r.Request.Data.(*CancelJobOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // CancelJobResponse is the response type for the // CancelJob API operation. type CancelJobResponse struct { *CancelJobOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // CancelJob request. func (r *CancelJobResponse) SDKResponseMetdata() *aws.Response { return r.response }