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)


6078
6079
6080
6081
6082
6083
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6078

class ClusterCapacityRequirements < Struct.new(
  :spot,
  :on_demand)
  SENSITIVE = []
  include Aws::Structure
end

#spotTypes::ClusterSpotOptions

Configuration options specific to Spot instances.

Returns:

  • (Types::ClusterSpotOptions)


6078
6079
6080
6081
6082
6083
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6078

class ClusterCapacityRequirements < Struct.new(
  :spot,
  :on_demand)
  SENSITIVE = []
  include Aws::Structure
end