Batch Get Custom Data Identifiers
macie2_batch_get_custom_data_identifiers | R Documentation |
Retrieves information about one or more custom data identifiers¶
Description¶
Retrieves information about one or more custom data identifiers.
Usage¶
macie2_batch_get_custom_data_identifiers(ids)
Arguments¶
ids |
An array of custom data identifier IDs, one for each custom data identifier to retrieve information about. |
Value¶
A list with the following syntax:
list(
customDataIdentifiers = list(
list(
arn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
deleted = TRUE|FALSE,
description = "string",
id = "string",
name = "string"
)
),
notFoundIdentifierIds = list(
"string"
)
)
Request syntax¶
svc$batch_get_custom_data_identifiers(
ids = list(
"string"
)
)