Class: Aws::SageMaker::Types::ClusterCapacityRequirements

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#on_demandTypes::ClusterOnDemandOptions

Configuration options specific to On-Demand instances.

Returns:

  • (Types::ClusterOnDemandOptions)


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

#spotTypes::ClusterSpotOptions

Configuration options specific to Spot instances.

Returns:

  • (Types::ClusterSpotOptions)


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