Skip to content

Delete Subnet Cidr Reservation

ec2_delete_subnet_cidr_reservation R Documentation

Deletes a subnet CIDR reservation

Description

Deletes a subnet CIDR reservation.

Usage

ec2_delete_subnet_cidr_reservation(SubnetCidrReservationId, DryRun)

Arguments

SubnetCidrReservationId

[required] The ID of the subnet CIDR reservation.

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(
  DeletedSubnetCidrReservation = list(
    SubnetCidrReservationId = "string",
    SubnetId = "string",
    Cidr = "string",
    ReservationType = "prefix"|"explicit",
    OwnerId = "string",
    Description = "string",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Request syntax

svc$delete_subnet_cidr_reservation(
  SubnetCidrReservationId = "string",
  DryRun = TRUE|FALSE
)