Values.CreateIndexRequestSourceCreates an Amazon Q Business index. To determine if index creation has completed, check the Status field returned from a call to DescribeIndex. The Status field is set to ACTIVE when the index is ready to use. Once the index is active, you can index your documents using the BatchPutDocument API or the CreateDataSource API.
type nonrec t = {applicationId : ApplicationId.t;The identifier of the Amazon Q Business application using the index.
*)displayName : IndexName.t;A name for the Amazon Q Business index.
*)description : Description.t option;A description for the Amazon Q Business index.
*)type_ : IndexType.t option;The index type that's suitable for your needs. For more information on what's included in each type of index, see Amazon Q Business tiers.
*)capacityConfiguration : IndexCapacityConfiguration.t option;The capacity units you want to provision for your index. You can add and remove capacity to fit your usage needs.
*)clientToken : ClientToken.t option;A token that you provide to identify the request to create an index. Multiple calls to the CreateIndex API with the same client token will create only one index.
*)}val make :
?description:??? ->
?type_:??? ->
?tags:??? ->
?capacityConfiguration:??? ->
?clientToken:??? ->
applicationId:ApplicationId.t ->
displayName:IndexName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of
[> `Structure of (string * [> `String of TagKey.t ]) list ] list
| `String of ApplicationId.t
| `Structure of
(string * [> `Integer of IndexCapacityInteger.t ]) list ])
list ]