Amazon web services 通过git bash将botium连接到lex时出现问题

Amazon web services 通过git bash将botium连接到lex时出现问题,amazon-web-services,chatbot,git-bash,amazon-lex,botium-box,Amazon Web Services,Chatbot,Git Bash,Amazon Lex,Botium Box,我正试图通过git bash将botium连接到我的lex机器人。我的botium.json看起来像这样 { "botium": { "Capabilities": { "PROJECTNAME": "My Bot Test", "CONTAINERMODE": "lex", "LEX_REGION": "us-east-1", "LEX_ACCESS_KEY_ID": "mykeyID", "LEX_SECRET_ACCE

我正试图通过git bash将botium连接到我的lex机器人。我的botium.json看起来像这样

{
  "botium": {
    "Capabilities": {
      "PROJECTNAME": "My Bot Test",
      "CONTAINERMODE": "lex",
      "LEX_REGION": "us-east-1",
      "LEX_ACCESS_KEY_ID": "mykeyID",
      "LEX_SECRET_ACCESS_KEY": "mysecretaccesskey",
      "LEX_PROJECT_NAME": "myBotName",
      "LEX_PROJECT_ALIAS": "myBotNameAlias"
    },
    "Sources": {},
    "Envs": {}
  }
}
我尝试运行以下命令
botium cli nlpextract--config botium.json--convas/output--verbose

它给了我这个错误

2020-03-11T00:03:23.566Z botium-BotDriver Loaded Botium configuration file ./botium.json
2020-03-11T00:03:23.567Z botium-BotDriver Loaded Botium configuration file botium.json
2020-03-11T00:03:23.568Z botium-BotDriver Changed capability CONFIG to "botium.json" using environment variables.
2020-03-11T00:03:25.157Z botium-BotDriver Loaded Botium configuration file ./botium.json
2020-03-11T00:03:25.157Z botium-BotDriver Loaded Botium configuration file botium.json
2020-03-11T00:03:25.158Z botium-BotDriver Changed capability CONFIG to "botium.json" using environment variables.
Failed to extract utterances: connect ETIMEDOUT 52.5.205.58:443

这似乎不是正确的IP,但我不知道如何设置连接。当我运行这些命令时,我已经通过git bash登录到我的AWS CLI帐户,因此,我认为它应该立即连接。但连接总是超时。找不到任何可以帮助我的文档。

此IP属于amazon。Lex客户端连接到的主机名不受配置约束,但它们是自动计算的(在您的例子中,使用端点-https/{service}.{region}.amazonaws.com)

看起来访问被某种方式阻止了——本地防火墙、公司防火墙、代理等等