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_jobs ⇒ Boolean

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)


32813
32814
32815
32816
32817
32818
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32813

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

#placement_specifications ⇒ Array<Types::PlacementSpecification>

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

Returns:



32813
32814
32815
32816
32817
32818
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32813

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