Skip to content

Get Sensitive Data Occurrences

macie2_get_sensitive_data_occurrences R Documentation

Retrieves occurrences of sensitive data reported by a finding

Description

Retrieves occurrences of sensitive data reported by a finding.

Usage

macie2_get_sensitive_data_occurrences(findingId)

Arguments

findingId

[required] The unique identifier for the finding.

Value

A list with the following syntax:

list(
  error = "string",
  sensitiveDataOccurrences = list(
    list(
      list(
        value = "string"
      )
    )
  ),
  status = "SUCCESS"|"PROCESSING"|"ERROR"
)

Request syntax

svc$get_sensitive_data_occurrences(
  findingId = "string"
)