Module Values.QuipConfigurationSource

Provides the configuration information to connect to Quip as your data source.

Sourcetype nonrec t = {
  1. domain : Domain.t;
    (*

    The Quip site domain. For example, https://quip-company.quipdomain.com/browse. The domain in this example is "quipdomain".

    *)
  2. secretArn : SecretArn.t;
    (*

    The Amazon Resource Name (ARN) of an Secrets Manager secret that contains the key-value pairs that are required to connect to your Quip. The secret must contain a JSON structure with the following keys: accessToken—The token created in Quip. For more information, see Using a Quip data source.

    *)
  3. crawlFileComments : Boolean.t option;
    (*

    TRUE to index file comments.

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

    TRUE to index the contents of chat rooms.

    *)
  5. crawlAttachments : Boolean.t option;
    (*

    TRUE to index attachments.

    *)
  6. folderIds : FolderIdList.t option;
    (*

    The identifiers of the Quip folders you want to index. You can find the folder ID in your browser URL when you access your folder in Quip. For example, https://quip-company.quipdomain.com/zlLuOVNSarTL/folder-name. The folder ID in this example is "zlLuOVNSarTL".

    *)
  7. threadFieldMappings : DataSourceToIndexFieldMappingList.t option;
    (*

    A list of DataSourceToIndexFieldMapping objects that map attributes or field names of Quip threads to Amazon Kendra index field names. To create custom fields, use the UpdateIndex API before you map to Quip fields. For more information, see Mapping data source fields. The Quip field names must exist in your Quip custom metadata.

    *)
  8. messageFieldMappings : DataSourceToIndexFieldMappingList.t option;
    (*

    A list of DataSourceToIndexFieldMapping objects that map attributes or field names of Quip messages to Amazon Kendra index field names. To create custom fields, use the UpdateIndex API before you map to Quip fields. For more information, see Mapping data source fields. The Quip field names must exist in your Quip custom metadata.

    *)
  9. attachmentFieldMappings : DataSourceToIndexFieldMappingList.t option;
    (*

    A list of DataSourceToIndexFieldMapping objects that map attributes or field names of Quip attachments to Amazon Kendra index field names. To create custom fields, use the UpdateIndex API before you map to Quip fields. For more information, see Mapping data source fields. The Quip field names must exist in your Quip custom metadata.

    *)
  10. inclusionPatterns : DataSourceInclusionsExclusionsStrings.t option;
    (*

    A list of regular expression patterns to include certain files in your Quip file system. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion pattern and an exclusion pattern, the exclusion pattern takes precedence, and the file isn't included in the index.

    *)
  11. exclusionPatterns : DataSourceInclusionsExclusionsStrings.t option;
    (*

    A list of regular expression patterns to exclude certain files in your Quip file system. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion pattern and an exclusion pattern, the exclusion pattern takes precedence, and the file isn't included in the index.

    *)
  12. vpcConfiguration : DataSourceVpcConfiguration.t option;
    (*

    Configuration information for an Amazon Virtual Private Cloud (VPC) to connect to your Quip. For more information, see Configuring a VPC.

    *)
}
Sourceval context_ : string
Sourceval make : ?crawlFileComments:??? -> ?crawlChatRooms:??? -> ?crawlAttachments:??? -> ?folderIds:??? -> ?threadFieldMappings:??? -> ?messageFieldMappings:??? -> ?attachmentFieldMappings:??? -> ?inclusionPatterns:??? -> ?exclusionPatterns:??? -> ?vpcConfiguration:??? -> domain:Domain.t -> secretArn:SecretArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of FolderId.t | `Structure of (string * [> `String of DataSourceFieldName.t ]) list ] list | `String of Domain.t | `Structure of (string * [> `List of [> `String of SubnetId.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