Skip to content

Describe Byoip Cidrs

ec2_describe_byoip_cidrs R Documentation

Describes the IP address ranges that were provisioned for use with Amazon Web Services resources through through bring your own IP addresses (BYOIP)

Description

Describes the IP address ranges that were provisioned for use with Amazon Web Services resources through through bring your own IP addresses (BYOIP).

Usage

ec2_describe_byoip_cidrs(DryRun, MaxResults, NextToken)

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.

MaxResults

[required] The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

NextToken

The token for the next page of results.

Value

A list with the following syntax:

list(
  ByoipCidrs = list(
    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-advertising"|"pending-deprovision"|"pending-provision"|"pending-withdrawal"|"provisioned"|"provisioned-not-publicly-advertisable",
      NetworkBorderGroup = "string",
      AdvertisementType = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_byoip_cidrs(
  DryRun = TRUE|FALSE,
  MaxResults = 123,
  NextToken = "string"
)