aws_sdk_finspace/client/delete_kx_cluster_node.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteKxClusterNode`](crate::operation::delete_kx_cluster_node::builders::DeleteKxClusterNodeFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`environment_id(impl Into<String>)`](crate::operation::delete_kx_cluster_node::builders::DeleteKxClusterNodeFluentBuilder::environment_id) / [`set_environment_id(Option<String>)`](crate::operation::delete_kx_cluster_node::builders::DeleteKxClusterNodeFluentBuilder::set_environment_id):<br>required: **true**<br><p>A unique identifier for the kdb environment.</p><br>
7 /// - [`cluster_name(impl Into<String>)`](crate::operation::delete_kx_cluster_node::builders::DeleteKxClusterNodeFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::delete_kx_cluster_node::builders::DeleteKxClusterNodeFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The name of the cluster, for which you want to delete the nodes.</p><br>
8 /// - [`node_id(impl Into<String>)`](crate::operation::delete_kx_cluster_node::builders::DeleteKxClusterNodeFluentBuilder::node_id) / [`set_node_id(Option<String>)`](crate::operation::delete_kx_cluster_node::builders::DeleteKxClusterNodeFluentBuilder::set_node_id):<br>required: **true**<br><p>A unique identifier for the node that you want to delete.</p><br>
9 /// - On success, responds with [`DeleteKxClusterNodeOutput`](crate::operation::delete_kx_cluster_node::DeleteKxClusterNodeOutput)
10 /// - On failure, responds with [`SdkError<DeleteKxClusterNodeError>`](crate::operation::delete_kx_cluster_node::DeleteKxClusterNodeError)
11 pub fn delete_kx_cluster_node(&self) -> crate::operation::delete_kx_cluster_node::builders::DeleteKxClusterNodeFluentBuilder {
12 crate::operation::delete_kx_cluster_node::builders::DeleteKxClusterNodeFluentBuilder::new(self.handle.clone())
13 }
14}