Module Values.EnvironmentInfoDescriptionSource

The information retrieved from the Amazon EC2 instances.

Sourcetype nonrec t = {
  1. infoType : EnvironmentInfoType.t option;
    (*

    The type of information retrieved.

    *)
  2. ec2InstanceId : Ec2InstanceId.t option;
    (*

    The Amazon EC2 Instance ID for this information.

    *)
  3. sampleTimestamp : SampleTimestamp.t option;
    (*

    The time stamp when this information was retrieved.

    *)
  4. message : Message.t option;
    (*

    The retrieved information. Currently contains a presigned Amazon S3 URL. The files are deleted after 15 minutes. Anyone in possession of this URL can access the files before they are deleted. Make the URL available only to trusted parties.

    *)
}
Sourceval make : ?infoType:??? -> ?ec2InstanceId:??? -> ?sampleTimestamp:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Ec2InstanceId.t | `Timestamp of SampleTimestamp.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