Module Values_1.RoutingProfileSource

Contains information about a routing profile.

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

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

    *)
  2. name : Values_0.RoutingProfileName.t option;
    (*

    The name of the routing profile.

    *)
  3. routingProfileArn : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the routing profile.

    *)
  4. routingProfileId : Values_0.RoutingProfileId.t option;
    (*

    The identifier of the routing profile.

    *)
  5. description : Values_0.RoutingProfileDescription.t option;
    (*

    The description of the routing profile.

    *)
  6. mediaConcurrencies : Values_0.MediaConcurrencies.t option;
    (*

    The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.

    *)
  7. defaultOutboundQueueId : Values_0.QueueId.t option;
    (*

    The identifier of the default outbound queue for this routing profile.

    *)
  8. tags : Values_0.TagMap.t option;
    (*

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

    *)
  9. numberOfAssociatedQueues : Long.t option;
    (*

    The number of associated queues in routing profile.

    *)
  10. numberOfAssociatedManualAssignmentQueues : Long.t option;
    (*

    The number of associated manual assignment queues in routing profile.

    *)
  11. numberOfAssociatedUsers : Long.t option;
    (*

    The number of associated users in routing profile.

    *)
  12. agentAvailabilityTimer : Values_0.AgentAvailabilityTimer.t option;
    (*

    Whether agents with this routing profile will have their routing order calculated based on time since their last inbound contact or longest idle time.

    *)
  13. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The timestamp when this resource was last modified.

    *)
  14. lastModifiedRegion : Values_0.RegionName.t option;
    (*

    The Amazon Web Services Region where this resource was last modified.

    *)
  15. isDefault : Values_0.Boolean.t option;
    (*

    Whether this a default routing profile.

    *)
  16. associatedQueueIds : Values_0.AssociatedQueueIdList.t option;
    (*

    The IDs of the associated queue.

    *)
  17. associatedManualAssignmentQueueIds : Values_0.AssociatedQueueIdList.t option;
    (*

    The IDs of the associated manual assignment queues.

    *)
}
Sourceval make : ?instanceId:??? -> ?name:??? -> ?routingProfileArn:??? -> ?routingProfileId:??? -> ?description:??? -> ?mediaConcurrencies:??? -> ?defaultOutboundQueueId:??? -> ?tags:??? -> ?numberOfAssociatedQueues:??? -> ?numberOfAssociatedManualAssignmentQueues:??? -> ?numberOfAssociatedUsers:??? -> ?agentAvailabilityTimer:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> ?isDefault:??? -> ?associatedQueueIds:??? -> ?associatedManualAssignmentQueueIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `List of [> `String of string | `Structure of (string * [> `Enum of string | `Integer of int | `Structure of (string * [> `Enum of string ]) list ]) list ] list | `Long of Long.t | `Map of ([> `String of string ] * [> `String of string ]) list | `String of Values_0.InstanceId.t | `Timestamp of Values_0.Timestamp.t ]) 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