pub struct CreateClusterFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to CreateCluster.
Creates a SageMaker HyperPod cluster. SageMaker HyperPod is a capability of SageMaker for creating and managing persistent clusters for developing large machine learning models, such as large language models (LLMs) and diffusion models. To learn more, see Amazon SageMaker HyperPod in the Amazon SageMaker Developer Guide.
Implementations§
source§impl CreateClusterFluentBuilder
impl CreateClusterFluentBuilder
sourcepub fn as_input(&self) -> &CreateClusterInputBuilder
pub fn as_input(&self) -> &CreateClusterInputBuilder
Access the CreateCluster as a reference.
sourcepub async fn send(
self,
) -> Result<CreateClusterOutput, SdkError<CreateClusterError, HttpResponse>>
pub async fn send( self, ) -> Result<CreateClusterOutput, SdkError<CreateClusterError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<CreateClusterOutput, CreateClusterError, Self>
pub fn customize( self, ) -> CustomizableOperation<CreateClusterOutput, CreateClusterError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn cluster_name(self, input: impl Into<String>) -> Self
pub fn cluster_name(self, input: impl Into<String>) -> Self
The name for the new SageMaker HyperPod cluster.
sourcepub fn set_cluster_name(self, input: Option<String>) -> Self
pub fn set_cluster_name(self, input: Option<String>) -> Self
The name for the new SageMaker HyperPod cluster.
sourcepub fn get_cluster_name(&self) -> &Option<String>
pub fn get_cluster_name(&self) -> &Option<String>
The name for the new SageMaker HyperPod cluster.
sourcepub fn instance_groups(self, input: ClusterInstanceGroupSpecification) -> Self
pub fn instance_groups(self, input: ClusterInstanceGroupSpecification) -> Self
Appends an item to InstanceGroups.
To override the contents of this collection use set_instance_groups.
The instance groups to be created in the SageMaker HyperPod cluster.
sourcepub fn set_instance_groups(
self,
input: Option<Vec<ClusterInstanceGroupSpecification>>,
) -> Self
pub fn set_instance_groups( self, input: Option<Vec<ClusterInstanceGroupSpecification>>, ) -> Self
The instance groups to be created in the SageMaker HyperPod cluster.
sourcepub fn get_instance_groups(
&self,
) -> &Option<Vec<ClusterInstanceGroupSpecification>>
pub fn get_instance_groups( &self, ) -> &Option<Vec<ClusterInstanceGroupSpecification>>
The instance groups to be created in the SageMaker HyperPod cluster.
sourcepub fn vpc_config(self, input: VpcConfig) -> Self
pub fn vpc_config(self, input: VpcConfig) -> Self
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.
sourcepub fn set_vpc_config(self, input: Option<VpcConfig>) -> Self
pub fn set_vpc_config(self, input: Option<VpcConfig>) -> Self
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.
sourcepub fn get_vpc_config(&self) -> &Option<VpcConfig>
pub fn get_vpc_config(&self) -> &Option<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.
Appends an item to Tags.
To override the contents of this collection use set_tags.
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.
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.
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.
sourcepub fn orchestrator(self, input: ClusterOrchestrator) -> Self
pub fn orchestrator(self, input: ClusterOrchestrator) -> Self
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.
sourcepub fn set_orchestrator(self, input: Option<ClusterOrchestrator>) -> Self
pub fn set_orchestrator(self, input: Option<ClusterOrchestrator>) -> Self
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.
sourcepub fn get_orchestrator(&self) -> &Option<ClusterOrchestrator>
pub fn get_orchestrator(&self) -> &Option<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.
sourcepub fn node_recovery(self, input: ClusterNodeRecovery) -> Self
pub fn node_recovery(self, input: ClusterNodeRecovery) -> Self
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.
sourcepub fn set_node_recovery(self, input: Option<ClusterNodeRecovery>) -> Self
pub fn set_node_recovery(self, input: Option<ClusterNodeRecovery>) -> Self
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.
sourcepub fn get_node_recovery(&self) -> &Option<ClusterNodeRecovery>
pub fn get_node_recovery(&self) -> &Option<ClusterNodeRecovery>
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.
Trait Implementations§
source§impl Clone for CreateClusterFluentBuilder
impl Clone for CreateClusterFluentBuilder
source§fn clone(&self) -> CreateClusterFluentBuilder
fn clone(&self) -> CreateClusterFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for CreateClusterFluentBuilder
impl !RefUnwindSafe for CreateClusterFluentBuilder
impl Send for CreateClusterFluentBuilder
impl Sync for CreateClusterFluentBuilder
impl Unpin for CreateClusterFluentBuilder
impl !UnwindSafe for CreateClusterFluentBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more