首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >获取Dict响应- Boto3

获取Dict响应- Boto3
EN

Stack Overflow用户
提问于 2017-06-20 22:28:51
回答 1查看 907关注 0票数 2

我试图获得以下输出的SnapshotId,但没有成功。我可以得到AMI描述的值和AMI_ID的值。

代码语言:javascript
运行
复制
{
    'Images': [
        {
            'Architecture': 'i386'|'x86_64',
            'CreationDate': 'string',
            'ImageId': 'string',
            'ImageLocation': 'string',
            'ImageType': 'machine'|'kernel'|'ramdisk',
            'Public': True|False,
            'KernelId': 'string',
            'OwnerId': 'string',
            'Platform': 'Windows',
            'ProductCodes': [
                {
                    'ProductCodeId': 'string',
                    'ProductCodeType': 'devpay'|'marketplace'
                },
            ],
            'RamdiskId': 'string',
            'State': 'pending'|'available'|'invalid'|'deregistered'|'transient'|'failed'|'error',
            'BlockDeviceMappings': [
                {
                    'DeviceName': 'string',
                    'VirtualName': 'string',
                    'Ebs': {
                        'Encrypted': True|False,
                        'DeleteOnTermination': True|False,
                        'Iops': 123,
                        'SnapshotId': 'string',
                        'VolumeSize': 123,
                        'VolumeType': 'standard'|'io1'|'gp2'|'sc1'|'st1'
                    },
                    'NoDevice': 'string'
                },
            ],
            'Description': 'string',
            'EnaSupport': True|False,
            'Hypervisor': 'ovm'|'xen',
            'ImageOwnerAlias': 'string',
            'Name': 'string',
            'RootDeviceName': 'string',
            'RootDeviceType': 'ebs'|'instance-store',
            'SriovNetSupport': 'string',
            'StateReason': {
                'Code': 'string',
                'Message': 'string'
            },
            'Tags': [
                {
                    'Key': 'string',
                    'Value': 'string'
                },
            ],
            'VirtualizationType': 'hvm'|'paravirtual'
        },
    ]
}

使用以下代码:

代码语言:javascript
运行
复制
import boto3

client = boto3.client('ec2', region_name='us-east-1')

def verifica_imagem(imagem):
    amiresponse = client.describe_images(
        Filters=[
            {
                'Name': 'description',
                'Values': [
                    imagem,
                ]
            },
        ],
        DryRun=False
    )

    try:
        data = str(amiresponse['Images'][0]['Description'])
        ami_id = str(amiresponse['Images'][0]['ImageId'])
        snapshot_id = str(amiresponse['Images'][0]['SnapshotId'])
    except:
        print "AMI not exists! Exiting...."
        return 1

verifica_imagem('IMAGE_XXXXXXX')

我不知道如何使用SnapshotId的密钥。我试过:

snapshot_id = str(amiresponse['Images']['BlockDeviceMappings']['Ebs'][0]['SnapshotId']),但也不起作用。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2017-06-21 04:56:43

ImagesBlockDeviceMappings的值是arrayEbsdict

使用它获取SnapshotId的值,

代码语言:javascript
运行
复制
snapshot_id = amiresponse['Images'][0]['BlockDeviceMappings'][0]['Ebs']['SnapshotId']
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/44663997

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档