Class: Aws::SageMaker::Types::ClusterInstanceRequirements
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ClusterInstanceRequirements
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
The instance requirements for a flexible instance group. Use this to specify multiple instance types that the instance group can use. The order of instance types in the list determines the priority for instance provisioning.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_types ⇒ Array<String>
The list of instance types that the instance group can use.
Instance Attribute Details
#instance_types ⇒ Array<String>
The list of instance types that the instance group can use. The order of instance types determines the priority—HyperPod attempts to provision instances using the first instance type in the list and falls back to subsequent types if capacity is unavailable.
6689 6690 6691 6692 6693 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6689 class ClusterInstanceRequirements < Struct.new( :instance_types) SENSITIVE = [] include Aws::Structure end |