MCPcopy Create free account
hub / github.com/aws-samples/failure-analysis-assistant / FA2StackProps

Interface FA2StackProps

lib/stack/fa2-stack.ts:8–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import { NodejsFunction } from "aws-cdk-lib/aws-lambda-nodejs";
7
8interface 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
27export class FA2Stack extends Stack {
28 public readonly fa2BackendFunction: NodejsFunction;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected