我正在尝试使用 python 和 boto 2.31.1 在 cloudsearch 域中创建一个索引字段。
我可以成功地为“text”、“int-array”和“literal”类型创建索引字段,但不能为“int”创建索引字段
例如
这成功了:
dom_comments.create_index_field('some_text_field', 'text')
但这失败了:
dom_comments.create_index_field('some_int_field', 'int')
出现此错误:
JSONResponseError: JSONResponseError: 400 Bad Request
{u'RequestId': u'436bca63-11c3-11e4-be49-c9eca06e67ee', u'Error': {u'Message': u'missing value for long type', u'Code': u'MalformedInput', u'Type': u'Sender'}}
类dom_comments
是boto.cloudsearch2.domain.Domain