Module Connect.HoursOfOperation

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

type hours_of_operation_time_slice = {
  1. hours : int;
  2. minutes : int;
}

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

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

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

and hours_of_operation_config = {
  1. end_time : hours_of_operation_time_slice;
  2. start_time : hours_of_operation_time_slice;
  3. day : string;
}

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

type properties = {
  1. time_zone : string;
  2. description : string option;
  3. config : hours_of_operation_config list;
  4. instance_arn : string;
  5. tags : tag list option;
  6. name : string;
}

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

val make_properties : time_zone:string -> ?description:string -> config:hours_of_operation_config list -> instance_arn:string -> ?tags:tag list -> name:string -> unit -> properties
val make_hours_of_operation_time_slice : hours:int -> minutes:int -> unit -> hours_of_operation_time_slice
val make_tag : value:string -> key:string -> unit -> tag
val make_hours_of_operation_config : end_time:hours_of_operation_time_slice -> start_time:hours_of_operation_time_slice -> day:string -> unit -> hours_of_operation_config
val yojson_of_hours_of_operation_time_slice : hours_of_operation_time_slice -> Yojson.Safe.t
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_hours_of_operation_config : hours_of_operation_config -> [> `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. hours_of_operation_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string