// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`AdminResetUserPassword`](crate::operation::admin_reset_user_password::builders::AdminResetUserPasswordFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`user_pool_id(impl Into<String>)`](crate::operation::admin_reset_user_password::builders::AdminResetUserPasswordFluentBuilder::user_pool_id) / [`set_user_pool_id(Option<String>)`](crate::operation::admin_reset_user_password::builders::AdminResetUserPasswordFluentBuilder::set_user_pool_id):<br>required: **true**<br><p>The user pool ID for the user pool where you want to reset the user's password.</p><br>
/// - [`username(impl Into<String>)`](crate::operation::admin_reset_user_password::builders::AdminResetUserPasswordFluentBuilder::username) / [`set_username(Option<String>)`](crate::operation::admin_reset_user_password::builders::AdminResetUserPasswordFluentBuilder::set_username):<br>required: **true**<br><p>The username of the user that you want to query or modify. The value of this parameter is typically your user's username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in your user pool, you can also use their <code>sub</code> in this request.</p><br>
/// - [`client_metadata(impl Into<String>, impl Into<String>)`](crate::operation::admin_reset_user_password::builders::AdminResetUserPasswordFluentBuilder::client_metadata) / [`set_client_metadata(Option<HashMap::<String, String>>)`](crate::operation::admin_reset_user_password::builders::AdminResetUserPasswordFluentBuilder::set_client_metadata):<br>required: **false**<br><p>A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers.</p> <p>You create custom workflows by assigning Lambda functions to user pool triggers. When you use the AdminResetUserPassword API action, Amazon Cognito invokes the function that is assigned to the <i>custom message</i> trigger. When Amazon Cognito invokes this function, it passes a JSON payload, which the function receives as input. This payload contains a <code>clientMetadata</code> attribute, which provides the data that you assigned to the ClientMetadata parameter in your AdminResetUserPassword request. In your function code in Lambda, you can process the <code>clientMetadata</code> value to enhance your workflow for your specific needs.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html"> Customizing user pool Workflows with Lambda Triggers</a> in the <i>Amazon Cognito Developer Guide</i>.</p><note> <p>When you use the ClientMetadata parameter, remember that Amazon Cognito won't do the following:</p> <ul> <li> <p>Store the ClientMetadata value. This data is available only to Lambda triggers that are assigned to a user pool to support custom workflows. If your user pool configuration doesn't include triggers, the ClientMetadata parameter serves no purpose.</p></li> <li> <p>Validate the ClientMetadata value.</p></li> <li> <p>Encrypt the ClientMetadata value. Don't use Amazon Cognito to provide sensitive information.</p></li> </ul> </note><br>
/// - On success, responds with [`AdminResetUserPasswordOutput`](crate::operation::admin_reset_user_password::AdminResetUserPasswordOutput)
/// - On failure, responds with [`SdkError<AdminResetUserPasswordError>`](crate::operation::admin_reset_user_password::AdminResetUserPasswordError)
pub fn admin_reset_user_password(&self) -> crate::operation::admin_reset_user_password::builders::AdminResetUserPasswordFluentBuilder {
crate::operation::admin_reset_user_password::builders::AdminResetUserPasswordFluentBuilder::new(self.handle.clone())
}
}