Skip to content

Get Protocols List

fms_get_protocols_list R Documentation

Returns information about the specified Firewall Manager protocols list

Description

Returns information about the specified Firewall Manager protocols list.

Usage

fms_get_protocols_list(ListId, DefaultList)

Arguments

ListId

[required] The ID of the Firewall Manager protocols list that you want the details for.

DefaultList

Specifies whether the list to retrieve is a default list owned by Firewall Manager.

Value

A list with the following syntax:

list(
  ProtocolsList = list(
    ListId = "string",
    ListName = "string",
    ListUpdateToken = "string",
    CreateTime = as.POSIXct(
      "2015-01-01"
    ),
    LastUpdateTime = as.POSIXct(
      "2015-01-01"
    ),
    ProtocolsList = list(
      "string"
    ),
    PreviousProtocolsList = list(
      list(
        "string"
      )
    )
  ),
  ProtocolsListArn = "string"
)

Request syntax

svc$get_protocols_list(
  ListId = "string",
  DefaultList = TRUE|FALSE
)