Module Values.CreateLoggerDefinitionVersionRequestSource

Creates a version of a logger definition that has already been defined.

Sourcetype nonrec t = {
  1. amznClientToken : string option;
    (*

    A client token used to correlate requests and responses.

    *)
  2. loggerDefinitionId : string;
    (*

    The ID of the logger definition.

    *)
  3. loggers : Logger.t list option;
    (*

    A list of loggers.

    *)
}
Sourceval context_ : string
Sourceval make : ?amznClientToken:??? -> ?loggers:??? -> loggerDefinitionId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of int | `String of string ]) list ] 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