Class: Aws::SageMaker::Types::ClusterCapacityRequirements
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ClusterCapacityRequirements
- Defined in:
- gems/aws-sdk-sagemaker/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.
5161 5162 5163 5164 5165 5166 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5161 class ClusterCapacityRequirements < Struct.new( :spot, :on_demand) SENSITIVE = [] include Aws::Structure end |
#spot ⇒ Types::ClusterSpotOptions
Configuration options specific to Spot instances.
5161 5162 5163 5164 5165 5166 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5161 class ClusterCapacityRequirements < Struct.new( :spot, :on_demand) SENSITIVE = [] include Aws::Structure end |