Module Values.UpdateClusterRequestSource

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.

Sourcetype nonrec t = {
  1. clusterName : String_.t;
    (*

    The name of the DAX cluster to be modified.

    *)
  2. description : String_.t option;
    (*

    A description of the changes being made to the cluster.

    *)
  3. preferredMaintenanceWindow : String_.t option;
    (*

    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.

    *)
  4. notificationTopicArn : String_.t option;
    (*

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

    *)
  5. notificationTopicStatus : String_.t option;
    (*

    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.

    *)
  6. parameterGroupName : String_.t option;
    (*

    The name of a parameter group for this cluster.

    *)
  7. securityGroupIds : SecurityGroupIdentifierList.t option;
    (*

    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.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?preferredMaintenanceWindow:??? -> ?notificationTopicArn:??? -> ?notificationTopicStatus:??? -> ?parameterGroupName:??? -> ?securityGroupIds:??? -> clusterName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t