Class: Aws::SageMaker::Types::InstanceGroup

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

Overview

Defines an instance group for heterogeneous cluster training. When requesting a training job using the [CreateTrainingJob] API, you can configure multiple instance groups .

[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#instance_countInteger

Specifies the number of instances of the instance group.

Returns:

  • (Integer)


23751
23752
23753
23754
23755
23756
23757
# File 'lib/aws-sdk-sagemaker/types.rb', line 23751

class InstanceGroup < Struct.new(
  :instance_type,
  :instance_count,
  :instance_group_name)
  SENSITIVE = []
  include Aws::Structure
end

#instance_group_nameString

Specifies the name of the instance group.

Returns:

  • (String)


23751
23752
23753
23754
23755
23756
23757
# File 'lib/aws-sdk-sagemaker/types.rb', line 23751

class InstanceGroup < Struct.new(
  :instance_type,
  :instance_count,
  :instance_group_name)
  SENSITIVE = []
  include Aws::Structure
end

#instance_typeString

Specifies the instance type of the instance group.

Returns:

  • (String)


23751
23752
23753
23754
23755
23756
23757
# File 'lib/aws-sdk-sagemaker/types.rb', line 23751

class InstanceGroup < Struct.new(
  :instance_type,
  :instance_count,
  :instance_group_name)
  SENSITIVE = []
  include Aws::Structure
end