Class: Aws::SageMaker::Types::AddClusterNodeSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AddClusterNodeSpecification
- Includes:
- Aws::Structure
- Defined in:
- 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.
180 181 182 183 184 185 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 180 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.
180 181 182 183 184 185 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 180 class AddClusterNodeSpecification < Struct.new( :instance_group_name, :increment_target_count_by) SENSITIVE = [] include Aws::Structure end |