Module Values.TrailInfoSource

Information about a CloudTrail trail, including the trail's name, home Region, and Amazon Resource Name (ARN).

Sourcetype nonrec t = {
  1. trailARN : String_.t option;
    (*

    The ARN of a trail.

    *)
  2. name : String_.t option;
    (*

    The name of a trail.

    *)
  3. homeRegion : String_.t option;
    (*

    The Amazon Web Services Region in which a trail was created.

    *)
}
Sourceval make : ?trailARN:??? -> ?name:??? -> ?homeRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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