UNPKG

@aws-amplify/interactions

Version:

Interactions category of aws-amplify

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