UNPKG

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