与 AWS SDK或DeleteCluster一起使用 CLI - AWS SDK代码示例

AWS 文档 AWS SDK示例 GitHub 存储库中还有更多SDK示例

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

与 AWS SDK或DeleteCluster一起使用 CLI

以下代码示例演示如何使用 DeleteCluster

CLI
AWS CLI

删除空集群

以下 delete-cluster 示例将删除指定的空集群。

aws ecs delete-cluster --cluster MyCluster

输出:

{ "cluster": { "clusterArn": "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster", "status": "INACTIVE", "clusterName": "MyCluster", "registeredContainerInstancesCount": 0, "pendingTasksCount": 0, "runningTasksCount": 0, "activeServicesCount": 0 "statistics": [], "tags": [] } }

有关更多信息,请参阅 Amazon ECS 开发者指南中的删除集群

PowerShell
用于 PowerShell

示例 1:此 cmdlet 会删除指定的ECS集群。必须先从该集群中取消注册所有容器实例,然后才能将其删除。

Remove-ECSCluster -Cluster "LAB-ECS"

输出:

Confirm Are you sure you want to perform this action? Performing the operation "Remove-ECSCluster (DeleteCluster)" on target "LAB-ECS". [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): Y
  • 有关API详细信息,请参阅 AWS Tools for PowerShell Cmdlet 参考DeleteCluster中的。

Rust
SDK对于 Rust
注意

还有更多相关信息 GitHub。查找完整示例,学习如何在 AWS 代码示例存储库中进行设置和运行。

async fn remove_cluster( client: &aws_sdk_ecs::Client, name: &str, ) -> Result<(), aws_sdk_ecs::Error> { let cluster_deleted = client.delete_cluster().cluster(name).send().await?; println!("cluster deleted: {:?}", cluster_deleted); Ok(()) }
  • 有关API详细信息,请参见DeleteCluster中的 Rust AWS SDK API 参考