Module Values.LogSubscriptionSource

Represents a log subscription, which tracks real-time data from a chosen log group to a specified destination.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t option;
    (*

    Identifier (ID) of the directory that you want to associate with the log subscription.

    *)
  2. logGroupName : LogGroupName.t option;
    (*

    The name of the log group.

    *)
  3. subscriptionCreatedDateTime : SubscriptionCreatedDateTime.t option;
    (*

    The date and time that the log subscription was created.

    *)
}
Sourceval make : ?directoryId:??? -> ?logGroupName:??? -> ?subscriptionCreatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DirectoryId.t | `Timestamp of SubscriptionCreatedDateTime.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