AWS Doc SDK ExamplesWord
기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
CLI와 AllocateHosts
함께 사용
다음 코드 예제는 AllocateHosts
의 사용 방법을 보여 줍니다.
- CLI
-
- AWS CLI
-
예제 1: 전용 호스트 할당
다음
allocate-hosts
예제에서는m5.large
인스턴스를 시작할 수 있는eu-west-1a
가용 영역에 단일 전용 호스트를 할당합니다. 기본적으로 전용 호스트는 대상 인스턴스 시작만 허용하며 호스트 복구를 지원하지 않습니다.aws ec2 allocate-hosts \ --instance-type
m5.large
\ --availability-zoneeu-west-1a
\ --quantity1
출력:
{ "HostIds": [ "h-07879acf49EXAMPLE" ] }
예제 2: 자동 배치 및 호스트 복구가 활성화된 전용 호스트 할당
다음
allocate-hosts
예제에서는 자동 배치 및 호스트 복구가 활성화된eu-west-1a
가용 영역에 단일 전용 호스트를 할당합니다.aws ec2 allocate-hosts \ --instance-type
m5.large
\ --availability-zoneeu-west-1a
\ --auto-placementon
\ --host-recoveryon
\ --quantity1
출력:
{ "HostIds": [ "h-07879acf49EXAMPLE" ] }
예제 3: 태그가 있는 전용 호스트 할당
다음
allocate-hosts
예제에서는 단일 전용 호스트를 할당하고 이름이purpose
이고 값이 인 태그를 적용합니다production
.aws ec2 allocate-hosts \ --instance-type
m5.large
\ --availability-zoneeu-west-1a
\ --quantity1
\ --tag-specifications 'ResourceType=dedicated-host,Tags={Key=purpose,Value=production}
'출력:
{ "HostIds": [ "h-07879acf49EXAMPLE" ] }
자세한 내용은 Linux 인스턴스용 Amazon Elastic Compute Cloud 사용 설명서의 전용 호스트 할당을 참조하세요.
-
API 세부 정보는 AWS CLI 명령 참조의 AllocateHosts
를 참조하세요.
-
- PowerShell
-
- for PowerShell 도구
-
예제 1:이 예제에서는 지정된 인스턴스 유형 및 가용 영역에 대해 전용 호스트를 계정에 할당합니다.
New-EC2Host -AutoPlacement on -AvailabilityZone eu-west-1b -InstanceType m4.xlarge -Quantity 1
출력:
h-01e23f4cd567890f3
-
API 세부 정보는 AWS Tools for PowerShell Cmdlet 참조의 AllocateHosts를 참조하세요.
-