Module Values_1.MaintenanceWindowTaskSource

Information about a task defined for a maintenance window.

Sourcetype nonrec t = {
  1. windowId : Values_0.MaintenanceWindowId.t option;
    (*

    The ID of the maintenance window where the task is registered.

    *)
  2. windowTaskId : Values_0.MaintenanceWindowTaskId.t option;
    (*

    The task ID.

    *)
  3. taskArn : Values_0.MaintenanceWindowTaskArn.t option;
    (*

    The resource that the task uses during execution. For RUN_COMMAND and AUTOMATION task types, TaskArn is the Amazon Web Services Systems Manager (SSM document) name or ARN. For LAMBDA tasks, it's the function name or ARN. For STEP_FUNCTIONS tasks, it's the state machine ARN.

    *)
  4. type_ : Values_0.MaintenanceWindowTaskType.t option;
    (*

    The type of task.

    *)
  5. targets : Values_0.Targets.t option;
    (*

    The targets (either managed nodes or tags). Managed nodes are specified using Key=instanceids,Values=<instanceid1>,<instanceid2>. Tags are specified using Key=<tag name>,Values=<tag value>.

    *)
  6. taskParameters : MaintenanceWindowTaskParameters.t option;
    (*

    The parameters that should be passed to the task when it is run. TaskParameters has been deprecated. To specify parameters to pass to a task when it runs, instead use the Parameters option in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters.

    *)
  7. priority : Values_0.MaintenanceWindowTaskPriority.t option;
    (*

    The priority of the task in the maintenance window. The lower the number, the higher the priority. Tasks that have the same priority are scheduled in parallel.

    *)
  8. loggingInfo : LoggingInfo.t option;
    (*

    Information about an S3 bucket to write task-level logs to. LoggingInfo has been deprecated. To specify an Amazon Simple Storage Service (Amazon S3) bucket to contain logs, instead use the OutputS3BucketName and OutputS3KeyPrefix options in the TaskInvocationParameters structure. For information about how Amazon Web Services Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters.

    *)
  9. serviceRoleArn : Values_0.ServiceRole.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM service role for Amazon Web Services Systems Manager to assume when running a maintenance window task. If you do not specify a service role ARN, Systems Manager uses a service-linked role in your account. If no appropriate service-linked role for Systems Manager exists in your account, it is created when you run RegisterTaskWithMaintenanceWindow. However, for an improved security posture, we strongly recommend creating a custom policy and custom service role for running your maintenance window tasks. The policy can be crafted to provide only the permissions needed for your particular maintenance window tasks. For more information, see Setting up Maintenance Windows in the in the Amazon Web Services Systems Manager User Guide.

    *)
  10. maxConcurrency : Values_0.MaxConcurrency.t option;
    (*

    The maximum number of targets this task can be run for, in parallel. Although this element is listed as "Required: No", a value can be omitted only when you are registering or updating a targetless task You must provide a value in all other cases. For maintenance window tasks without a target specified, you can't supply a value for this option. Instead, the system inserts a placeholder value of 1. This value doesn't affect the running of your task.

    *)
  11. maxErrors : Values_0.MaxErrors.t option;
    (*

    The maximum number of errors allowed before this task stops being scheduled. Although this element is listed as "Required: No", a value can be omitted only when you are registering or updating a targetless task You must provide a value in all other cases. For maintenance window tasks without a target specified, you can't supply a value for this option. Instead, the system inserts a placeholder value of 1. This value doesn't affect the running of your task.

    *)
  12. name : Values_0.MaintenanceWindowName.t option;
    (*

    The task name.

    *)
  13. description : Values_0.MaintenanceWindowDescription.t option;
    (*

    A description of the task.

    *)
  14. cutoffBehavior : MaintenanceWindowTaskCutoffBehavior.t option;
    (*

    The specification for whether tasks should continue to run after the cutoff time specified in the maintenance windows is reached.

    *)
  15. alarmConfiguration : Values_0.AlarmConfiguration.t option;
    (*

    The details for the CloudWatch alarm applied to your maintenance window task.

    *)
}
Sourceval make : ?windowId:??? -> ?windowTaskId:??? -> ?taskArn:??? -> ?type_:??? -> ?targets:??? -> ?taskParameters:??? -> ?priority:??? -> ?loggingInfo:??? -> ?serviceRoleArn:??? -> ?maxConcurrency:??? -> ?maxErrors:??? -> ?name:??? -> ?description:??? -> ?cutoffBehavior:??? -> ?alarmConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.MaintenanceWindowTaskPriority.t | `List of [> `Structure of (string * [> `List of [> `String of string ] list | `String of string ]) list ] list | `Map of ([> `String of Values_0.MaintenanceWindowTaskParameterName.t ] * [> `Structure of (string * [> `List of [> `String of string ] list ]) list ]) list | `String of Values_0.MaintenanceWindowId.t | `Structure of (string * [> `Boolean of bool | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.S3BucketName.t ]) 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