startResourceScan
inline suspend fun CloudFormationClient.startResourceScan(crossinline block: StartResourceScanRequest.Builder.() -> Unit): StartResourceScanResponse
Starts a scan of the resources in this account in this Region. You can the status of a scan using the ListResourceScans
API action.
Samples
fun main() {
//sampleStart
// This example shows how to start a new resource scan
val resp = cloudFormationClient.startResourceScan()
//sampleEnd
}