Learn R Programming

paws.compute (version 0.1.12)

ec2_move_address_to_vpc: Moves an Elastic IP address from the EC2-Classic platform to the EC2-VPC platform

Description

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)

Value

A list with the following syntax:

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

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.

Request syntax

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

Examples

Run this code
if (FALSE) {
# This example moves the specified Elastic IP address to the EC2-VPC
# platform.
svc$move_address_to_vpc(
  PublicIp = "54.123.4.56"
)
}

Run the code above in your browser using DataLab