Skip to content

List Custom Data Identifiers

macie2_list_custom_data_identifiers R Documentation

Retrieves a subset of information about all the custom data identifiers for an account

Description

Retrieves a subset of information about all the custom data identifiers for an account.

Usage

macie2_list_custom_data_identifiers(maxResults, nextToken)

Arguments

maxResults

The maximum number of items to include in each page of the 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(
  items = list(
    list(
      arn = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      description = "string",
      id = "string",
      name = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

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