我试图得到VersionLabel的值,也就是php-v1,但是我的代码不能正常工作,我不知道我做错了什么。
请告诉我出了什么问题,我如何解析php-v1
这是我的错误信息。
TypeError: the JSON object must be str, not 'dict'
这是我的密码。

#!/usr/bin/env python3

import boto3
import json

def get_label():
   try:
      env_name = 'my-env'
      eb = boto3.client('elasticbeanstalk')
      response = eb.describe_instances_health(
         EnvironmentName=env_name,
         AttributeNames=[
            'Deployment'
         ]
      )
      #print(response)
      data = json.loads(response)
      print(data['VersionLabel'])
   except:
      raise

if __name__ == '__main__':
   get_label()

这是我在调用print(response)时从aws得到的响应。
{
   'InstanceHealthList':[
      {
         'InstanceId':'i-12345678',
         'Deployment':{
            'DeploymentId':2,
            'DeploymentTime':datetime.datetime(2016,
            9,
            29,
            4,
            29,
            26,
            tzinfo=tzutc()),
            'Status':'Deployed',
            'VersionLabel':'php-v1'
         }
      }
   ],
   'ResponseMetadata':{
      'HTTPStatusCode':200,
      'RequestId':'12345678-1234-1234-1234-123456789012',
      'RetryAttempts':0,
      'HTTPHeaders':{
         'content-length':'665',
         'content-type':'text/xml',
         'date':'Sat, 01 Oct 2016 11:04:56 GMT',
         'x-amzn-requestid':'12345678-1234-1234-1234-123456789012'
      }
   }
}

非常感谢!

最佳答案

根据boto3 docs[http://boto3.readthedocs.io/en/latest/reference/services/elasticbeanstalk.html?highlight=describe_instances_health#ElasticBeanstalk.Client.describe_instances_health],descripe_instances_health方法返回dict而不是json。因此,您不需要进行转换。
要从数据中获取versionLabel,请使用-

data ['InstanceHealthList'][0]['Deployment']['VersionLabel']

编辑:请注意,上面从可能的多个实例中获取第一个实例的versionLabel。如果您有多个实例,并且它们碰巧有不同的versionLabel值,那么您需要额外的逻辑来获取所需的逻辑。

08-25 01:05