Struct aws_sdk_dax::operation::reboot_node::builders::RebootNodeFluentBuilder
source · pub struct RebootNodeFluentBuilder { /* 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 RebootNodeFluentBuilder
impl RebootNodeFluentBuilder
sourcepub fn as_input(&self) -> &RebootNodeInputBuilder
pub fn as_input(&self) -> &RebootNodeInputBuilder
Access the RebootNode as a reference.
sourcepub async fn send(
self
) -> Result<RebootNodeOutput, SdkError<RebootNodeError, HttpResponse>>
pub async fn send( self ) -> Result<RebootNodeOutput, SdkError<RebootNodeError, 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<RebootNodeOutput, RebootNodeError, Self>
pub fn customize( self ) -> CustomizableOperation<RebootNodeOutput, RebootNodeError, 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 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 get_cluster_name(&self) -> &Option<String>
pub fn get_cluster_name(&self) -> &Option<String>
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.
sourcepub fn get_node_id(&self) -> &Option<String>
pub fn get_node_id(&self) -> &Option<String>
The system-assigned ID of the node to be rebooted.
Trait Implementations§
source§impl Clone for RebootNodeFluentBuilder
impl Clone for RebootNodeFluentBuilder
source§fn clone(&self) -> RebootNodeFluentBuilder
fn clone(&self) -> RebootNodeFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more