Class: Aws::SageMaker::Types::CreateClusterRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::CreateClusterRequest
- Includes:
- Aws::Structure
- Defined in:
- 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.
-
#tags ⇒ Array<Types::Tag>
Custom tags for managing the SageMaker HyperPod cluster as an Amazon Web Services resource.
-
#vpc_config ⇒ Types::VpcConfig
Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to.
Instance Attribute Details
#cluster_name ⇒ String
The name for the new SageMaker HyperPod cluster.
5743 5744 5745 5746 5747 5748 5749 5750 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5743 class CreateClusterRequest < Struct.new( :cluster_name, :instance_groups, :vpc_config, :tags) SENSITIVE = [] include Aws::Structure end |
#instance_groups ⇒ Array<Types::ClusterInstanceGroupSpecification>
The instance groups to be created in the SageMaker HyperPod cluster.
5743 5744 5745 5746 5747 5748 5749 5750 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5743 class CreateClusterRequest < Struct.new( :cluster_name, :instance_groups, :vpc_config, :tags) 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].
[1]: docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html
5743 5744 5745 5746 5747 5748 5749 5750 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5743 class CreateClusterRequest < Struct.new( :cluster_name, :instance_groups, :vpc_config, :tags) SENSITIVE = [] include Aws::Structure end |
#vpc_config ⇒ Types::VpcConfig
Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to. You can control access to and from your resources by configuring a VPC. For more information, see [Give SageMaker Access to Resources in your Amazon VPC].
[1]: docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
5743 5744 5745 5746 5747 5748 5749 5750 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5743 class CreateClusterRequest < Struct.new( :cluster_name, :instance_groups, :vpc_config, :tags) SENSITIVE = [] include Aws::Structure end |