Module Values.AlfrescoConfigurationSource

Provides the configuration information to connect to Alfresco as your data source. Support for AlfrescoConfiguration ended May 2023. We recommend migrating to or using the Alfresco data source template schema / TemplateConfiguration API.

Sourcetype nonrec t = {
  1. siteUrl : SiteUrl.t;
    (*

    The URL of the Alfresco site. For example, https://hostname:8080.

    *)
  2. siteId : SiteId.t;
    (*

    The identifier of the Alfresco site. For example, my-site.

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

    The Amazon Resource Name (ARN) of an Secrets Manager secret that contains the key-value pairs required to connect to your Alfresco data source. The secret must contain a JSON structure with the following keys: username—The user name of the Alfresco account. password—The password of the Alfresco account.

    *)
  4. sslCertificateS3Path : S3Path.t;
    (*

    The path to the SSL certificate stored in an Amazon S3 bucket. You use this to connect to Alfresco if you require a secure SSL connection. You can simply generate a self-signed X509 certificate on any computer using OpenSSL. For an example of using OpenSSL to create an X509 certificate, see Create and sign an X509 certificate.

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

    TRUE to index shared files.

    *)
  6. crawlComments : Boolean.t option;
    (*

    TRUE to index comments of blogs and other content.

    *)
  7. entityFilter : EntityFilter.t option;
    (*

    Specify whether to index document libraries, wikis, or blogs. You can specify one or more of these options.

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

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

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

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

    *)
  10. wikiFieldMappings : DataSourceToIndexFieldMappingList.t option;
    (*

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

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

    A list of regular expression patterns to include certain files in your Alfresco data source. 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.

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

    A list of regular expression patterns to exclude certain files in your Alfresco data source. 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.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?crawlSystemFolders:??? -> ?crawlComments:??? -> ?entityFilter:??? -> ?documentLibraryFieldMappings:??? -> ?blogFieldMappings:??? -> ?wikiFieldMappings:??? -> ?inclusionPatterns:??? -> ?exclusionPatterns:??? -> ?vpcConfiguration:??? -> siteUrl:SiteUrl.t -> siteId:SiteId.t -> secretArn:SecretArn.t -> sslCertificateS3Path:S3Path.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Enum of string | `String of DataSourceInclusionsExclusionsStringsMember.t | `Structure of (string * [> `String of DataSourceFieldName.t ]) list ] list | `String of SiteUrl.t | `Structure of (string * [> `List of [> `String of SubnetId.t ] list | `String of S3BucketName.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