Module Values.CreateConfigurationRequestSource

Creates a new configuration for the specified configuration name. Amazon MQ uses the default configuration (the engine type and version).

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

    Optional. The authentication strategy associated with the configuration. The default is SIMPLE.

    *)
  2. engineType : EngineType.t;
    (*

    Required. The type of broker engine. Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ.

    *)
  3. engineVersion : string option;
    (*

    The broker engine version. Defaults to the latest available version for the specified broker engine type. For more information, see the ActiveMQ version management and the RabbitMQ version management sections in the Amazon MQ Developer Guide.

    *)
  4. name : string;
    (*

    Required. The name of the configuration. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.

    *)
  5. tags : (string * string) list option;
    (*

    Create tags when creating the configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?authenticationStrategy:??? -> ?engineVersion:??? -> ?tags:??? -> engineType:EngineType.t -> name:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) 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