Module Values.UpdateExperimentTemplateLogConfigurationInputSource

Specifies the configuration for experiment logging.

Sourcetype nonrec t = {
  1. cloudWatchLogsConfiguration : ExperimentTemplateCloudWatchLogsLogConfigurationInput.t option;
    (*

    The configuration for experiment logging to Amazon CloudWatch Logs.

    *)
  2. s3Configuration : ExperimentTemplateS3LogConfigurationInput.t option;
    (*

    The configuration for experiment logging to Amazon S3.

    *)
  3. logSchemaVersion : LogSchemaVersion.t option;
    (*

    The schema version.

    *)
}
Sourceval make : ?cloudWatchLogsConfiguration:??? -> ?s3Configuration:??? -> ?logSchemaVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of LogSchemaVersion.t | `Structure of (string * [> `String of CloudWatchLogGroupArn.t ]) 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