Values.ProtectedTaskSourceAn object representing the protection status details for a task. You can set the protection status with the UpdateTaskProtection API and get the status of tasks with the GetTaskProtection API.
type nonrec t = {taskArn : String_.t option;The task ARN.
*)protectionEnabled : Boolean.t option;The protection status of the task. If scale-in protection is on for a task, the value is true. Otherwise, it is false.
*)expirationDate : Timestamp.t option;The epoch time when protection for the task will expire.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `String of String_.t
| `Timestamp of Timestamp.t ])
list ]