Connect.Queue
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-queue.html
type outbound_caller_config = {
outbound_caller_id_number_arn : string option;
outbound_flow_arn : string option;
outbound_caller_id_name : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-queue-outboundcallerconfig.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
type properties = {
status : string option;
hours_of_operation_arn : string;
description : string option;
instance_arn : string;
quick_connect_arns : string list option;
outbound_caller_config : outbound_caller_config option;
max_contacts : int option;
name : string;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-queue.html;
val make_properties :
?status:string ->
hours_of_operation_arn:string ->
?description:string ->
instance_arn:string ->
?quick_connect_arns:string list ->
?outbound_caller_config:outbound_caller_config ->
?max_contacts:int ->
?tags:tag list ->
name:string ->
unit ->
properties
val make_outbound_caller_config :
?outbound_caller_id_number_arn:string ->
?outbound_flow_arn:string ->
?outbound_caller_id_name:string ->
unit ->
outbound_caller_config
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_outbound_caller_config :
outbound_caller_config ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes