// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package fsx import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) // The request object for DeleteBackup operation. type DeleteBackupInput struct { _ struct{} `type:"structure"` // The ID of the backup you want to delete. // // BackupId is a required field BackupId *string `min:"12" type:"string" required:"true"` // A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent // deletion. This is automatically filled on your behalf when using the AWS // CLI or SDK. ClientRequestToken *string `min:"1" type:"string" idempotencyToken:"true"` } // String returns the string representation func (s DeleteBackupInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteBackupInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "DeleteBackupInput"} if s.BackupId == nil { invalidParams.Add(aws.NewErrParamRequired("BackupId")) } if s.BackupId != nil && len(*s.BackupId) < 12 { invalidParams.Add(aws.NewErrParamMinLen("BackupId", 12)) } if s.ClientRequestToken != nil && len(*s.ClientRequestToken) < 1 { invalidParams.Add(aws.NewErrParamMinLen("ClientRequestToken", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // The response object for DeleteBackup operation. type DeleteBackupOutput struct { _ struct{} `type:"structure"` // The ID of the backup deleted. BackupId *string `min:"12" type:"string"` // The lifecycle of the backup. Should be DELETED. Lifecycle BackupLifecycle `type:"string" enum:"true"` } // String returns the string representation func (s DeleteBackupOutput) String() string { return awsutil.Prettify(s) } const opDeleteBackup = "DeleteBackup" // DeleteBackupRequest returns a request value for making API operation for // Amazon FSx. // // Deletes an Amazon FSx backup, deleting its contents. After deletion, the // backup no longer exists, and its data is gone. // // The DeleteBackup call returns instantly. The backup will not show up in later // DescribeBackups calls. // // The data in a deleted backup is also deleted and can't be recovered by any // means. // // // Example sending a request using DeleteBackupRequest. // req := client.DeleteBackupRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteBackup func (c *Client) DeleteBackupRequest(input *DeleteBackupInput) DeleteBackupRequest { op := &aws.Operation{ Name: opDeleteBackup, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteBackupInput{} } req := c.newRequest(op, input, &DeleteBackupOutput{}) return DeleteBackupRequest{Request: req, Input: input, Copy: c.DeleteBackupRequest} } // DeleteBackupRequest is the request type for the // DeleteBackup API operation. type DeleteBackupRequest struct { *aws.Request Input *DeleteBackupInput Copy func(*DeleteBackupInput) DeleteBackupRequest } // Send marshals and sends the DeleteBackup API request. func (r DeleteBackupRequest) Send(ctx context.Context) (*DeleteBackupResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &DeleteBackupResponse{ DeleteBackupOutput: r.Request.Data.(*DeleteBackupOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // DeleteBackupResponse is the response type for the // DeleteBackup API operation. type DeleteBackupResponse struct { *DeleteBackupOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // DeleteBackup request. func (r *DeleteBackupResponse) SDKResponseMetdata() *aws.Response { return r.response }