Module Values.PipeLogConfigurationSource

The logging configuration settings for the pipe.

Sourcetype nonrec t = {
  1. s3LogDestination : S3LogDestination.t option;
    (*

    The Amazon S3 logging configuration settings for the pipe.

    *)
  2. firehoseLogDestination : FirehoseLogDestination.t option;
    (*

    The Amazon Data Firehose logging configuration settings for the pipe.

    *)
  3. cloudwatchLogsLogDestination : CloudwatchLogsLogDestination.t option;
    (*

    The Amazon CloudWatch Logs logging configuration settings for the pipe.

    *)
  4. level : LogLevel.t option;
    (*

    The level of logging detail to include. This applies to all log destinations for the pipe.

    *)
  5. includeExecutionData : IncludeExecutionData.t option;
    (*

    Whether the execution data (specifically, the payload, awsRequest, and awsResponse fields) is included in the log messages for this pipe. This applies to all log destinations for the pipe. For more information, see Including execution data in logs in the Amazon EventBridge User Guide.

    *)
}
Sourceval make : ?s3LogDestination:??? -> ?firehoseLogDestination:??? -> ?cloudwatchLogsLogDestination:??? -> ?level:??? -> ?includeExecutionData:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `Structure of (string * [> `Enum of string | `String of String_.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