CLI와 ExitStandby 함께 사용 - AWS SDK 코드 예제

AWS Doc SDK ExamplesWord AWS SDK 리포지토리에는 더 많은 GitHub 예제가 있습니다.

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

CLI와 ExitStandby 함께 사용

다음 코드 예제는 ExitStandby의 사용 방법을 보여 줍니다.

CLI
AWS CLI

인스턴스를 대기 모드에서 해제하려면

이 예제에서는 지정된 인스턴스를 대기 모드에서 해제합니다.

aws autoscaling exit-standby \ --instance-ids i-061c63c5eb45f0416 \ --auto-scaling-group-name my-asg

출력:

{ "Activities": [ { "ActivityId": "142928e1-a2dc-453a-9b24-b85ad6735928", "AutoScalingGroupName": "my-asg", "Description": "Moving EC2 instance out of Standby: i-061c63c5eb45f0416", "Cause": "At 2020-10-31T20:32:50Z instance i-061c63c5eb45f0416 was moved out of standby in response to a user request, increasing the capacity from 0 to 1.", "StartTime": "2020-10-31T20:32:50.222Z", "StatusCode": "PreInService", "Progress": 30, "Details": "{\"Subnet ID\":\"subnet-6194ea3b\",\"Availability Zone\":\"us-west-2c\"}" } ] }

자세한 내용은 Amazon Word Auto Scaling 사용 설명서의 Auto Scaling 그룹에서 인스턴스 임시 제거를 참조하세요. EC2 Auto Scaling

  • API 세부 정보는 AWS CLI 명령 참조ExitStandby를 참조하세요.

PowerShell
for PowerShell 도구

예제 1: 이 예제에서는 지정된 인스턴스를 대기 모드에서 해제합니다.

Exit-ASStandby -InstanceId i-93633f9b -AutoScalingGroupName my-asg

출력:

ActivityId : 1833d3e8-e32f-454e-b731-0670ad4c6934 AutoScalingGroupName : my-asg Cause : At 2015-11-22T15:51:21Z instance i-95b8484f was moved out of standby in response to a user request, increasing the capacity from 1 to 2. Description : Moving EC2 instance out of Standby: i-95b8484f Details : {"Availability Zone":"us-west-2b","Subnet ID":"subnet-5264e837"} EndTime : Progress : 30 StartTime : 11/22/2015 7:51:21 AM StatusCode : PreInService StatusMessage :
  • API 세부 정보는 AWS Tools for PowerShell Cmdlet 참조ExitStandby를 참조하세요.