Module Values.BatchDeleteConfigurationTaskSource

A metadata object that represents the deletion task being executed.

Sourcetype nonrec t = {
  1. taskId : UUID.t option;
    (*

    The deletion task's unique identifier.

    *)
  2. status : BatchDeleteConfigurationTaskStatus.t option;
    (*

    The current execution status of the deletion task. Valid status are: INITIALIZING | VALIDATING | DELETING | COMPLETED | FAILED.

    *)
  3. startTime : TimeStamp.t option;
    (*

    An epoch seconds timestamp (UTC) of when the deletion task was started.

    *)
  4. endTime : TimeStamp.t option;
    (*

    An epoch seconds timestamp (UTC) of when the deletion task was completed or failed.

    *)
  5. configurationType : DeletionConfigurationItemType.t option;
    (*

    The type of configuration item to delete. Supported types are: SERVER.

    *)
  6. requestedConfigurations : ConfigurationIdList.t option;
    (*

    The list of configuration IDs that were originally requested to be deleted by the deletion task.

    *)
  7. deletedConfigurations : ConfigurationIdList.t option;
    (*

    The list of configuration IDs that were successfully deleted by the deletion task.

    *)
  8. failedConfigurations : FailedConfigurationList.t option;
    (*

    A list of configuration IDs that failed to delete during the deletion task, each paired with an error message.

    *)
  9. deletionWarnings : DeletionWarningsList.t option;
    (*

    A list of configuration IDs that produced warnings regarding their deletion, paired with a warning message.

    *)
}
Sourceval make : ?taskId:??? -> ?status:??? -> ?startTime:??? -> ?endTime:??? -> ?configurationType:??? -> ?requestedConfigurations:??? -> ?deletedConfigurations:??? -> ?failedConfigurations:??? -> ?deletionWarnings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of ConfigurationId.t | `Structure of (string * [> `Integer of ErrorStatusCode.t | `String of ConfigurationId.t ]) list ] list | `String of UUID.t | `Timestamp of TimeStamp.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