Module Connect.Queue

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-queue.html

type outbound_caller_config = {
  1. outbound_caller_id_number_arn : string option;
  2. outbound_flow_arn : string option;
  3. outbound_caller_id_name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-queue-outboundcallerconfig.html

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

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

type properties = {
  1. status : string option;
  2. hours_of_operation_arn : string;
  3. description : string option;
  4. instance_arn : string;
  5. quick_connect_arns : string list option;
  6. outbound_caller_config : outbound_caller_config option;
  7. max_contacts : int option;
  8. tags : tag list option;
  9. 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 ]
type attributes = {
  1. ref_ : string;
  2. type_ : string;
  3. queue_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string