@aws-sdk/client-cognito-identity-provider
Version:
AWS SDK for JavaScript Cognito Identity Provider Client for Node.js, Browser and React Native
51 lines (50 loc) • 1.56 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
CognitoIdentityProviderClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../CognitoIdentityProviderClient";
import {
ChangePasswordRequest,
ChangePasswordResponse,
} from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface ChangePasswordCommandInput extends ChangePasswordRequest {}
export interface ChangePasswordCommandOutput
extends ChangePasswordResponse,
__MetadataBearer {}
declare const ChangePasswordCommand_base: {
new (
input: ChangePasswordCommandInput
): import("@smithy/smithy-client").CommandImpl<
ChangePasswordCommandInput,
ChangePasswordCommandOutput,
CognitoIdentityProviderClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
__0_0: ChangePasswordCommandInput
): import("@smithy/smithy-client").CommandImpl<
ChangePasswordCommandInput,
ChangePasswordCommandOutput,
CognitoIdentityProviderClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class ChangePasswordCommand extends ChangePasswordCommand_base {
protected static __types: {
api: {
input: ChangePasswordRequest;
output: {};
};
sdk: {
input: ChangePasswordCommandInput;
output: ChangePasswordCommandOutput;
};
};
}