pub struct UpdateClusterFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateCluster
.
Modifies the settings for a DAX cluster. You can use this action to change one or more cluster configuration parameters by specifying the parameters and the new values.
Implementations§
source§impl UpdateClusterFluentBuilder
impl UpdateClusterFluentBuilder
sourcepub fn as_input(&self) -> &UpdateClusterInputBuilder
pub fn as_input(&self) -> &UpdateClusterInputBuilder
Access the UpdateCluster as a reference.
sourcepub async fn send(
self
) -> Result<UpdateClusterOutput, SdkError<UpdateClusterError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateClusterOutput, SdkError<UpdateClusterError, 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<UpdateClusterOutput, UpdateClusterError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateClusterOutput, UpdateClusterError, 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 to be modified.
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 to be modified.
sourcepub fn get_cluster_name(&self) -> &Option<String>
pub fn get_cluster_name(&self) -> &Option<String>
The name of the DAX cluster to be modified.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the changes being made to the cluster.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the changes being made to the cluster.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the changes being made to the cluster.
sourcepub fn preferred_maintenance_window(self, input: impl Into<String>) -> Self
pub fn preferred_maintenance_window(self, input: impl Into<String>) -> Self
A range of time when maintenance of DAX cluster software will be performed. For example: sun:01:00-sun:09:00
. Cluster maintenance normally takes less than 30 minutes, and is performed automatically within the maintenance window.
sourcepub fn set_preferred_maintenance_window(self, input: Option<String>) -> Self
pub fn set_preferred_maintenance_window(self, input: Option<String>) -> Self
A range of time when maintenance of DAX cluster software will be performed. For example: sun:01:00-sun:09:00
. Cluster maintenance normally takes less than 30 minutes, and is performed automatically within the maintenance window.
sourcepub fn get_preferred_maintenance_window(&self) -> &Option<String>
pub fn get_preferred_maintenance_window(&self) -> &Option<String>
A range of time when maintenance of DAX cluster software will be performed. For example: sun:01:00-sun:09:00
. Cluster maintenance normally takes less than 30 minutes, and is performed automatically within the maintenance window.
sourcepub fn notification_topic_arn(self, input: impl Into<String>) -> Self
pub fn notification_topic_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) that identifies the topic.
sourcepub fn set_notification_topic_arn(self, input: Option<String>) -> Self
pub fn set_notification_topic_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) that identifies the topic.
sourcepub fn get_notification_topic_arn(&self) -> &Option<String>
pub fn get_notification_topic_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) that identifies the topic.
sourcepub fn notification_topic_status(self, input: impl Into<String>) -> Self
pub fn notification_topic_status(self, input: impl Into<String>) -> Self
The current state of the topic. A value of “active” means that notifications will be sent to the topic. A value of “inactive” means that notifications will not be sent to the topic.
sourcepub fn set_notification_topic_status(self, input: Option<String>) -> Self
pub fn set_notification_topic_status(self, input: Option<String>) -> Self
The current state of the topic. A value of “active” means that notifications will be sent to the topic. A value of “inactive” means that notifications will not be sent to the topic.
sourcepub fn get_notification_topic_status(&self) -> &Option<String>
pub fn get_notification_topic_status(&self) -> &Option<String>
The current state of the topic. A value of “active” means that notifications will be sent to the topic. A value of “inactive” means that notifications will not be sent to the topic.
sourcepub fn parameter_group_name(self, input: impl Into<String>) -> Self
pub fn parameter_group_name(self, input: impl Into<String>) -> Self
The name of a parameter group for this cluster.
sourcepub fn set_parameter_group_name(self, input: Option<String>) -> Self
pub fn set_parameter_group_name(self, input: Option<String>) -> Self
The name of a parameter group for this cluster.
sourcepub fn get_parameter_group_name(&self) -> &Option<String>
pub fn get_parameter_group_name(&self) -> &Option<String>
The name of a parameter group for this cluster.
sourcepub fn security_group_ids(self, input: impl Into<String>) -> Self
pub fn security_group_ids(self, input: impl Into<String>) -> Self
Appends an item to SecurityGroupIds
.
To override the contents of this collection use set_security_group_ids
.
A list of user-specified security group IDs to be assigned to each node in the DAX cluster. If this parameter is not specified, DAX assigns the default VPC security group to each node.
sourcepub fn set_security_group_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_security_group_ids(self, input: Option<Vec<String>>) -> Self
A list of user-specified security group IDs to be assigned to each node in the DAX cluster. If this parameter is not specified, DAX assigns the default VPC security group to each node.
sourcepub fn get_security_group_ids(&self) -> &Option<Vec<String>>
pub fn get_security_group_ids(&self) -> &Option<Vec<String>>
A list of user-specified security group IDs to be assigned to each node in the DAX cluster. If this parameter is not specified, DAX assigns the default VPC security group to each node.
Trait Implementations§
source§impl Clone for UpdateClusterFluentBuilder
impl Clone for UpdateClusterFluentBuilder
source§fn clone(&self) -> UpdateClusterFluentBuilder
fn clone(&self) -> UpdateClusterFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more