AWS Doc SDK ExamplesWord
기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
CLI와 SetInstanceProtection
함께 사용
다음 코드 예제는 SetInstanceProtection
의 사용 방법을 보여 줍니다.
- CLI
-
- AWS CLI
-
예제 1: 인스턴스의 인스턴스 보호 설정을 활성화하는 방법
이 예제에서는 지정된 인스턴스에 대한 인스턴스 보호를 활성화합니다.
aws autoscaling set-instance-protection \ --instance-ids
i-061c63c5eb45f0416
\ --auto-scaling-group-namemy-asg
--protected-from-scale-in이 명령은 출력을 생성하지 않습니다.
예제 2: 인스턴스의 인스턴스 보호 설정을 비활성화하는 방법
이 예제에서는 지정된 인스턴스에 대한 인스턴스 보호를 비활성화합니다.
aws autoscaling set-instance-protection \ --instance-ids
i-061c63c5eb45f0416
\ --auto-scaling-group-namemy-asg
\ --no-protected-from-scale-in이 명령은 출력을 생성하지 않습니다.
-
API 세부 정보는 AWS CLI 명령 참조의 SetInstanceProtection
를 참조하세요.
-
- PowerShell
-
- for PowerShell 도구
-
예제 1: 이 예제에서는 지정된 인스턴스에 대한 인스턴스 보호를 활성화합니다.
Set-ASInstanceProtection -AutoScalingGroupName my-asg -InstanceId i-12345678 -ProtectedFromScaleIn $true
예제 2: 이 예제에서는 지정된 인스턴스에 대한 인스턴스 보호를 비활성화합니다.
Set-ASInstanceProtection -AutoScalingGroupName my-asg -InstanceId i-12345678 -ProtectedFromScaleIn $false
-
API 세부 정보는 AWS Tools for PowerShell Cmdlet 참조의 SetInstanceProtection를 참조하세요.
-
SetInstanceHealth
SuspendProcesses