Skip to content

Commit 25a572b

Browse files
committed
Making upgrade to 1.5 easier
1 parent 08a7bd9 commit 25a572b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/chatbot-ui-stack.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,29 +70,29 @@ export class ChatBotUIStack extends cdk.Stack {
7070
aws_cognito_region: this.region,
7171
aws_user_pools_id: ssm.StringParameter.fromStringParameterName(
7272
this,
73-
'UserPoolId',
73+
'CognitoUserPoolId',
7474
`/chatbot/${prefix}/cognito/user-pool-id`
7575
).stringValue,
7676
aws_user_pools_web_client_id: ssm.StringParameter.fromStringParameterName(
7777
this,
78-
'UserPoolClientId',
78+
'CognitoUserPoolClientId',
7979
`/chatbot/${prefix}/cognito/user-pool-client-id`
8080
).stringValue,
8181
identityPoolId: ssm.StringParameter.fromStringParameterName(
8282
this,
83-
'IdentityPoolId',
83+
'CognitoIdentityPoolId',
8484
`/chatbot/${prefix}/cognito/identity-pool-id`
8585
).stringValue,
8686
client: {
8787
name: 'lambda',
8888
send_endpoint: ssm.StringParameter.fromStringParameterName(
8989
this,
90-
'ChatBotEndpointSend',
90+
'ChatBotEndpointSendMessage',
9191
`/chatbot/${prefix}/endpoints/send-message`
9292
).stringValue,
9393
action_endpoint: ssm.StringParameter.fromStringParameterName(
9494
this,
95-
'ChatBotEndpointAction',
95+
'ChatBotEndpointChatAction',
9696
`/chatbot/${prefix}/endpoints/chat-action`
9797
).stringValue,
9898
},

0 commit comments

Comments
 (0)