Skip to content

Delete Connection

networkmanager_delete_connection R Documentation

Deletes the specified connection in your global network

Description

Deletes the specified connection in your global network.

Usage

networkmanager_delete_connection(GlobalNetworkId, ConnectionId)

Arguments

GlobalNetworkId

[required] The ID of the global network.

ConnectionId

[required] The ID of the connection.

Value

A list with the following syntax:

list(
  Connection = list(
    ConnectionId = "string",
    ConnectionArn = "string",
    GlobalNetworkId = "string",
    DeviceId = "string",
    ConnectedDeviceId = "string",
    LinkId = "string",
    ConnectedLinkId = "string",
    Description = "string",
    CreatedAt = as.POSIXct(
      "2015-01-01"
    ),
    State = "PENDING"|"AVAILABLE"|"DELETING"|"UPDATING",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Request syntax

svc$delete_connection(
  GlobalNetworkId = "string",
  ConnectionId = "string"
)