Skip to content

Delete Link

networkmanager_delete_link R Documentation

Description

Deletes an existing link. You must first disassociate the link from any devices and customer gateways.

Usage

networkmanager_delete_link(GlobalNetworkId, LinkId)

Arguments

GlobalNetworkId

[required] The ID of the global network.

LinkId

[required] The ID of the link.

Value

A list with the following syntax:

list(
  Link = list(
    LinkId = "string",
    LinkArn = "string",
    GlobalNetworkId = "string",
    SiteId = "string",
    Description = "string",
    Type = "string",
    Bandwidth = list(
      UploadSpeed = 123,
      DownloadSpeed = 123
    ),
    Provider = "string",
    CreatedAt = as.POSIXct(
      "2015-01-01"
    ),
    State = "PENDING"|"AVAILABLE"|"DELETING"|"UPDATING",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Request syntax

svc$delete_link(
  GlobalNetworkId = "string",
  LinkId = "string"
)