Class: Aws::SageMaker::Types::ClusterInstanceRequirementDetails

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

Overview

The instance requirement details for a flexible instance group, including the current and desired instance types.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#current_instance_typesArray<String>

The instance types currently in use by the instance group.

Returns:

  • (Array<String>)


5961
5962
5963
5964
5965
5966
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5961

class ClusterInstanceRequirementDetails < Struct.new(
  :current_instance_types,
  :desired_instance_types)
  SENSITIVE = []
  include Aws::Structure
end

#desired_instance_typesArray<String>

The desired instance types for the instance group, as specified in the most recent update request.

Returns:

  • (Array<String>)


5961
5962
5963
5964
5965
5966
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5961

class ClusterInstanceRequirementDetails < Struct.new(
  :current_instance_types,
  :desired_instance_types)
  SENSITIVE = []
  include Aws::Structure
end