WorkSpaces.Workspace
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
and workspace_properties = {
compute_type_name : string option;
root_volume_size_gib : int option;
running_mode : string option;
running_mode_auto_stop_timeout_in_minutes : int option;
user_volume_size_gib : int option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspaces-workspace-workspaceproperties.html
type properties = {
bundle_id : string;
directory_id : string;
root_volume_encryption_enabled : bool option;
user_name : string;
user_volume_encryption_enabled : bool option;
volume_encryption_key : string option;
workspace_properties : workspace_properties option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html;
val make_properties :
bundle_id:string ->
directory_id:string ->
?root_volume_encryption_enabled:bool ->
?tags:tag list ->
user_name:string ->
?user_volume_encryption_enabled:bool ->
?volume_encryption_key:string ->
?workspace_properties:workspace_properties ->
unit ->
properties
val make_tag : key:string -> value:string -> unit -> tag
val make_workspace_properties :
?compute_type_name:string ->
?root_volume_size_gib:int ->
?running_mode:string ->
?running_mode_auto_stop_timeout_in_minutes:int ->
?user_volume_size_gib:int ->
unit ->
workspace_properties
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_workspace_properties :
workspace_properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes