Module Values.LoggingConfigurationMetadataSource

Contains information about the current rules and alerting logging configuration for the workspace. These logging configurations are only for rules and alerting logs.

Sourcetype nonrec t = {
  1. status : LoggingConfigurationStatus.t option;
    (*

    The current status of the logging configuration.

    *)
  2. workspace : WorkspaceId.t option;
    (*

    The ID of the workspace the logging configuration is for.

    *)
  3. logGroupArn : LogGroupArn.t option;
    (*

    The ARN of the CloudWatch log group to which the vended log data will be published.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The date and time that the logging configuration was created.

    *)
  5. modifiedAt : Timestamp.t option;
    (*

    The date and time that the logging configuration was most recently changed.

    *)
}
Sourceval make : ?status:??? -> ?workspace:??? -> ?logGroupArn:??? -> ?createdAt:??? -> ?modifiedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of WorkspaceId.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of Timestamp.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