Learn R Programming

paws.networking (version 0.1.11)

directconnect_describe_interconnects: Lists the interconnects owned by the AWS account or only the specified interconnect

Description

Lists the interconnects owned by the AWS account or only the specified interconnect.

Usage

directconnect_describe_interconnects(interconnectId)

Arguments

interconnectId

The ID of the interconnect.

Value

A list with the following syntax:

list(
  interconnects = list(
    list(
      interconnectId = "string",
      interconnectName = "string",
      interconnectState = "requested"|"pending"|"available"|"down"|"deleting"|"deleted"|"unknown",
      region = "string",
      location = "string",
      bandwidth = "string",
      loaIssueTime = as.POSIXct(
        "2015-01-01"
      ),
      lagId = "string",
      awsDevice = "string",
      jumboFrameCapable = TRUE|FALSE,
      awsDeviceV2 = "string",
      hasLogicalRedundancy = "unknown"|"yes"|"no",
      tags = list(
        list(
          key = "string",
          value = "string"
        )
      ),
      providerName = "string"
    )
  )
)

Request syntax

svc$describe_interconnects(
  interconnectId = "string"
)