Class: Aws::SageMaker::Types::ClusterCapacityRequirements
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ClusterCapacityRequirements
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Defines the instance capacity requirements for an instance group, including configurations for both Spot and On-Demand capacity types.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#on_demand ⇒ Types::ClusterOnDemandOptions
Configuration options specific to On-Demand instances.
-
#spot ⇒ Types::ClusterSpotOptions
Configuration options specific to Spot instances.
Instance Attribute Details
#on_demand ⇒ Types::ClusterOnDemandOptions
Configuration options specific to On-Demand instances.
5271 5272 5273 5274 5275 5276 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5271 class ClusterCapacityRequirements < Struct.new( :spot, :on_demand) SENSITIVE = [] include Aws::Structure end |
#spot ⇒ Types::ClusterSpotOptions
Configuration options specific to Spot instances.
5271 5272 5273 5274 5275 5276 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5271 class ClusterCapacityRequirements < Struct.new( :spot, :on_demand) SENSITIVE = [] include Aws::Structure end |