Class: Aws::SageMaker::Types::CreateClusterRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::CreateClusterRequest
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_name ⇒ String
The name for the new SageMaker HyperPod cluster.
-
#instance_groups ⇒ Array<Types::ClusterInstanceGroupSpecification>
The instance groups to be created in the SageMaker HyperPod cluster.
-
#node_recovery ⇒ String
The node recovery mode for the SageMaker HyperPod cluster.
-
#orchestrator ⇒ Types::ClusterOrchestrator
The type of orchestrator to use for the SageMaker HyperPod cluster.
-
#tags ⇒ Array<Types::Tag>
Custom tags for managing the SageMaker HyperPod cluster as an Amazon Web Services resource.
-
#vpc_config ⇒ Types::VpcConfig
Specifies the Amazon Virtual Private Cloud (VPC) that is associated with the Amazon SageMaker HyperPod cluster.
Instance Attribute Details
#cluster_name ⇒ String
The name for the new SageMaker HyperPod cluster.
6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6499 class CreateClusterRequest < Struct.new( :cluster_name, :instance_groups, :vpc_config, :tags, :orchestrator, :node_recovery) SENSITIVE = [] include Aws::Structure end |
#instance_groups ⇒ Array<Types::ClusterInstanceGroupSpecification>
The instance groups to be created in the SageMaker HyperPod cluster.
6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6499 class CreateClusterRequest < Struct.new( :cluster_name, :instance_groups, :vpc_config, :tags, :orchestrator, :node_recovery) SENSITIVE = [] include Aws::Structure end |
#node_recovery ⇒ String
The node recovery mode for the SageMaker HyperPod cluster. When set
to Automatic
, SageMaker HyperPod will automatically reboot or
replace faulty nodes when issues are detected. When set to None
,
cluster administrators will need to manually manage any faulty
cluster instances.
6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6499 class CreateClusterRequest < Struct.new( :cluster_name, :instance_groups, :vpc_config, :tags, :orchestrator, :node_recovery) SENSITIVE = [] include Aws::Structure end |
#orchestrator ⇒ Types::ClusterOrchestrator
The type of orchestrator to use for the SageMaker HyperPod cluster.
Currently, the only supported value is "eks"
, which is to use an
Amazon Elastic Kubernetes Service (EKS) cluster as the orchestrator.
6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6499 class CreateClusterRequest < Struct.new( :cluster_name, :instance_groups, :vpc_config, :tags, :orchestrator, :node_recovery) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
Custom tags for managing the SageMaker HyperPod cluster as an Amazon Web Services resource. You can add tags to your cluster in the same way you add them in other Amazon Web Services services that support tagging. To learn more about tagging Amazon Web Services resources in general, see Tagging Amazon Web Services Resources User Guide.
6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6499 class CreateClusterRequest < Struct.new( :cluster_name, :instance_groups, :vpc_config, :tags, :orchestrator, :node_recovery) SENSITIVE = [] include Aws::Structure end |
#vpc_config ⇒ Types::VpcConfig
Specifies the Amazon Virtual Private Cloud (VPC) that is associated with the Amazon SageMaker HyperPod cluster. You can control access to and from your resources by configuring your VPC. For more information, see Give SageMaker access to resources in your Amazon VPC.
Slurm-orchestrated clusters automatically configure nodes with dual IPv6 and IPv4 addresses, allowing immediate IPv6 network communications.
In Amazon EKS-orchestrated clusters, nodes receive dual-stack addressing, but pods can only use IPv6 when the Amazon EKS cluster is explicitly IPv6-enabled. For information about deploying an IPv6 Amazon EKS cluster, see Amazon EKS IPv6 Cluster Deployment.
Additional resources for IPv6 configuration:
For information about adding IPv6 support to your VPC, see to IPv6 Support for VPC.
For information about creating a new IPv6-compatible VPC, see Amazon VPC Creation Guide.
To configure SageMaker HyperPod with a custom Amazon VPC, see Custom Amazon VPC Setup for SageMaker HyperPod.
6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6499 class CreateClusterRequest < Struct.new( :cluster_name, :instance_groups, :vpc_config, :tags, :orchestrator, :node_recovery) SENSITIVE = [] include Aws::Structure end |