Class: Aws::SageMaker::Types::ClusterEbsVolumeConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ClusterEbsVolumeConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Defines the configuration for attaching an additional Amazon Elastic Block Store (EBS) volume to each instance of the SageMaker HyperPod cluster instance group. To learn more, see [SageMaker HyperPod release notes: June 20, 2024].
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#volume_size_in_gb ⇒ Integer
The size in gigabytes (GB) of the additional EBS volume to be attached to the instances in the SageMaker HyperPod cluster instance group.
Instance Attribute Details
#volume_size_in_gb ⇒ Integer
The size in gigabytes (GB) of the additional EBS volume to be attached to the instances in the SageMaker HyperPod cluster instance group. The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to ‘/opt/sagemaker`.
4237 4238 4239 4240 4241 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 4237 class ClusterEbsVolumeConfig < Struct.new( :volume_size_in_gb) SENSITIVE = [] include Aws::Structure end |