Class: Aws::SageMaker::Types::AttachClusterNodeVolumeRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_arnString

The Amazon Resource Name (ARN) of your SageMaker HyperPod cluster containing the target node. Your cluster must use EKS as the orchestration and be in the ‘InService` state.

Returns:

  • (String)


1931
1932
1933
1934
1935
1936
1937
# File 'lib/aws-sdk-sagemaker/types.rb', line 1931

class AttachClusterNodeVolumeRequest < Struct.new(
  :cluster_arn,
  :node_id,
  :volume_id)
  SENSITIVE = []
  include Aws::Structure
end

#node_idString

The unique identifier of the cluster node to which you want to attach the volume. The node must belong to your specified HyperPod cluster and cannot be part of a Restricted Instance Group (RIG).

Returns:

  • (String)


1931
1932
1933
1934
1935
1936
1937
# File 'lib/aws-sdk-sagemaker/types.rb', line 1931

class AttachClusterNodeVolumeRequest < Struct.new(
  :cluster_arn,
  :node_id,
  :volume_id)
  SENSITIVE = []
  include Aws::Structure
end

#volume_idString

The unique identifier of your EBS volume to attach. The volume must be in the ‘available` state.

Returns:

  • (String)


1931
1932
1933
1934
1935
1936
1937
# File 'lib/aws-sdk-sagemaker/types.rb', line 1931

class AttachClusterNodeVolumeRequest < Struct.new(
  :cluster_arn,
  :node_id,
  :volume_id)
  SENSITIVE = []
  include Aws::Structure
end