Class: Aws::SageMaker::Types::InstancePlacementConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

Configuration for how instances are placed and allocated within UltraServers. This is only applicable for UltraServer capacity.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enable_multiple_jobsBoolean

If set to true, allows multiple jobs to share the same UltraServer instances. If set to false, ensures this job's instances are placed on an UltraServer exclusively, with no other jobs sharing the same UltraServer. Default is false.

Returns:

  • (Boolean)


28578
28579
28580
28581
28582
28583
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 28578

class InstancePlacementConfig < Struct.new(
  :enable_multiple_jobs,
  :placement_specifications)
  SENSITIVE = []
  include Aws::Structure
end

#placement_specificationsArray<Types::PlacementSpecification>

A list of specifications for how instances should be placed on specific UltraServers. Maximum of 10 items is supported.

Returns:



28578
28579
28580
28581
28582
28583
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 28578

class InstancePlacementConfig < Struct.new(
  :enable_multiple_jobs,
  :placement_specifications)
  SENSITIVE = []
  include Aws::Structure
end