UNPKG

494 BTypeScriptView Raw
1import { UpdateUserAttributesInput, UpdateUserAttributesOutput } from '../types';
2/**
3 * Updates user's attributes while authenticated.
4 *
5 * @param input - The UpdateUserAttributesInput object
6 * @returns UpdateUserAttributesOutput
7 * @throws - {@link UpdateUserAttributesException}
8 * @throws AuthTokenConfigException - Thrown when the token provider config is invalid.
9 */
10export declare const updateUserAttributes: (input: UpdateUserAttributesInput) => Promise<UpdateUserAttributesOutput>;