Module Values.AwsStepFunctionStateMachineLoggingConfigurationDetailsSource

The LoggingConfiguration data type is used to set CloudWatch Logs options.

Sourcetype nonrec t = {
  1. destinations : AwsStepFunctionStateMachineLoggingConfigurationDestinationsList.t option;
    (*

    An array of objects that describes where your execution history events will be logged.

    *)
  2. includeExecutionData : Boolean.t option;
    (*

    Determines whether execution data is included in your log. When set to false, data is excluded.

    *)
  3. level : NonEmptyString.t option;
    (*

    Defines which category of execution history events are logged.

    *)
}
Sourceval make : ?destinations:??? -> ?includeExecutionData:??? -> ?level:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ] list | `String of NonEmptyString.t ]) 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