aws_sdk_dax/client/update_cluster.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateCluster`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`cluster_name(impl Into<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The name of the DAX cluster to be modified.</p><br>
/// - [`description(impl Into<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::set_description):<br>required: **false**<br><p>A description of the changes being made to the cluster.</p><br>
/// - [`preferred_maintenance_window(impl Into<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::preferred_maintenance_window) / [`set_preferred_maintenance_window(Option<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::set_preferred_maintenance_window):<br>required: **false**<br><p>A range of time when maintenance of DAX cluster software will be performed. For example: <code>sun:01:00-sun:09:00</code>. Cluster maintenance normally takes less than 30 minutes, and is performed automatically within the maintenance window.</p><br>
/// - [`notification_topic_arn(impl Into<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::notification_topic_arn) / [`set_notification_topic_arn(Option<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::set_notification_topic_arn):<br>required: **false**<br><p>The Amazon Resource Name (ARN) that identifies the topic.</p><br>
/// - [`notification_topic_status(impl Into<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::notification_topic_status) / [`set_notification_topic_status(Option<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::set_notification_topic_status):<br>required: **false**<br><p>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.</p><br>
/// - [`parameter_group_name(impl Into<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::parameter_group_name) / [`set_parameter_group_name(Option<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::set_parameter_group_name):<br>required: **false**<br><p>The name of a parameter group for this cluster.</p><br>
/// - [`security_group_ids(impl Into<String>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::security_group_ids) / [`set_security_group_ids(Option<Vec::<String>>)`](crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::set_security_group_ids):<br>required: **false**<br><p>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.</p><br>
/// - On success, responds with [`UpdateClusterOutput`](crate::operation::update_cluster::UpdateClusterOutput) with field(s):
/// - [`cluster(Option<Cluster>)`](crate::operation::update_cluster::UpdateClusterOutput::cluster): <p>A description of the DAX cluster, after it has been modified.</p>
/// - On failure, responds with [`SdkError<UpdateClusterError>`](crate::operation::update_cluster::UpdateClusterError)
pub fn update_cluster(&self) -> crate::operation::update_cluster::builders::UpdateClusterFluentBuilder {
crate::operation::update_cluster::builders::UpdateClusterFluentBuilder::new(self.handle.clone())
}
}