Get Resource Profile
macie2_get_resource_profile | R Documentation |
Retrieves (queries) sensitive data discovery statistics and the sensitivity score for an S3 bucket¶
Description¶
Retrieves (queries) sensitive data discovery statistics and the sensitivity score for an S3 bucket.
Usage¶
Arguments¶
resourceArn
[required] The Amazon Resource Name (ARN) of the S3 bucket that the request applies to.
Value¶
A list with the following syntax:
list(
profileUpdatedAt = as.POSIXct(
"2015-01-01"
),
sensitivityScore = 123,
sensitivityScoreOverridden = TRUE|FALSE,
statistics = list(
totalBytesClassified = 123,
totalDetections = 123,
totalDetectionsSuppressed = 123,
totalItemsClassified = 123,
totalItemsSensitive = 123,
totalItemsSkipped = 123,
totalItemsSkippedInvalidEncryption = 123,
totalItemsSkippedInvalidKms = 123,
totalItemsSkippedPermissionDenied = 123
)
)