Get Pitr Malware Scan Results
| backup_get_pitr_malware_scan_results | R Documentation |
Returns the malware scan results for a specified point in time within a continuous (point-in-time recovery) backup¶
Description¶
Returns the malware scan results for a specified point in time within a continuous (point-in-time recovery) backup.
Usage¶
backup_get_pitr_malware_scan_results(RecoveryPointArn, BackupVaultName,
ScanEndTime, MalwareScanner)
Arguments¶
RecoveryPointArn |
[required] An ARN that uniquely identifies the target recovery
point for scanning; for example, |
BackupVaultName |
[required] The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. |
ScanEndTime |
[required] The point in time within the continuous backup to examine for malware scan results. |
MalwareScanner |
[required] The scanning engine used for the corresponding scan
job. Currently only |
Value¶
A list with the following syntax:
list(
ScanEndTime = as.POSIXct(
"2015-01-01"
),
ScanResult = list(
ScanResultStatus = "NO_THREATS_FOUND"|"THREATS_FOUND"|"UNKNOWN"
),
LastScanJobTime = as.POSIXct(
"2015-01-01"
),
ScanId = "string",
ScanMode = "FULL_SCAN"|"INCREMENTAL_SCAN"
)
Request syntax¶
svc$get_pitr_malware_scan_results(
RecoveryPointArn = "string",
BackupVaultName = "string",
ScanEndTime = as.POSIXct(
"2015-01-01"
),
MalwareScanner = "GUARDDUTY"
)