Learn R Programming

paws.security.identity (version 0.1.12)

fms_list_apps_lists: Returns an array of AppsListDataSummary objects

Description

Returns an array of AppsListDataSummary objects.

Usage

fms_list_apps_lists(DefaultLists, NextToken, MaxResults)

Value

A list with the following syntax:

list(
  AppsLists = list(
    list(
      ListArn = "string",
      ListId = "string",
      ListName = "string",
      AppsList = list(
        list(
          AppName = "string",
          Protocol = "string",
          Port = 123
        )
      )
    )
  ),
  NextToken = "string"
)

Arguments

DefaultLists

Specifies whether the lists to retrieve are default lists owned by AWS Firewall Manager.

NextToken

If you specify a value for MaxResults in your list request, and you have more objects than the maximum, AWS Firewall Manager returns this token in the response. For all but the first request, you provide the token returned by the prior request in the request parameters, to retrieve the next batch of objects.

MaxResults

[required] The maximum number of objects that you want AWS Firewall Manager to return for this request. If more objects are available, in the response, AWS Firewall Manager provides a NextToken value that you can use in a subsequent call to get the next batch of objects.

If you don't specify this, AWS Firewall Manager returns all available objects.

Request syntax

svc$list_apps_lists(
  DefaultLists = TRUE|FALSE,
  NextToken = "string",
  MaxResults = 123
)