Skip to content

Put Apps List

fms_put_apps_list R Documentation

Creates an Firewall Manager applications list

Description

Creates an Firewall Manager applications list.

Usage

fms_put_apps_list(AppsList, TagList)

Arguments

AppsList

[required] The details of the Firewall Manager applications list to be created.

TagList

The tags associated with the resource.

Value

A list with the following syntax:

list(
  AppsList = list(
    ListId = "string",
    ListName = "string",
    ListUpdateToken = "string",
    CreateTime = as.POSIXct(
      "2015-01-01"
    ),
    LastUpdateTime = as.POSIXct(
      "2015-01-01"
    ),
    AppsList = list(
      list(
        AppName = "string",
        Protocol = "string",
        Port = 123
      )
    ),
    PreviousAppsList = list(
      list(
        list(
          AppName = "string",
          Protocol = "string",
          Port = 123
        )
      )
    )
  ),
  AppsListArn = "string"
)

Request syntax

svc$put_apps_list(
  AppsList = list(
    ListId = "string",
    ListName = "string",
    ListUpdateToken = "string",
    CreateTime = as.POSIXct(
      "2015-01-01"
    ),
    LastUpdateTime = as.POSIXct(
      "2015-01-01"
    ),
    AppsList = list(
      list(
        AppName = "string",
        Protocol = "string",
        Port = 123
      )
    ),
    PreviousAppsList = list(
      list(
        list(
          AppName = "string",
          Protocol = "string",
          Port = 123
        )
      )
    )
  ),
  TagList = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)