Module Values.UpdateTaskRequestSource

UpdateTaskResponse

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

    Specifies the ARN of the task that you want to update.

    *)
  2. options : Options.t option;
  3. excludes : FilterList.t option;
    (*

    Specifies 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.

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

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

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

    Specifies the name of your task.

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

    Specifies the Amazon Resource Name (ARN) of an Amazon CloudWatch log group for monitoring your task. For Enhanced mode tasks, you must use /aws/datasync as your log group name. For example: arn:aws:logs:us-east-1:111222333444:log-group:/aws/datasync:* For more information, see Monitoring data transfers with CloudWatch Logs.

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

    Specifies include filters 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.

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

    Configures a manifest, which is a list of files or objects that you want DataSync to transfer. For more information and configuration examples, see Specifying what DataSync transfers by using a manifest. When using this parameter, your caller identity (the IAM role that you're using DataSync with) must have the iam:PassRole permission. The AWSDataSyncFullAccess policy includes this permission. To remove a manifest configuration, specify this parameter as empty.

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

    Specifies how you want to configure a task report, which provides detailed information about your DataSync transfer. For more information, see Monitoring your DataSync transfers with task reports. When using this parameter, your caller identity (the IAM role that you're using DataSync with) must have the iam:PassRole permission. The AWSDataSyncFullAccess policy includes this permission. To remove a task report configuration, specify this parameter as empty.

    *)
}
Sourceval context_ : string
Sourceval make : ?options:??? -> ?excludes:??? -> ?schedule:??? -> ?name:??? -> ?cloudWatchLogGroupArn:??? -> ?includes:??? -> ?manifestConfig:??? -> ?taskReportConfig:??? -> taskArn:TaskArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `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 ]) list ]) 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