UNPKG

@aws-amplify/interactions

Version:

Interactions category of aws-amplify

18 lines (14 loc) 507 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { AmplifyContext } from '@aws-amplify/core'; import { AWSLexV2ProviderOption } from '../types'; export const resolveBotConfig = ( ctx: AmplifyContext, botName: string, ): AWSLexV2ProviderOption | undefined => { const { [botName]: botConfig = undefined } = ctx.resourcesConfig.Interactions?.LexV2 ?? {}; if (botConfig !== undefined) { return { ...botConfig, name: botName }; } };