

本文属于机器翻译版本。若本译文内容与英语原文存在差异，则一律以英文原文为准。

# 查看使用快速快照还原还原的 Amazon EBS 卷
<a name="view-fast-restored-volumes"></a>

当您在可用区中，从已启用快速快照还原的快照创建卷时，将使用快速快照还原进行还原。

------
#### [ AWS CLI ]

**查看从已启用快速快照还原的快照创建的卷**  
使用 [describe-volumes](https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-volumes.html) 命令。

```
aws ec2 describe-volumes --filters Name=fast-restored,Values=true
```

下面是示例输出。

```
{
    "Volumes": [
        {
            "Attachments": [],
            "AvailabilityZone": "us-east-2a",
            "CreateTime": "2020-01-26T00:34:11.093Z",
            "Encrypted": true,
            "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/8c5b2c63-b9bc-45a3-a87a-5513e232e843",
            "Size": 20,
            "SnapshotId": "snap-0abcdef1234567890",
            "State": "available",
            "VolumeId": "vol-01234567890abcdef",
            "Iops": 100,
            "VolumeType": "gp2",
            "FastRestored": true
        }
    ]
}
```

------
#### [ PowerShell ]

**查看从已启用快速快照还原的快照创建的卷**  
使用 [Get-EC2Volume](https://docs.aws.amazon.com/powershell/latest/reference/items/Get-EC2Volume.html) cmdlet。

```
Get-EC2Volume -Filter @{Name="fast-restored"; Values="true"}
```

------