Struct aws_sdk_dax::input::update_cluster_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateClusterInput
.
Implementations§
source§impl Builder
impl Builder
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 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 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 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 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 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 security_group_ids(self, input: impl Into<String>) -> Self
pub fn security_group_ids(self, input: impl Into<String>) -> Self
Appends an item to security_group_ids
.
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 build(self) -> Result<UpdateClusterInput, BuildError>
pub fn build(self) -> Result<UpdateClusterInput, BuildError>
Consumes the builder and constructs a UpdateClusterInput
.