async function getSecondaryLastestStreamArn()

in source/custom-resources/global-table-checker.js [69:75]


async function getSecondaryLastestStreamArn() {
  const response = await dynamodb.describeTable({
    TableName: USER_POOL_TABLE
  }).promise();

  return response.Table.LatestStreamArn ? response.Table.LatestStreamArn : '';
}