2017-02-08 2 views
1

Je rencontre une erreur lorsque j'essaie d'extraire une valeur des données renvoyées par boto3. Je suis en mesure d'imprimer la réponse complète (voir ci-dessous), mais je n'arrive pas à comprendre ce que je dois faire pour empêcher NetworkInterfaceId de répondre.Accès à la valeur de la réponse du dictionnaire boto3

Je l'utilise dans Python 2.7.5 parce que c'est ce que les instances qui ont besoin de l'exécuter ont par défaut. Je suis nouveau sur python alors j'espère que je vais manquer un peu, merci pour votre aide!

Erreur

TypeError: list indices must be integers, not str 

code

#!/usr/bin/python 
import boto3 

ec2 = boto3.client('ec2') 
response = ec2.describe_route_tables(
       RouteTableIds=[ 
        "rtb-4a1efc23", 
       ], 
       Filters=[ 
        { 
         'Name': 'route.destination-cidr-block', 
         'Values': [ 
          "172.29.0.0/16", 
         ] 
        }, 
       ] 
     ) 

#print(response) 
print(response["RouteTables"][0]["Routes"]["NetworkInterfaceId"]) 

Réponse

{'ResponseMetadata': {'RetryAttempts': 0, 'HTTPStatusCode': 200, 'RequestId': 'a8e7ba60-7599-450a-a708-8d90e429d59e', 'HTTPHeaders': {'transfer-encoding': 'chunked', 'vary': 'Accept-Encoding', 'server': 'AmazonEC2', 'content-type': 'text/xml;charset=UTF-8', 'date': 'Wed, 08 Feb 2017 11:51:47 GMT'}}, u'RouteTables': [{u'Associations': [{u'SubnetId': 'subnet-d7040aaf', u'RouteTableAssociationId': 'rtbassoc-867a94ef', u'Main': False, u'RouteTableId': 'rtb-4a1efc23'}, {u'SubnetId': 'subnet-e0fcd3aa', u'RouteTableAssociationId': 'rtbassoc-9f7a94f6', u'Main': False, u'RouteTableId': 'rtb-4a1efc23'}], u'RouteTableId': 'rtb-4a1efc23', u'VpcId': 'vpc-0d00e264', u'PropagatingVgws': [{u'GatewayId': 'vgw-fcf479cc'}], u'Tags': [{u'Value': 'pub', u'Key': 'Name'}], u'Routes': [{u'GatewayId': 'local', u'DestinationCidrBlock': '172.28.0.0/16', u'State': 'active', u'Origin': 'CreateRouteTable'}, {u'Origin': 'CreateRoute', u'DestinationCidrBlock': '172.29.0.0/16', u'InstanceId': 'i-0b84e502d9dc49443', u'NetworkInterfaceId': 'eni-08f55373', u'State': 'active', u'InstanceOwnerId': '444456106883'}, {u'Origin': 'CreateRoute', u'DestinationCidrBlock': '172.31.0.0/16', u'InstanceId': 'i-0b84e502d9dc49443', u'NetworkInterfaceId': 'eni-08f55373', u'State': 'active', u'InstanceOwnerId': '444456106883'}, {u'GatewayId': 'igw-7b03e012', u'DestinationCidrBlock': '0.0.0.0/0', u'State': 'active', u'Origin': 'CreateRoute'}, {u'GatewayId': 'vgw-fcf479cc', u'DestinationCidrBlock': '10.114.112.192/27', u'State': 'active', u'Origin': 'EnableVgwRoutePropagation'}, {u'GatewayId': 'vgw-fcf479cc', u'DestinationCidrBlock': '10.114.210.160/27', u'State': 'active', u'Origin': 'EnableVgwRoutePropagation'}, {u'GatewayId': 'vgw-fcf479cc', u'DestinationCidrBlock': '10.138.172.32/27', u'State': 'active', u'Origin': 'EnableVgwRoutePropagation'}, {u'GatewayId': 'vgw-fcf479cc', u'DestinationCidrBlock': '10.138.172.96/27', u'State': 'active', u'Origin': 'EnableVgwRoutePropagation'}, {u'GatewayId': 'vgw-fcf479cc', u'DestinationCidrBlock': '10.114.105.128/26', u'State': 'active', u'Origin': 'EnableVgwRoutePropagation'}, {u'GatewayId': 'vgw-fcf479cc', u'DestinationCidrBlock': '10.115.80.0/26', u'State': 'active', u'Origin': 'EnableVgwRoutePropagation'}, {u'GatewayId': 'vgw-fcf479cc', u'DestinationCidrBlock': '10.115.131.0/26', u'State': 'active', u'Origin': 'EnableVgwRoutePropagation'}, {u'GatewayId': 'vgw-fcf479cc', u'DestinationCidrBlock': '10.138.17.128/26', u'State': 'active', u'Origin': 'EnableVgwRoutePropagation'}, {u'GatewayId': 'vgw-fcf479cc', u'DestinationCidrBlock': '10.138.83.64/26', u'State': 'active', u'Origin': 'EnableVgwRoutePropagation'}, {u'GatewayId': 'vgw-fcf479cc', u'DestinationCidrBlock': '10.138.180.128/26', u'State': 'active', u'Origin': 'EnableVgwRoutePropagation'}, {u'GatewayId': 'vgw-fcf479cc', u'DestinationCidrBlock': '10.192.0.0/16', u'State': 'active', u'Origin': 'EnableVgwRoutePropagation'}]}]} 
+0

'response [" RouteTables "] [0] ['Routes']' est une liste. Si vous voulez récupérer 'NetworkInterfaceId', vous devriez essayer' response ["RouteTables"] [0] ['Routes'] [0] ['NetworkInterfaceId'] '. – anupsabraham

Répondre

1

De l'documentation, vous pouvez trouver que Routes est une liste. Si vous voulez aller chercher le NetworkInterfaceId, vous devez parcourir Routes.

for route in response["RouteTables"][0]['Routes']: 
    if 'NetworkInterfaceId' in route: 
     print route['NetworkInterfaceId'] 

Notez que NetworkInterfaceId peut ou peut ne pas être présent dans la réponse. J'ai compris cela à partir de la réponse que vous avez collée ici.