Class: Aws::SageMaker::Types::AddClusterNodeSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AddClusterNodeSpecification
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Specifies an instance group and the number of nodes to add to it.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#increment_target_count_by ⇒ Integer
The number of nodes to add to the specified instance group.
-
#instance_group_name ⇒ String
The name of the instance group to which you want to add nodes.
Instance Attribute Details
#increment_target_count_by ⇒ Integer
The number of nodes to add to the specified instance group. The total number of nodes across all instance groups in a single request cannot exceed 50.
153 154 155 156 157 158 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 153 class AddClusterNodeSpecification < Struct.new( :instance_group_name, :increment_target_count_by) SENSITIVE = [] include Aws::Structure end |
#instance_group_name ⇒ String
The name of the instance group to which you want to add nodes.
153 154 155 156 157 158 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 153 class AddClusterNodeSpecification < Struct.new( :instance_group_name, :increment_target_count_by) SENSITIVE = [] include Aws::Structure end |