File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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 } ,
You can’t perform that action at this time.
0 commit comments