Module Values.RetrieveEnvironmentInfoMessageSource

Request to download logs retrieved with RequestEnvironmentInfo.

Sourcetype nonrec t = {
  1. environmentId : EnvironmentId.t option;
    (*

    The ID of the data's environment. If no such environment is found, returns an InvalidParameterValue error. Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

    *)
  2. environmentName : EnvironmentName.t option;
    (*

    The name of the data's environment. If no such environment is found, returns an InvalidParameterValue error. Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

    *)
  3. infoType : EnvironmentInfoType.t;
    (*

    The type of information to retrieve.

    *)
}
Sourceval context_ : string
Sourceval make : ?environmentId:??? -> ?environmentName:??? -> infoType:EnvironmentInfoType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EnvironmentId.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