getWorkloadDeploymentPattern

Returns details for a given workload and deployment pattern, including the available specifications. You can use the ListWorkloads operation to discover the available workload names and the ListWorkloadDeploymentPatterns operation to discover the available deployment pattern names of a given workload.

Samples


fun main() { 
   //sampleStart 
   // Get details about a specific Workload deployment pattern
val resp = launchWizardClient.getWorkloadDeploymentPattern {
    workloadName = "MicrosoftActiveDirectory"
    deploymentPatternName = "adSelfManagedNewVpc"
} 
   //sampleEnd
}