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`.
4183 4184 4185 4186 4187 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 4183 class ClusterEbsVolumeConfig < Struct.new( :volume_size_in_gb) SENSITIVE = [] include Aws::Structure end |