listWorkloads
inline suspend fun LaunchWizardClient.listWorkloads(crossinline block: ListWorkloadsRequest.Builder.() -> Unit): ListWorkloadsResponse
Lists the available workload names. You can use the ListWorkloadDeploymentPatterns operation to discover the available deployment patterns for a given workload.
Samples
fun main() {
//sampleStart
// List all available workloads supported by AWS Launch Wizard.
val resp = launchWizardClient.listWorkloads()
//sampleEnd
}