AWS Doc SDK ExamplesWord
기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
an AWS SDK 또는 CLIDeleteCluster
와 함께 사용
다음 코드 예제는 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 개발자 안내서의 클러스터 삭제를 참조하세요.
-
API 세부 정보는 AWS CLI 명령 참조의 DeleteCluster
를 참조하세요.
-
- PowerShell
-
- for 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
-
- Rust용 SDK
-
참고
더 많은 on 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 세부 정보는 Word for Rust DeleteCluster
참조의 Word를 참조하세요. AWS SDK API
-
CreateService
DeleteService