// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package iam import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" "github.com/aws/aws-sdk-go-v2/private/protocol" "github.com/aws/aws-sdk-go-v2/private/protocol/query" ) type DeleteUserInput struct { _ struct{} `type:"structure"` // The name of the user to delete. // // This parameter allows (through its regex pattern (http://wikipedia.org/wiki/regex)) // a string of characters consisting of upper and lowercase alphanumeric characters // with no spaces. You can also include any of the following characters: _+=,.@- // // UserName is a required field UserName *string `min:"1" 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.UserName == nil { invalidParams.Add(aws.NewErrParamRequired("UserName")) } if s.UserName != nil && len(*s.UserName) < 1 { invalidParams.Add(aws.NewErrParamMinLen("UserName", 1)) } 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 // AWS Identity and Access Management. // // Deletes the specified IAM user. Unlike the AWS Management Console, when you // delete a user programmatically, you must delete the items attached to the // user manually, or the deletion fails. For more information, see Deleting // an IAM User (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_users_manage.html#id_users_deleting_cli). // Before attempting to delete a user, remove the following items: // // * Password (DeleteLoginProfile) // // * Access keys (DeleteAccessKey) // // * Signing certificate (DeleteSigningCertificate) // // * SSH public key (DeleteSSHPublicKey) // // * Git credentials (DeleteServiceSpecificCredential) // // * Multi-factor authentication (MFA) device (DeactivateMFADevice, DeleteVirtualMFADevice) // // * Inline policies (DeleteUserPolicy) // // * Attached managed policies (DetachUserPolicy) // // * Group memberships (RemoveUserFromGroup) // // // 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/iam-2010-05-08/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{}) req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) 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 }