Skip to content

Withdraw Byoip Cidr

ec2_withdraw_byoip_cidr R Documentation

Stops advertising an address range that is provisioned as an address pool

Description

Stops advertising an address range that is provisioned as an address pool.

You can perform this operation at most once every 10 seconds, even if you specify different address ranges each time.

It can take a few minutes before traffic to the specified addresses stops routing to Amazon Web Services because of BGP propagation delays.

Usage

ec2_withdraw_byoip_cidr(Cidr, DryRun)

Arguments

Cidr

[required] The address range, in CIDR notation.

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.

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$withdraw_byoip_cidr(
  Cidr = "string",
  DryRun = TRUE|FALSE
)