Module Values_0.ContactDataRequestSource

Request object with information to create a contact.

Sourcetype nonrec t = {
  1. systemEndpoint : Endpoint.t option;
    (*

    Endpoint associated with the Amazon Connect instance from which outbound contact will be initiated for the campaign.

    *)
  2. customerEndpoint : Endpoint.t option;
    (*

    Endpoint of the customer for which contact will be initiated.

    *)
  3. requestIdentifier : RequestIdentifier.t option;
    (*

    Identifier to uniquely identify individual requests in the batch.

    *)
  4. queueId : QueueId.t option;
    (*

    The identifier of the queue associated with the Amazon Connect instance in which contacts that are created will be queued.

    *)
  5. attributes : Attributes.t option;
    (*

    List of attributes to be stored in a contact.

    *)
  6. campaign : Campaign.t option;
    (*

    Structure to store information associated with a campaign.

    *)
  7. outboundStrategy : OutboundStrategy.t option;
    (*

    Information about the outbound strategy.

    *)
}
Sourceval make : ?systemEndpoint:??? -> ?customerEndpoint:??? -> ?requestIdentifier:??? -> ?queueId:??? -> ?attributes:??? -> ?campaign:??? -> ?outboundStrategy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of AttributeName.t ] * [> `String of AttributeValue.t ]) list | `String of RequestIdentifier.t | `Structure of (string * [> `Enum of string | `String of EndpointAddress.t | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `List of [> `Enum of string ] list | `Structure of (string * [> `Integer of PostAcceptPreviewTimeoutDurationInSeconds.t ]) list ]) list ]) list ]) 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