文件 AWS SDK AWS 範例 SDK 儲存庫中有更多可用的
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
UpdateService
搭配 a AWS SDK 或 CLI 使用
下列程式碼範例示範如何使用 UpdateService
。
- CLI
-
- AWS CLI
-
範例 1:變更服務中使用的任務定義
下列
update-service
範例會更新my-http-service
服務以使用amazon-ecs-sample
任務定義。aws ecs update-service --service
my-http-service
--task-definitionamazon-ecs-sample
範例 2:變更服務中的任務數量
下列
update-service
範例會將所需的服務任務計數更新my-http-service
為 3。aws ecs update-service --service
my-http-service
--desired-count3
如需詳細資訊,請參閱 Amazon ECS 開發人員指南中的更新服務。
-
如需 API 詳細資訊,請參閱 AWS CLI 命令參考中的 UpdateService
。
-
- Java
-
- Java 2.x 的 SDK
-
注意
還有更多 on GitHub。尋找完整範例,並了解如何在 AWS 程式碼範例儲存庫
中設定和執行。 import software.amazon.awssdk.regions.Region; import software.amazon.awssdk.services.ecs.EcsClient; import software.amazon.awssdk.services.ecs.model.EcsException; import software.amazon.awssdk.services.ecs.model.UpdateServiceRequest; /** * Before running this Java V2 code example, set up your development * environment, including your credentials. * * For more information, see the following documentation topic: * * https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/get-started.html */ public class UpdateService { public static void main(String[] args) { final String usage = """ Usage: <clusterName> <serviceArn>\s Where: clusterName - The cluster name. serviceArn - The service ARN value. """; if (args.length != 2) { System.out.println(usage); System.exit(1); } String clusterName = args[0]; String serviceArn = args[1]; Region region = Region.US_EAST_1; EcsClient ecsClient = EcsClient.builder() .region(region) .build(); updateSpecificService(ecsClient, clusterName, serviceArn); ecsClient.close(); } public static void updateSpecificService(EcsClient ecsClient, String clusterName, String serviceArn) { try { UpdateServiceRequest serviceRequest = UpdateServiceRequest.builder() .cluster(clusterName) .service(serviceArn) .desiredCount(0) .build(); ecsClient.updateService(serviceRequest); System.out.println("The service was modified"); } catch (EcsException e) { System.err.println(e.awsErrorDetails().errorMessage()); System.exit(1); } } }
-
如需 API 詳細資訊,請參閱 UpdateService AWS SDK for Java 2.x 參考中的 API。
-
- PowerShell
-
- for PowerShell 工具
-
範例 1:此範例命令會更新 `my-http-service` 服務,以使用 `amazon-ecs-sample` 任務定義。
Update-ECSService -Service my-http-service -TaskDefinition amazon-ecs-sample
範例 2:此範例命令會將所需的 `my-http-service` 服務計數更新為 10。
Update-ECSService -Service my-http-service -DesiredCount 10
-
如需 API 詳細資訊,請參閱 AWS Tools for PowerShell Cmdlet 參考中的 UpdateService。
-
UpdateClusterSettings
案例