Learn R Programming

paws.compute (version 0.1.12)

ec2_withdraw_byoip_cidr: 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 AWS because of BGP propagation delays.

Usage

ec2_withdraw_byoip_cidr(Cidr, DryRun)

Value

A list with the following syntax:

list(
  ByoipCidr = list(
    Cidr = "string",
    Description = "string",
    StatusMessage = "string",
    State = "advertised"|"deprovisioned"|"failed-deprovision"|"failed-provision"|"pending-deprovision"|"pending-provision"|"provisioned"|"provisioned-not-publicly-advertisable"
  )
)

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.

Request syntax

svc$withdraw_byoip_cidr(
  Cidr = "string",
  DryRun = TRUE|FALSE
)