Skip to content

startExportAwsNativeEbsVolumeSnapshotJob

Start a job to export EBS Volume. The job creates a new EBS Volume with the same properties as that of the snapshot that is exported.

Arguments

Argument Type Description
input (required) StartExportAwsNativeEbsVolumeSnapshotJobInput! Input to trigger export AWS native EBS volume snapshot job.

Returns

AsyncJobStatus!

Sample

mutation StartExportAwsNativeEbsVolumeSnapshotJob($input: StartExportAwsNativeEbsVolumeSnapshotJobInput!) {
  startExportAwsNativeEbsVolumeSnapshotJob(input: $input) {
    error
    jobId
  }
}
{
  "input": {
    "availabilityZone": "example-string",
    "destinationAwsAccountRubrikId": "00000000-0000-0000-0000-000000000000",
    "destinationRegionNativeId": "AF_SOUTH_1",
    "iops": 0,
    "shouldCopyTags": true,
    "shouldReplaceAttached": true,
    "snapshotId": "00000000-0000-0000-0000-000000000000",
    "volumeName": "example-string",
    "volumeSize": 0,
    "volumeType": "GP2"
  }
}
{
  "data": {
    "startExportAwsNativeEbsVolumeSnapshotJob": {
      "error": "example-string",
      "jobId": "example-string"
    }
  }
}