Skip to content

Create Link

networkmanager_create_link R Documentation

Description

Creates a new link for a specified site.

Usage

networkmanager_create_link(GlobalNetworkId, Description, Type,
  Bandwidth, Provider, SiteId, Tags)

Arguments

GlobalNetworkId

[required] The ID of the global network.

Description

A description of the link.

Constraints: Maximum length of 256 characters.

Type

The type of the link.

Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^

Bandwidth

[required] The upload speed and download speed in Mbps.

Provider

The provider of the link.

Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^

SiteId

[required] The ID of the site.

Tags

The tags to apply to the resource during creation.

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$create_link(
  GlobalNetworkId = "string",
  Description = "string",
  Type = "string",
  Bandwidth = list(
    UploadSpeed = 123,
    DownloadSpeed = 123
  ),
  Provider = "string",
  SiteId = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)