--- title: "New-VBRAmazonIpAddress" description: "Defines settings of a private IP address for Amazon EC2 instances. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet defines settings for a private IP address that will be used during restore to Amazon EC2." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbramazonipaddress.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Restore to Amazon EC2 > New-VBRAmazonIpAddress" dateModified: "2026-08-19" --- # New-VBRAmazonIpAddress ## Short Description Defines settings of a private IP address for Amazon EC2 instances. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRAmazonIpAddress -Type [-Ip ] [] ``` ## Detailed Description This cmdlet defines settings for a private IP address that will be used during restore to Amazon EC2. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Ip

Used if Type is set to Static.

Specifies a private static IP address.

String

False

Named

False

Type

Specifies type of a private IP address. You can set the following types:

  • Dynamic: use this option to define a private dynamic IP address.
  • Static: use this option to define a private static IP address.

VBRAmazonIpAddressType

True

Named

False

`` 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 [`VBRAmazonIpAddress`](vbramazonipaddress.md) ## Examples ::: example ### Defining Static IP Address This command defines a static IP address. ``` New-VBRAmazonIpAddress -Type Static -Ip "172.172.72.72" ``` :::