aws-sdk-sagemaker 1.196.0

AWS SDK for Amazon SageMaker Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartClusterHealthCheck`](crate::operation::start_cluster_health_check::builders::StartClusterHealthCheckFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster_name(impl Into<String>)`](crate::operation::start_cluster_health_check::builders::StartClusterHealthCheckFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::start_cluster_health_check::builders::StartClusterHealthCheckFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The string name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster.</p><br>
    ///   - [`deep_health_check_configurations(InstanceGroupHealthCheckConfiguration)`](crate::operation::start_cluster_health_check::builders::StartClusterHealthCheckFluentBuilder::deep_health_check_configurations) / [`set_deep_health_check_configurations(Option<Vec::<InstanceGroupHealthCheckConfiguration>>)`](crate::operation::start_cluster_health_check::builders::StartClusterHealthCheckFluentBuilder::set_deep_health_check_configurations):<br>required: **true**<br><p>A list of configurations containing instance group names, EC2 instance IDs, and deep health checks to perform.</p><br>
    /// - On success, responds with [`StartClusterHealthCheckOutput`](crate::operation::start_cluster_health_check::StartClusterHealthCheckOutput) with field(s):
    ///   - [`cluster_arn(String)`](crate::operation::start_cluster_health_check::StartClusterHealthCheckOutput::cluster_arn): <p>The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster on which the deep health checks were initiated.</p>
    /// - On failure, responds with [`SdkError<StartClusterHealthCheckError>`](crate::operation::start_cluster_health_check::StartClusterHealthCheckError)
    pub fn start_cluster_health_check(&self) -> crate::operation::start_cluster_health_check::builders::StartClusterHealthCheckFluentBuilder {
        crate::operation::start_cluster_health_check::builders::StartClusterHealthCheckFluentBuilder::new(self.handle.clone())
    }
}