Module AppStream.Stack

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html

type user_setting = {
  1. action : string;
  2. maximum_length : int option;
  3. permission : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-usersetting.html

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

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

and streaming_experience_settings = {
  1. preferred_protocol : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-streamingexperiencesettings.html

and access_endpoint = {
  1. endpoint_type : string;
  2. vpce_id : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-accessendpoint.html

and application_settings = {
  1. settings_group : string option;
  2. enabled : bool;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html

and storage_connector = {
  1. domains : string list option;
  2. resource_identifier : string option;
  3. connector_type : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-storageconnector.html

type properties = {
  1. description : string option;
  2. storage_connectors : storage_connector list option;
  3. delete_storage_connectors : bool option;
  4. embed_host_domains : string list option;
  5. user_settings : user_setting list option;
  6. attributes_to_delete : string list option;
  7. redirect_url : string option;
  8. streaming_experience_settings : streaming_experience_settings option;
  9. name : string option;
  10. feedback_url : string option;
  11. application_settings : application_settings option;
  12. display_name : string option;
  13. tags : tag list option;
  14. access_endpoints : access_endpoint list option;
}

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

val make_properties : ?description:string -> ?storage_connectors:storage_connector list -> ?delete_storage_connectors:bool -> ?embed_host_domains:string list -> ?user_settings:user_setting list -> ?attributes_to_delete:string list -> ?redirect_url:string -> ?streaming_experience_settings:streaming_experience_settings -> ?name:string -> ?feedback_url:string -> ?application_settings:application_settings -> ?display_name:string -> ?tags:tag list -> ?access_endpoints:access_endpoint list -> unit -> properties
val make_user_setting : action:string -> ?maximum_length:int -> permission:string -> unit -> user_setting
val make_tag : key:string -> value:string -> unit -> tag
val make_streaming_experience_settings : ?preferred_protocol:string -> unit -> streaming_experience_settings
val make_access_endpoint : endpoint_type:string -> vpce_id:string -> unit -> access_endpoint
val make_application_settings : ?settings_group:string -> enabled:bool -> unit -> application_settings
val make_storage_connector : ?domains:string list -> ?resource_identifier:string -> connector_type:string -> unit -> storage_connector
val yojson_of_user_setting : user_setting -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_streaming_experience_settings : streaming_experience_settings -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_access_endpoint : access_endpoint -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_application_settings : application_settings -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_storage_connector : storage_connector -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string