Values.RetrieveEnvironmentInfoMessageSourceRequest to download logs retrieved with RequestEnvironmentInfo.
type nonrec t = {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.
*)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.
*)infoType : EnvironmentInfoType.t;The type of information to retrieve.
*)}val make :
?environmentId:??? ->
?environmentName:??? ->
infoType:EnvironmentInfoType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of EnvironmentId.t ]) list ]