Class: Aws::SageMaker::Types::InstanceGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::InstanceGroup
- Defined in:
- gems/aws-sdk-sagemaker/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 .
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_count ⇒ Integer
Specifies the number of instances of the instance group.
-
#instance_group_name ⇒ String
Specifies the name of the instance group.
-
#instance_type ⇒ String
Specifies the instance type of the instance group.
Instance Attribute Details
#instance_count ⇒ Integer
Specifies the number of instances of the instance group.
26296 26297 26298 26299 26300 26301 26302 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 26296 class InstanceGroup < Struct.new( :instance_type, :instance_count, :instance_group_name) SENSITIVE = [] include Aws::Structure end |
#instance_group_name ⇒ String
Specifies the name of the instance group.
26296 26297 26298 26299 26300 26301 26302 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 26296 class InstanceGroup < Struct.new( :instance_type, :instance_count, :instance_group_name) SENSITIVE = [] include Aws::Structure end |
#instance_type ⇒ String
Specifies the instance type of the instance group.
26296 26297 26298 26299 26300 26301 26302 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 26296 class InstanceGroup < Struct.new( :instance_type, :instance_count, :instance_group_name) SENSITIVE = [] include Aws::Structure end |