Struct aws_sdk_workmail::input::ResetPasswordInput [−][src]
#[non_exhaustive]pub struct ResetPasswordInput {
pub organization_id: Option<String>,
pub user_id: Option<String>,
pub password: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.organization_id: Option<String>
The identifier of the organization that contains the user for which the password is reset.
user_id: Option<String>
The identifier of the user for whom the password is reset.
password: Option<String>
The new password for the user.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ResetPassword, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ResetPassword, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ResetPassword
>
Creates a new builder-style object to manufacture ResetPasswordInput
The identifier of the organization that contains the user for which the password is reset.
The identifier of the user for whom the password is reset.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ResetPasswordInput
impl Send for ResetPasswordInput
impl Sync for ResetPasswordInput
impl Unpin for ResetPasswordInput
impl UnwindSafe for ResetPasswordInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more