Module Values.ManagedLogGroupSource

The Cloudwatch Log Group created by Amazon ECS for an Express service.

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

    The Amazon Resource Name (ARN) of the Cloudwatch Log Group associated with the Express service.

    *)
  2. status : ManagedResourceStatus.t option;
    (*

    The status of the Cloudwatch LogGroup.

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

    Information about why the Cloudwatch LogGroup is in the current status.

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

    The Unix timestamp for when the Cloudwatch LogGroup was last updated

    *)
  5. logGroupName : String_.t option;
    (*

    The name of the Cloudwatch Log Group associated with the Express service.

    *)
}
Sourceval make : ?arn:??? -> ?status:??? -> ?statusReason:??? -> ?updatedAt:??? -> ?logGroupName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `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