With PowerCLI, you can remove clusters from Software-Defined Data Centers (SDDCs) in your VMware Cloud on AWS organization.

Prerequisites

Verify that you are connected to VMware Cloud on AWS.

Procedure

  1. Create a variable with the SDDCs from which you want to remove clusters.
    $sddc = Get-VmcSddc 'Your SDDC'
  2. Create a variable with the clusters you want to remove.
    $cluster = Get-VmcSddcCluster -Name 'Your Cluster' -Sddc $sddc
  3. Remove the clusters.
    Remove-VmcSddcCluster -VmcSddcCluster $cluster