Skip to content

Move Address To Vpc

ec2_move_address_to_vpc R Documentation

This action is deprecated

Description

This action is deprecated.

Moves an Elastic IP address from the EC2-Classic platform to the EC2-VPC platform. The Elastic IP address must be allocated to your account for more than 24 hours, and it must not be associated with an instance. After the Elastic IP address is moved, it is no longer available for use in the EC2-Classic platform, unless you move it back using the restore_address_to_classic request. You cannot move an Elastic IP address that was originally allocated for use in the EC2-VPC platform to the EC2-Classic platform.

Usage

ec2_move_address_to_vpc(DryRun, PublicIp)

Arguments

DryRun

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

PublicIp

[required] The Elastic IP address.

Value

A list with the following syntax:

list(
  AllocationId = "string",
  Status = "MoveInProgress"|"InVpc"|"InClassic"
)

Request syntax

svc$move_address_to_vpc(
  DryRun = TRUE|FALSE,
  PublicIp = "string"
)

Examples

## Not run: 
# This example moves the specified Elastic IP address to the EC2-VPC
# platform.
svc$move_address_to_vpc(
  PublicIp = "54.123.4.56"
)

## End(Not run)