| 6 | import { NodejsFunction } from "aws-cdk-lib/aws-lambda-nodejs"; |
| 7 | |
| 8 | interface FA2StackProps extends StackProps { |
| 9 | language: Language; |
| 10 | modelId: string; |
| 11 | slackAppTokenKey: string; |
| 12 | slackSigningSecretKey: string; |
| 13 | architectureDescription: string; |
| 14 | cwLogsLogGroups: string[]; |
| 15 | cwLogsInsightQuery: string; |
| 16 | xrayTrace: boolean; |
| 17 | databaseName?: string; |
| 18 | albAccessLogTableName?: string; |
| 19 | cloudTrailLogTableName?: string; |
| 20 | slashCommands: SlashCommands; |
| 21 | detectorId?: string; |
| 22 | knowledgeBaseId?: string; |
| 23 | rerankModelId?: string; |
| 24 | maxAgentCycles?: number; |
| 25 | } |
| 26 | |
| 27 | export class FA2Stack extends Stack { |
| 28 | public readonly fa2BackendFunction: NodejsFunction; |
nothing calls this directly
no outgoing calls
no test coverage detected