Module Values.UpdateBrokerOutputSource

Returns information about the updated broker.

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.

    *)
  3. brokerId : string;
    (*

    Required. The unique ID that Amazon MQ generates for the broker.

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

    The ID of the updated configuration.

    *)
  5. dataReplicationMetadata : DataReplicationMetadataOutput.t option;
    (*

    The replication details of the data replication-enabled broker. Only returned if dataReplicationMode is set to CRDR.

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

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

    *)
  7. engineVersion : string option;
    (*

    The broker engine version to upgrade to. For more information, see the ActiveMQ version management and the RabbitMQ version management sections in the Amazon MQ Developer Guide.

    *)
  8. hostInstanceType : string option;
    (*

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

    *)
  9. ldapServerMetadata : LdapServerMetadataOutput.t option;
    (*

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

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

    The list of information about logs to be enabled for the specified broker.

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

    The parameters that determine the WeeklyStartTime.

    *)
  12. pendingDataReplicationMetadata : DataReplicationMetadataOutput.t option;
    (*

    The pending replication details of the data replication-enabled broker. Only returned if pendingDataReplicationMode is set to CRDR.

    *)
  13. pendingDataReplicationMode : DataReplicationMode.t option;
    (*

    Describes whether this broker will be a part of a data replication pair after reboot.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?authenticationStrategy:??? -> ?autoMinorVersionUpgrade:??? -> ?configuration:??? -> ?dataReplicationMetadata:??? -> ?dataReplicationMode:??? -> ?engineVersion:??? -> ?hostInstanceType:??? -> ?ldapServerMetadata:??? -> ?logs:??? -> ?maintenanceWindowStartTime:??? -> ?pendingDataReplicationMetadata:??? -> ?pendingDataReplicationMode:??? -> ?securityGroups:??? -> brokerId:string -> 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 | `Structure of (string * [> `String of string ]) list ]) 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