Skip to content

Move Byoip Cidr to Ipam

ec2_move_byoip_cidr_to_ipam R Documentation

Move a BYOIPv4 CIDR to IPAM from a public IPv4 pool

Description

Move a BYOIPv4 CIDR to IPAM from a public IPv4 pool.

If you already have a BYOIPv4 CIDR with Amazon Web Services, you can move the CIDR to IPAM from a public IPv4 pool. You cannot move an IPv6 CIDR to IPAM. If you are bringing a new IP address to Amazon Web Services for the first time, complete the steps in Tutorial: BYOIP address CIDRs to IPAM.

Usage

ec2_move_byoip_cidr_to_ipam(DryRun, Cidr, IpamPoolId, IpamPoolOwner)

Arguments

DryRun

A check for 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.

Cidr

[required] The BYOIP CIDR.

IpamPoolId

[required] The IPAM pool ID.

IpamPoolOwner

[required] The Amazon Web Services account ID of the owner of the IPAM pool.

Value

A list with the following syntax:

list(
  ByoipCidr = list(
    Cidr = "string",
    Description = "string",
    AsnAssociations = list(
      list(
        Asn = "string",
        Cidr = "string",
        StatusMessage = "string",
        State = "disassociated"|"failed-disassociation"|"failed-association"|"pending-disassociation"|"pending-association"|"associated"
      )
    ),
    StatusMessage = "string",
    State = "advertised"|"deprovisioned"|"failed-deprovision"|"failed-provision"|"pending-deprovision"|"pending-provision"|"provisioned"|"provisioned-not-publicly-advertisable",
    NetworkBorderGroup = "string"
  )
)

Request syntax

svc$move_byoip_cidr_to_ipam(
  DryRun = TRUE|FALSE,
  Cidr = "string",
  IpamPoolId = "string",
  IpamPoolOwner = "string"
)