Module Values_0.MaintenanceWindowExecutionTaskIdentitySource

Information about a task execution performed as part of a maintenance window execution.

Sourcetype nonrec t = {
  1. windowExecutionId : MaintenanceWindowExecutionId.t option;
    (*

    The ID of the maintenance window execution that ran the task.

    *)
  2. taskExecutionId : MaintenanceWindowExecutionTaskId.t option;
    (*

    The ID of the specific task execution in the maintenance window execution.

    *)
  3. status : MaintenanceWindowExecutionStatus.t option;
    (*

    The status of the task execution.

    *)
  4. statusDetails : MaintenanceWindowExecutionStatusDetails.t option;
    (*

    The details explaining the status of the task execution. Not available for all status values.

    *)
  5. startTime : DateTime.t option;
    (*

    The time the task execution started.

    *)
  6. endTime : DateTime.t option;
    (*

    The time the task execution finished.

    *)
  7. taskArn : MaintenanceWindowTaskArn.t option;
    (*

    The Amazon Resource Name (ARN) of the task that ran.

    *)
  8. taskType : MaintenanceWindowTaskType.t option;
    (*

    The type of task that ran.

    *)
  9. alarmConfiguration : AlarmConfiguration.t option;
    (*

    The details for the CloudWatch alarm applied to your maintenance window task.

    *)
  10. triggeredAlarms : AlarmStateInformationList.t option;
    (*

    The CloudWatch alarm that was invoked by the maintenance window task.

    *)
}
Sourceval make : ?windowExecutionId:??? -> ?taskExecutionId:??? -> ?status:??? -> ?statusDetails:??? -> ?startTime:??? -> ?endTime:??? -> ?taskArn:??? -> ?taskType:??? -> ?alarmConfiguration:??? -> ?triggeredAlarms:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of AlarmName.t ]) list ] list | `String of MaintenanceWindowExecutionId.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `String of AlarmName.t ]) list ] list ]) list | `Timestamp of DateTime.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