Module Values.StartBatchDeleteConfigurationTaskResponseSource

Takes a list of configurationId as input and starts an asynchronous deletion task to remove the configurationItems. Returns a unique deletion task identifier.

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

    The unique identifier associated with the newly started deletion task.

    *)
}
Sourcetype nonrec error = [
  1. | `AuthorizationErrorException of AuthorizationErrorException.t
  2. | `HomeRegionNotSetException of HomeRegionNotSetException.t
  3. | `InvalidParameterException of InvalidParameterException.t
  4. | `InvalidParameterValueException of InvalidParameterValueException.t
  5. | `LimitExceededException of LimitExceededException.t
  6. | `OperationNotPermittedException of OperationNotPermittedException.t
  7. | `ServerInternalErrorException of ServerInternalErrorException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?taskId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AuthorizationErrorException of AuthorizationErrorException.t | `HomeRegionNotSetException of HomeRegionNotSetException.t | `InvalidParameterException of InvalidParameterException.t | `InvalidParameterValueException of InvalidParameterValueException.t | `LimitExceededException of LimitExceededException.t | `OperationNotPermittedException of OperationNotPermittedException.t | `ServerInternalErrorException of ServerInternalErrorException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AuthorizationErrorException of AuthorizationErrorException.t | `HomeRegionNotSetException of HomeRegionNotSetException.t | `InvalidParameterException of InvalidParameterException.t | `InvalidParameterValueException of InvalidParameterValueException.t | `LimitExceededException of LimitExceededException.t | `OperationNotPermittedException of OperationNotPermittedException.t | `ServerInternalErrorException of ServerInternalErrorException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.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