Skip to content

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
)

Request syntax

svc$describe_resource_scan(
  ResourceScanId = "string"
)

Examples

## Not run: 
# This example describes a selected resource scan
svc$describe_resource_scan(
  ResourceScanId = "arn:aws:cloudformation:us-east-1:123456789012:resourceS..."
)

## End(Not run)