// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package workmail import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type DeleteUserInput struct { _ struct{} `type:"structure"` // The organization that contains the user to be deleted. // // OrganizationId is a required field OrganizationId *string `type:"string" required:"true"` // The identifier of the user to be deleted. // // UserId is a required field UserId *string `min:"12" type:"string" required:"true"` } // String returns the string representation func (s DeleteUserInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteUserInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "DeleteUserInput"} if s.OrganizationId == nil { invalidParams.Add(aws.NewErrParamRequired("OrganizationId")) } if s.UserId == nil { invalidParams.Add(aws.NewErrParamRequired("UserId")) } if s.UserId != nil && len(*s.UserId) < 12 { invalidParams.Add(aws.NewErrParamMinLen("UserId", 12)) } if invalidParams.Len() > 0 { return invalidParams } return nil } type DeleteUserOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s DeleteUserOutput) String() string { return awsutil.Prettify(s) } const opDeleteUser = "DeleteUser" // DeleteUserRequest returns a request value for making API operation for // Amazon WorkMail. // // Deletes a user from Amazon WorkMail and all subsequent systems. Before you // can delete a user, the user state must be DISABLED. Use the DescribeUser // action to confirm the user state. // // Deleting a user is permanent and cannot be undone. WorkMail archives user // mailboxes for 30 days before they are permanently removed. // // // Example sending a request using DeleteUserRequest. // req := client.DeleteUserRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/workmail-2017-10-01/DeleteUser func (c *Client) DeleteUserRequest(input *DeleteUserInput) DeleteUserRequest { op := &aws.Operation{ Name: opDeleteUser, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteUserInput{} } req := c.newRequest(op, input, &DeleteUserOutput{}) return DeleteUserRequest{Request: req, Input: input, Copy: c.DeleteUserRequest} } // DeleteUserRequest is the request type for the // DeleteUser API operation. type DeleteUserRequest struct { *aws.Request Input *DeleteUserInput Copy func(*DeleteUserInput) DeleteUserRequest } // Send marshals and sends the DeleteUser API request. func (r DeleteUserRequest) Send(ctx context.Context) (*DeleteUserResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &DeleteUserResponse{ DeleteUserOutput: r.Request.Data.(*DeleteUserOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // DeleteUserResponse is the response type for the // DeleteUser API operation. type DeleteUserResponse struct { *DeleteUserOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // DeleteUser request. func (r *DeleteUserResponse) SDKResponseMetdata() *aws.Response { return r.response }