Module Connect.Instance

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

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

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

and attributes_ = {
  1. inbound_calls : bool;
  2. use_custom_tts_voices : bool option;
  3. outbound_calls : bool;
  4. early_media : bool option;
  5. contactflow_logs : bool option;
  6. contact_lens : bool option;
  7. auto_resolve_best_voices : bool option;
}

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

type properties = {
  1. directory_id : string option;
  2. identity_management_type : string;
  3. instance_alias : string option;
  4. attributes_ : attributes_;
  5. tags : tag list option;
}

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 ]
type attributes = {
  1. ref_ : string;
  2. created_time : string;
  3. service_role : string;
  4. instance_status : string;
  5. id : string;
  6. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string