Describe Resource Scan
| cloudformation_describe_resource_scan | R Documentation | 
Describes details of a resource scan¶
Description¶
Describes details of a resource scan.
Usage¶
cloudformation_describe_resource_scan(ResourceScanId)
Arguments¶
ResourceScanId | 
[required] The Amazon Resource Name (ARN) of the resource scan.  | 
Value¶
A list with the following syntax:
list(
  ResourceScanId = "string",
  Status = "IN_PROGRESS"|"FAILED"|"COMPLETE"|"EXPIRED",
  StatusReason = "string",
  StartTime = as.POSIXct(
    "2015-01-01"
  ),
  EndTime = as.POSIXct(
    "2015-01-01"
  ),
  PercentageCompleted = 123.0,
  ResourceTypes = list(
    "string"
  ),
  ResourcesScanned = 123,
  ResourcesRead = 123,
  ScanFilters = list(
    list(
      Types = list(
        "string"
      )
    )
  )
)
Request syntax¶
svc$describe_resource_scan(
  ResourceScanId = "string"
)