Module Values.CreateExperienceRequestSource

Creates an Amazon Kendra experience such as a search application. For more information on creating a search application experience, including using the Python and Java SDKs, see Building a search experience with no code.

Sourcetype nonrec t = {
  1. name : ExperienceName.t;
    (*

    A name for your Amazon Kendra experience.

    *)
  2. indexId : IndexId.t;
    (*

    The identifier of the index for your Amazon Kendra experience.

    *)
  3. roleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of an IAM role with permission to access Query API, GetQuerySuggestions API, and other required APIs. The role also must include permission to access IAM Identity Center that stores your user and group information. For more information, see IAM access roles for Amazon Kendra.

    *)
  4. configuration : ExperienceConfiguration.t option;
    (*

    Configuration information for your Amazon Kendra experience. This includes ContentSourceConfiguration, which specifies the data source IDs and/or FAQ IDs, and UserIdentityConfiguration, which specifies the user or group information to grant access to your Amazon Kendra experience.

    *)
  5. description : Description.t option;
    (*

    A description for your Amazon Kendra experience.

    *)
  6. clientToken : ClientTokenName.t option;
    (*

    A token that you provide to identify the request to create your Amazon Kendra experience. Multiple calls to the CreateExperience API with the same client token creates only one Amazon Kendra experience.

    *)
}
Sourceval context_ : string
Sourceval make : ?roleArn:??? -> ?configuration:??? -> ?description:??? -> ?clientToken:??? -> name:ExperienceName.t -> indexId:IndexId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ExperienceName.t | `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of DataSourceId.t ] list | `String of IdentityAttributeName.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