Struct aws_sdk_dax::client::fluent_builders::RebootNode
source · pub struct RebootNode { /* private fields */ }
Expand description
Fluent builder constructing a request to RebootNode
.
Reboots a single node of a DAX cluster. The reboot action takes place as soon as possible. During the reboot, the node status is set to REBOOTING.
RebootNode
restarts the DAX engine process and does not remove the contents of the cache.
Implementations§
source§impl RebootNode
impl RebootNode
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<RebootNode, AwsResponseRetryClassifier>, SdkError<RebootNodeError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<RebootNode, AwsResponseRetryClassifier>, SdkError<RebootNodeError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(self) -> Result<RebootNodeOutput, SdkError<RebootNodeError>>
pub async fn send(self) -> Result<RebootNodeOutput, SdkError<RebootNodeError>>
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 cluster_name(self, input: impl Into<String>) -> Self
pub fn cluster_name(self, input: impl Into<String>) -> Self
The name of the DAX cluster containing the node to be rebooted.
sourcepub fn set_cluster_name(self, input: Option<String>) -> Self
pub fn set_cluster_name(self, input: Option<String>) -> Self
The name of the DAX cluster containing the node to be rebooted.
sourcepub fn node_id(self, input: impl Into<String>) -> Self
pub fn node_id(self, input: impl Into<String>) -> Self
The system-assigned ID of the node to be rebooted.
sourcepub fn set_node_id(self, input: Option<String>) -> Self
pub fn set_node_id(self, input: Option<String>) -> Self
The system-assigned ID of the node to be rebooted.
Trait Implementations§
source§impl Clone for RebootNode
impl Clone for RebootNode
source§fn clone(&self) -> RebootNode
fn clone(&self) -> RebootNode
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more