Describe Hosts
ec2_describe_hosts | R Documentation |
Describes the specified Dedicated Hosts or all your Dedicated Hosts¶
Description¶
Describes the specified Dedicated Hosts or all your Dedicated Hosts.
The results describe only the Dedicated Hosts in the Region you're
currently using. All listed instances consume capacity on your Dedicated
Host. Dedicated Hosts that have recently been released are listed with
the state released
.
Usage¶
ec2_describe_hosts(HostIds, NextToken, MaxResults, Filter)
Arguments¶
HostIds |
The IDs of the Dedicated Hosts. The IDs are used for targeted instance launches. |
NextToken |
The token to use to retrieve the next page of results. |
MaxResults |
The maximum number of results to return for the request in a
single page. The remaining results can be seen by sending another
request with the returned You cannot specify this parameter and the host IDs parameter in the same request. |
Filter |
The filters.
|
Value¶
A list with the following syntax:
list(
Hosts = list(
list(
AutoPlacement = "on"|"off",
AvailabilityZone = "string",
AvailableCapacity = list(
AvailableInstanceCapacity = list(
list(
AvailableCapacity = 123,
InstanceType = "string",
TotalCapacity = 123
)
),
AvailableVCpus = 123
),
ClientToken = "string",
HostId = "string",
HostProperties = list(
Cores = 123,
InstanceType = "string",
InstanceFamily = "string",
Sockets = 123,
TotalVCpus = 123
),
HostReservationId = "string",
Instances = list(
list(
InstanceId = "string",
InstanceType = "string",
OwnerId = "string"
)
),
State = "available"|"under-assessment"|"permanent-failure"|"released"|"released-permanent-failure"|"pending",
AllocationTime = as.POSIXct(
"2015-01-01"
),
ReleaseTime = as.POSIXct(
"2015-01-01"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
),
HostRecovery = "on"|"off",
AllowsMultipleInstanceTypes = "on"|"off",
OwnerId = "string",
AvailabilityZoneId = "string",
MemberOfServiceLinkedResourceGroup = TRUE|FALSE,
OutpostArn = "string",
HostMaintenance = "on"|"off",
AssetId = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_hosts(
HostIds = list(
"string"
),
NextToken = "string",
MaxResults = 123,
Filter = list(
list(
Name = "string",
Values = list(
"string"
)
)
)
)