1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package iam
4
5import (
6	"context"
7	awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
8	"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
9	"github.com/aws/smithy-go/middleware"
10	smithyhttp "github.com/aws/smithy-go/transport/http"
11)
12
13// Deletes the password for the specified IAM user, which terminates the user's
14// ability to access AWS services through the AWS Management Console. You can use
15// the AWS CLI, the AWS API, or the Users page in the IAM console to delete a
16// password for any IAM user. You can use ChangePassword to update, but not delete,
17// your own password in the My Security Credentials page in the AWS Management
18// Console. Deleting a user's password does not prevent a user from accessing AWS
19// through the command line interface or the API. To prevent all user access, you
20// must also either make any access keys inactive or delete them. For more
21// information about making keys inactive or deleting them, see UpdateAccessKey and
22// DeleteAccessKey.
23func (c *Client) DeleteLoginProfile(ctx context.Context, params *DeleteLoginProfileInput, optFns ...func(*Options)) (*DeleteLoginProfileOutput, error) {
24	if params == nil {
25		params = &DeleteLoginProfileInput{}
26	}
27
28	result, metadata, err := c.invokeOperation(ctx, "DeleteLoginProfile", params, optFns, addOperationDeleteLoginProfileMiddlewares)
29	if err != nil {
30		return nil, err
31	}
32
33	out := result.(*DeleteLoginProfileOutput)
34	out.ResultMetadata = metadata
35	return out, nil
36}
37
38type DeleteLoginProfileInput struct {
39
40	// The name of the user whose password you want to delete. This parameter allows
41	// (through its regex pattern (http://wikipedia.org/wiki/regex)) a string of
42	// characters consisting of upper and lowercase alphanumeric characters with no
43	// spaces. You can also include any of the following characters: _+=,.@-
44	//
45	// This member is required.
46	UserName *string
47}
48
49type DeleteLoginProfileOutput struct {
50	// Metadata pertaining to the operation's result.
51	ResultMetadata middleware.Metadata
52}
53
54func addOperationDeleteLoginProfileMiddlewares(stack *middleware.Stack, options Options) (err error) {
55	err = stack.Serialize.Add(&awsAwsquery_serializeOpDeleteLoginProfile{}, middleware.After)
56	if err != nil {
57		return err
58	}
59	err = stack.Deserialize.Add(&awsAwsquery_deserializeOpDeleteLoginProfile{}, middleware.After)
60	if err != nil {
61		return err
62	}
63	if err = addSetLoggerMiddleware(stack, options); err != nil {
64		return err
65	}
66	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
67		return err
68	}
69	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
70		return err
71	}
72	if err = addResolveEndpointMiddleware(stack, options); err != nil {
73		return err
74	}
75	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
76		return err
77	}
78	if err = addRetryMiddlewares(stack, options); err != nil {
79		return err
80	}
81	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
82		return err
83	}
84	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
85		return err
86	}
87	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
88		return err
89	}
90	if err = addClientUserAgent(stack); err != nil {
91		return err
92	}
93	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
94		return err
95	}
96	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
97		return err
98	}
99	if err = addOpDeleteLoginProfileValidationMiddleware(stack); err != nil {
100		return err
101	}
102	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opDeleteLoginProfile(options.Region), middleware.Before); err != nil {
103		return err
104	}
105	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
106		return err
107	}
108	if err = addResponseErrorMiddleware(stack); err != nil {
109		return err
110	}
111	if err = addRequestResponseLogging(stack, options); err != nil {
112		return err
113	}
114	return nil
115}
116
117func newServiceMetadataMiddleware_opDeleteLoginProfile(region string) *awsmiddleware.RegisterServiceMetadata {
118	return &awsmiddleware.RegisterServiceMetadata{
119		Region:        region,
120		ServiceID:     ServiceID,
121		SigningName:   "iam",
122		OperationName: "DeleteLoginProfile",
123	}
124}
125