Module Values.DescribeTaskResponseSource

DescribeTaskResponse

Sourcetype nonrec t = {
  1. taskArn : TaskArn.t option;
    (*

    The ARN of your task.

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

    The status of your task. For information about what each status means, see Task statuses.

    *)
  3. name : TagValue.t option;
    (*

    The name of your task.

    *)
  4. currentTaskExecutionArn : TaskExecutionArn.t option;
    (*

    The ARN of the most recent task execution.

    *)
  5. sourceLocationArn : LocationArn.t option;
    (*

    The ARN of your transfer's source location.

    *)
  6. destinationLocationArn : LocationArn.t option;
    (*

    The ARN of your transfer's destination location.

    *)
  7. cloudWatchLogGroupArn : LogGroupArn.t option;
    (*

    The Amazon Resource Name (ARN) of an Amazon CloudWatch log group for monitoring your task. For more information, see Monitoring data transfers with CloudWatch Logs.

    *)
  8. sourceNetworkInterfaceArns : SourceNetworkInterfaceArns.t option;
    (*

    The ARNs of the network interfaces that DataSync created for your source location.

    *)
  9. destinationNetworkInterfaceArns : DestinationNetworkInterfaceArns.t option;
    (*

    The ARNs of the network interfaces that DataSync created for your destination location.

    *)
  10. options : Options.t option;
    (*

    The task's settings. For example, what file metadata gets preserved, how data integrity gets verified at the end of your transfer, bandwidth limits, among other options.

    *)
  11. excludes : FilterList.t option;
    (*

    The exclude filters that define the files, objects, and folders in your source location that you don't want DataSync to transfer. For more information and examples, see Specifying what DataSync transfers by using filters.

    *)
  12. schedule : TaskSchedule.t option;
    (*

    The schedule for when you want your task to run. For more information, see Scheduling your task.

    *)
  13. errorCode : String_.t option;
    (*

    If there's an issue with your task, you can use the error code to help you troubleshoot the problem. For more information, see Troubleshooting issues with DataSync transfers.

    *)
  14. errorDetail : String_.t option;
    (*

    If there's an issue with your task, you can use the error details to help you troubleshoot the problem. For more information, see Troubleshooting issues with DataSync transfers.

    *)
  15. creationTime : Time.t option;
    (*

    The time that the task was created.

    *)
  16. includes : FilterList.t option;
    (*

    The include filters that define the files, objects, and folders in your source location that you want DataSync to transfer. For more information and examples, see Specifying what DataSync transfers by using filters.

    *)
  17. manifestConfig : ManifestConfig.t option;
    (*

    The configuration of the manifest that lists the files or objects that you want DataSync to transfer. For more information, see Specifying what DataSync transfers by using a manifest.

    *)
  18. taskReportConfig : TaskReportConfig.t option;
    (*

    The configuration of your task report, which provides detailed information about your DataSync transfer. For more information, see Monitoring your DataSync transfers with task reports.

    *)
  19. scheduleDetails : TaskScheduleDetails.t option;
    (*

    The details about your task schedule.

    *)
  20. taskMode : TaskMode.t option;
    (*

    The task mode that you're using. For more information, see Choosing a task mode for your data transfer.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalException of InternalException.t
  2. | `InvalidRequestException of InvalidRequestException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?taskArn:??? -> ?status:??? -> ?name:??? -> ?currentTaskExecutionArn:??? -> ?sourceLocationArn:??? -> ?destinationLocationArn:??? -> ?cloudWatchLogGroupArn:??? -> ?sourceNetworkInterfaceArns:??? -> ?destinationNetworkInterfaceArns:??? -> ?options:??? -> ?excludes:??? -> ?schedule:??? -> ?errorCode:??? -> ?errorDetail:??? -> ?creationTime:??? -> ?includes:??? -> ?manifestConfig:??? -> ?taskReportConfig:??? -> ?scheduleDetails:??? -> ?taskMode:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalException of InternalException.t | `InvalidRequestException of InvalidRequestException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalException of InternalException.t | `InvalidRequestException of InvalidRequestException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of NetworkInterfaceArn.t | `Structure of (string * [> `Enum of string | `String of FilterValue.t ]) list ] list | `String of TaskArn.t | `Structure of (string * [> `Enum of string | `Long of BytesPerSecond.t | `String of ScheduleExpressionCron.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of S3Subdirectory.t ]) list ]) list | `Timestamp of Time.t ]) list | `Timestamp of Time.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