// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { decodeJWT } from 'aws-amplify/adapter-core/internals'; export const getAccessTokenUsername = (accessToken: string): string => decodeJWT(accessToken).payload.username as string;