--- title: "Get-VBRRecoveryPointObjective" description: "Returns a schedule for a backup copy jobs that process backups stored on external repositories. Platform: VMware, Hyper-V Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License Returns the VBRRecoveryPointObjective" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrrecoverypointobjective.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Copy > Backup Copy Job of Amazon EC2 Instances > Get-VBRRecoveryPointObjective" dateModified: "2026-08-19" --- # Get-VBRRecoveryPointObjective ## Short Description Returns a schedule for a backup copy jobs that process backups stored on external repositories. **Platform**: VMware, Hyper-V **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRRecoveryPointObjective -Job [] ``` ## Detailed Description Returns the `VBRRecoveryPointObjective` object. This object contains schedule settings backup copy jobs that process backups stored on external repositories. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies the backup copy job. The cmdlet will return schedule settings for the specified job.

Accepts the CBackupJob object. To get this object, run the Get-VBRJob cmdlet.

CBackupJob

True

Named

True (ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the `VBRRecoveryPointObjective` object that contains settings for backup copy interval of backup copy jobs. ## Examples ::: example ### Getting Schedule Settings for Backup Copy Job This example shows how to get schedule settings for a backup copy job. ``` $job = Get-VBRJob -Name "EC2 BCJ 01" Get-VBRRecoveryPointObjective -Job $job ``` Perform the following steps: 1. Run the [`Get-VBRJob`](get-vbrjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$job` variable. 2. Run the `Get-VBRRecoveryPointObjective` cmdlet. Set the `$job` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRJob`](get-vbrjob.md)