List Ultra Servers By Reserved Capacity
| sagemaker_list_ultra_servers_by_reserved_capacity | R Documentation |
Lists all UltraServers that are part of a specified reserved capacity¶
Description¶
Lists all UltraServers that are part of a specified reserved capacity.
Usage¶
sagemaker_list_ultra_servers_by_reserved_capacity(ReservedCapacityArn,
MaxResults, NextToken)
Arguments¶
ReservedCapacityArn |
[required] The ARN of the reserved capacity to list UltraServers for. |
MaxResults |
The maximum number of UltraServers to return in the response. The default value is 10. |
NextToken |
If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
UltraServers = list(
list(
UltraServerId = "string",
UltraServerType = "string",
AvailabilityZone = "string",
InstanceType = "ml.p4d.24xlarge"|"ml.p5.48xlarge"|"ml.p5e.48xlarge"|"ml.p5en.48xlarge"|"ml.trn1.32xlarge"|"ml.trn2.48xlarge"|"ml.p6-b200.48xlarge"|"ml.p4de.24xlarge"|"ml.p6e-gb200.36xlarge"|"ml.p5.4xlarge"|"ml.p6-b300.48xlarge",
TotalInstanceCount = 123,
ConfiguredSpareInstanceCount = 123,
AvailableInstanceCount = 123,
InUseInstanceCount = 123,
AvailableSpareInstanceCount = 123,
UnhealthyInstanceCount = 123,
HealthStatus = "OK"|"Impaired"|"Insufficient-Data"
)
)
)
Request syntax¶
svc$list_ultra_servers_by_reserved_capacity(
ReservedCapacityArn = "string",
MaxResults = 123,
NextToken = "string"
)