Module WorkSpacesThinClient.Environment

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesthinclient-environment.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and maintenance_window = {
  1. end_time_minute : int option;
  2. type_ : string;
  3. days_of_the_week : string list option;
  4. apply_time_of : string option;
  5. start_time_minute : int option;
  6. start_time_hour : int option;
  7. end_time_hour : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesthinclient-environment-maintenancewindow.html

type properties = {
  1. desired_software_set_id : string option;
  2. kms_key_arn : string option;
  3. desktop_arn : string;
  4. software_set_update_mode : string option;
  5. software_set_update_schedule : string option;
  6. maintenance_window : maintenance_window option;
  7. desktop_endpoint : string option;
  8. tags : tag list option;
  9. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesthinclient-environment.html;

val make_properties : ?desired_software_set_id:string -> ?kms_key_arn:string -> desktop_arn:string -> ?software_set_update_mode:string -> ?software_set_update_schedule:string -> ?maintenance_window:maintenance_window -> ?desktop_endpoint:string -> ?tags:tag list -> ?name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_maintenance_window : ?end_time_minute:int -> type_:string -> ?days_of_the_week:string list -> ?apply_time_of:string -> ?start_time_minute:int -> ?start_time_hour:int -> ?end_time_hour:int -> unit -> maintenance_window
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_maintenance_window : maintenance_window -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. desktop_type : string;
  3. registered_devices_count : int;
  4. pending_software_set_id : string;
  5. created_at : string;
  6. pending_software_set_version : string;
  7. id : string;
  8. arn : string;
  9. updated_at : string;
  10. activation_code : string;
  11. software_set_compliance_status : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string