paws.compute (version 0.1.0)

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 RestoreAddressToClassic 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.

Request syntax

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

Examples

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

Run the code above in your browser using DataLab