Module Values.UpdateBrokerResponseSource

Adds a pending configuration change to a 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 option;
    (*

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

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

    The ID of the updated configuration.

    *)
  5. 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.

    *)
  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 : 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.

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

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

    *)
  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.

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

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

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

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

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

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

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

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

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ConflictException of ConflictException.t
  3. | `ForbiddenException of ForbiddenException.t
  4. | `InternalServerErrorException of InternalServerErrorException.t
  5. | `NotFoundException of NotFoundException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?authenticationStrategy:??? -> ?autoMinorVersionUpgrade:??? -> ?brokerId:??? -> ?configuration:??? -> ?engineVersion:??? -> ?hostInstanceType:??? -> ?ldapServerMetadata:??? -> ?logs:??? -> ?maintenanceWindowStartTime:??? -> ?securityGroups:??? -> ?dataReplicationMetadata:??? -> ?dataReplicationMode:??? -> ?pendingDataReplicationMetadata:??? -> ?pendingDataReplicationMode:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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