Module Values_0.MaintenanceWindowTargetSource

The target registered with the maintenance window.

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

    The ID of the maintenance window to register the target with.

    *)
  2. windowTargetId : MaintenanceWindowTargetId.t option;
    (*

    The ID of the target.

    *)
  3. resourceType : MaintenanceWindowResourceType.t option;
    (*

    The type of target that is being registered with the maintenance window.

    *)
  4. targets : Targets.t option;
    (*

    The targets, either managed nodes or tags. Specify managed nodes using the following format: Key=instanceids,Values=<instanceid1>,<instanceid2> Tags are specified using the following format: Key=<tag name>,Values=<tag value>.

    *)
  5. ownerInformation : OwnerInformation.t option;
    (*

    A user-provided value that will be included in any Amazon CloudWatch Events events that are raised while running tasks for these targets in this maintenance window.

    *)
  6. name : MaintenanceWindowName.t option;
    (*

    The name for the maintenance window target.

    *)
  7. description : MaintenanceWindowDescription.t option;
    (*

    A description for the target.

    *)
}
Sourceval make : ?windowId:??? -> ?windowTargetId:??? -> ?resourceType:??? -> ?targets:??? -> ?ownerInformation:??? -> ?name:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `String of TargetValue.t ] list | `String of TargetKey.t ]) list ] list | `String of MaintenanceWindowId.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