Module Values.DescribeEventsMessageSource

Request to retrieve a list of events for an environment.

Sourcetype nonrec t = {
  1. applicationName : ApplicationName.t option;
    (*

    If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those associated with this application.

    *)
  2. versionLabel : VersionLabel.t option;
    (*

    If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this application version.

    *)
  3. templateName : ConfigurationTemplateName.t option;
    (*

    If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that are associated with this environment configuration.

    *)
  4. environmentId : EnvironmentId.t option;
    (*

    If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment.

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

    If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment.

    *)
  6. platformArn : PlatformArn.t option;
    (*

    The ARN of a custom platform version. If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this custom platform version.

    *)
  7. requestId : RequestId.t option;
    (*

    If specified, AWS Elastic Beanstalk restricts the described events to include only those associated with this request ID.

    *)
  8. severity : EventSeverity.t option;
    (*

    If specified, limits the events returned from this call to include only those with the specified severity or higher.

    *)
  9. startTime : TimeFilterStart.t option;
    (*

    If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur on or after this time.

    *)
  10. endTime : TimeFilterEnd.t option;
    (*

    If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur up to, but not including, the EndTime.

    *)
  11. maxRecords : MaxRecords.t option;
    (*

    Specifies the maximum number of events that can be returned, beginning with the most recent event.

    *)
  12. nextToken : Token.t option;
    (*

    Pagination token. If specified, the events return the next batch of results.

    *)
}
Sourceval make : ?applicationName:??? -> ?versionLabel:??? -> ?templateName:??? -> ?environmentId:??? -> ?environmentName:??? -> ?platformArn:??? -> ?requestId:??? -> ?severity:??? -> ?startTime:??? -> ?endTime:??? -> ?maxRecords:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of MaxRecords.t | `String of ApplicationName.t | `Timestamp of TimeFilterStart.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