Connect.Instance
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-instance.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
and attributes_ = {
inbound_calls : bool;
use_custom_tts_voices : bool option;
outbound_calls : bool;
early_media : bool option;
contactflow_logs : bool option;
contact_lens : bool option;
auto_resolve_best_voices : bool option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instance-attributes.html
type properties = {
directory_id : string option;
identity_management_type : string;
instance_alias : string option;
attributes_ : attributes_;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-instance.html;
val make_properties :
?directory_id:string ->
identity_management_type:string ->
?instance_alias:string ->
attributes_:attributes_ ->
?tags:tag list ->
unit ->
properties
val make_tag : value:string -> key:string -> unit -> tag
val make_attributes_ :
inbound_calls:bool ->
?use_custom_tts_voices:bool ->
outbound_calls:bool ->
?early_media:bool ->
?contactflow_logs:bool ->
?contact_lens:bool ->
?auto_resolve_best_voices:bool ->
unit ->
attributes_
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_attributes_ :
attributes_ ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes