Skip to content

List Allow Lists

macie2_list_allow_lists R Documentation

Retrieves a subset of information about all the allow lists for an account

Description

Retrieves a subset of information about all the allow lists for an account.

Usage

macie2_list_allow_lists(maxResults, nextToken)

Arguments

maxResults

The maximum number of items to include in each page of a paginated response.

nextToken

The nextToken string that specifies which page of results to return in a paginated response.

Value

A list with the following syntax:

list(
  allowLists = list(
    list(
      arn = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      description = "string",
      id = "string",
      name = "string",
      updatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_allow_lists(
  maxResults = 123,
  nextToken = "string"
)