Module Values_0.CreateQuickConnectRequestSource

Creates a quick connect for the specified Amazon Connect instance.

Sourcetype nonrec t = {
  1. instanceId : InstanceId.t;
    (*

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    *)
  2. name : QuickConnectName.t;
    (*

    A unique name of the quick connect.

    *)
  3. description : QuickConnectDescription.t option;
    (*

    The description of the quick connect.

    *)
  4. quickConnectConfig : QuickConnectConfig.t;
    (*

    Configuration settings for the quick connect.

    *)
  5. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> instanceId:InstanceId.t -> name:QuickConnectName.t -> quickConnectConfig:QuickConnectConfig.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of InstanceId.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of UserId.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t