File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import {LambdaFunction} from "../constructs/LambdaFunction"
33import { ManagedPolicy } from "aws-cdk-lib/aws-iam"
44import { StringParameter } from "aws-cdk-lib/aws-ssm"
55import { Secret } from "aws-cdk-lib/aws-secretsmanager"
6- import { Table } from "aws-cdk-lib/aws-dynamodb"
6+ import { TableV2 } from "aws-cdk-lib/aws-dynamodb"
77
88// Claude model for RAG responses
99const RAG_MODEL_ID = "anthropic.claude-3-sonnet-20240229-v1:0"
@@ -28,7 +28,7 @@ export interface FunctionsProps {
2828 readonly account : string
2929 readonly slackBotTokenSecret : Secret
3030 readonly slackBotSigningSecret : Secret
31- readonly slackBotStateTable : Table
31+ readonly slackBotStateTable : TableV2
3232}
3333
3434export class Functions extends Construct {
You can’t perform that action at this time.
0 commit comments