--- title: "Get-VBOAmazonVPC" description: "This cmdlet returns the VBOAmazonVPC object." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/get-vboamazonvpc.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Backup Infrastructure > Archiver Appliances > Get-VBOAmazonVPC" dateModified: "2026-08-21" --- # Get-VBOAmazonVPC ## Short Description Returns the Amazon Virtual Private Cloud (Amazon VPC). ## Syntax ``` Get-VBOAmazonVPC -AmazonS3ConnectionSettings [-Name ] -RegionId [] ``` ## Detailed Description This cmdlet returns the [`VBOAmazonVPC`](vboamazonvpc.md) object. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

AmazonS3ConnectionSettings

Specifies an active session with Amazon S3 object storage repository.

Accepts the VBOAmazonS3ConnectionSettings object.

To create this object, run the New-VBOAmazonS3ConnectionSettings cmdlet.

VBOAmazonS3ConnectionSettings

True

Named

False

Name

Specifies a name of the Amazon VPC. The cmdlet will return the Amazon VPC with this name.

String

False

Named

False

RegionId

Specifies a region of Amazon S3 object storage repository.

For example, us-east-1.

For more information, see this Amazon article.

String

True

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Learn. ## Output Object The cmdlet returns the [`VBOAmazonVPC`](vboamazonvpc.md) object. ## Examples ::: example ### Getting Amazon VPC This example shows how to get the Amazon Virtual Private Cloud (Amazon VPC). ``` $S3account = Get-VBOAmazonS3Account -AccessKey "?Iqws8NewidZydk" $S3connection = New-VBOAmazonS3ConnectionSettings -Account $S3account -RegionType Global Get-VBOAmazonVPC -AmazonS3ConnectionSettings $S3connection -RegionId eu-central-1 -Name "VPCName" ``` Perform the following steps: 1. Run the [`Get-VBOAmazonS3Account`](get-vboamazons3account.md) cmdlet. Specify the `AccessKey` parameter value. Save the result to the `$S3account` variable. 2. Run the [`New-VBOAmazonS3ConnectionSettings`](new-vboamazons3connectionsettings.md) cmdlet. Set the `$S3account` variable as the `Account` parameter value. Specify the `RegionType` parameter value. Save the result to the `$S3connection` variable. 3. Run the `Get-VBOAmazonVPC` cmdlet. Specify the following settings: - Set the `$S3connection` variable as the `AmazonS3ConnectionSettings` parameter value. - Specify the `RegionId` parameter value. - Specify the `Name` parameter value. ::: ## Related Commands - [`New-VBOAmazonS3ConnectionSettings`](new-vboamazons3connectionsettings.md) - [`Get-VBOAmazonS3Account`](get-vboamazons3account.md)