Module Values.UpdateBrokerInputSource

Updates the broker using the specified properties.

Sourcetype nonrec t = {
  1. authenticationStrategy : AuthenticationStrategy.t option;
    (*

    Optional. The authentication strategy used to secure the broker. The default is SIMPLE.

    *)
  2. autoMinorVersionUpgrade : bool option;
    (*

    Enables automatic upgrades to new patch versions for brokers as new versions are released and supported by Amazon MQ. Automatic upgrades occur during the scheduled maintenance window or after a manual broker reboot. Must be set to true for ActiveMQ brokers version 5.18 and above and for RabbitMQ brokers version 3.13 and above.

    *)
  3. configuration : ConfigurationId.t option;
    (*

    A list of information about the configuration.

    *)
  4. dataReplicationMode : DataReplicationMode.t option;
    (*

    Defines whether this broker is a part of a data replication pair.

    *)
  5. engineVersion : string option;
    (*

    The broker engine version. For more information, see the ActiveMQ version management and the RabbitMQ version management sections in the Amazon MQ Developer Guide. When upgrading to ActiveMQ version 5.18 and above or RabbitMQ version 3.13 and above, you must have autoMinorVersionUpgrade set to true for the broker.

    *)
  6. hostInstanceType : string option;
    (*

    The broker's host instance type to upgrade to. For a list of supported instance types, see Broker instance types.

    *)
  7. ldapServerMetadata : LdapServerMetadataInput.t option;
    (*

    Optional. The metadata of the LDAP server used to authenticate and authorize connections to the broker. Does not apply to RabbitMQ brokers.

    *)
  8. logs : Logs.t option;
    (*

    Enables Amazon CloudWatch logging for brokers.

    *)
  9. maintenanceWindowStartTime : WeeklyStartTime.t option;
    (*

    The parameters that determine the WeeklyStartTime.

    *)
  10. securityGroups : string list option;
    (*

    The list of security groups (1 minimum, 5 maximum) that authorizes connections to brokers.

    *)
}
Sourceval make : ?authenticationStrategy:??? -> ?autoMinorVersionUpgrade:??? -> ?configuration:??? -> ?dataReplicationMode:??? -> ?engineVersion:??? -> ?hostInstanceType:??? -> ?ldapServerMetadata:??? -> ?logs:??? -> ?maintenanceWindowStartTime:??? -> ?securityGroups:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `String of string ] list | `String of string | `Structure of (string * [> `Boolean of bool | `Enum of string | `Integer of int | `List of [> `String of string ] list | `String of string ]) list ]) 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