Struct rusoto_dax::UpdateClusterRequest[][src]

pub struct UpdateClusterRequest {
    pub cluster_name: String,
    pub description: Option<String>,
    pub notification_topic_arn: Option<String>,
    pub notification_topic_status: Option<String>,
    pub parameter_group_name: Option<String>,
    pub preferred_maintenance_window: Option<String>,
    pub security_group_ids: Option<Vec<String>>,
}

Fields

The name of the DAX cluster to be modified.

A description of the changes being made to the cluster.

The Amazon Resource Name (ARN) that identifies the topic.

The current state of the topic.

The name of a parameter group for this cluster.

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.

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

impl Default for UpdateClusterRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateClusterRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateClusterRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateClusterRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations