Skip to content

isAwsNativeEbsVolumeSnapshotRestorable

Specified whether an EBS volume is restorable. For an EBS Volume to be restorable, the volume should be able to replace where attached.

Arguments

Argument Type Description
snapshotId (required) String! UUID of the snapshot.

Returns

IsVolumeSnapshotRestorableReply!

Sample

query IsAwsNativeEbsVolumeSnapshotRestorable($snapshotId: String!) {
  isAwsNativeEbsVolumeSnapshotRestorable(snapshotId: $snapshotId) {
    isRestorable
  }
}
{
  "snapshotId": "example-string"
}
{
  "data": {
    "isAwsNativeEbsVolumeSnapshotRestorable": {
      "isRestorable": true
    }
  }
}