Values.RequestEnvironmentInfoMessageSourceRequest to retrieve logs from an environment and store them in your Elastic Beanstalk storage bucket.
type nonrec t = {environmentId : EnvironmentId.t option;The ID of the environment of the requested data. If no such environment is found, RequestEnvironmentInfo 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 environment of the requested data. If no such environment is found, RequestEnvironmentInfo 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 request.
*)}val make :
?environmentId:??? ->
?environmentName:??? ->
infoType:EnvironmentInfoType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of EnvironmentId.t ]) list ]