Module Values.OutputSourceSource

A list of OutputAttribute objects, each of which have the fields Name and Hashed. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.

Sourcetype nonrec t = {
  1. kMSArn : KMSArn.t option;
    (*

    Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key.

    *)
  2. outputS3Path : OptionalS3Path.t option;
    (*

    The S3 path to which Entity Resolution will write the output table.

    *)
  3. output : OutputSourceOutputList.t;
    (*

    A list of OutputAttribute objects, each of which have the fields Name and Hashed. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.

    *)
  4. applyNormalization : Boolean.t option;
    (*

    Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an AttributeType of PHONE_NUMBER, and the data in the input table is in a format of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890.

    *)
  5. customerProfilesIntegrationConfig : CustomerProfilesIntegrationConfig.t option;
    (*

    Specifies the Customer Profiles integration configuration for sending matched output directly to Customer Profiles. When configured, Entity Resolution automatically creates and updates customer profiles based on match clusters, eliminating the need for manual Amazon S3 integration setup.

    *)
}
Sourceval context_ : string
Sourceval make : ?kMSArn:??? -> ?outputS3Path:??? -> ?applyNormalization:??? -> ?customerProfilesIntegrationConfig:??? -> output:OutputSourceOutputList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of AttributeName.t ]) list ] list | `String of KMSArn.t | `Structure of (string * [> `String of CustomerProfilesDomainArn.t ]) 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