Create Experience
| kendra_create_experience | R Documentation |
Creates an Amazon Kendra experience such as a search application¶
Description¶
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.
Usage¶
Arguments¶
Name[required] A name for your Amazon Kendra experience.
IndexId[required] The identifier of the index for your Amazon Kendra experience.
RoleArnThe Amazon Resource Name (ARN) of an IAM role with permission to access
queryAPI,get_query_suggestionsAPI, 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.ConfigurationConfiguration information for your Amazon Kendra experience. This includes
ContentSourceConfiguration, which specifies the data source IDs and/or FAQ IDs, andUserIdentityConfiguration, which specifies the user or group information to grant access to your Amazon Kendra experience.DescriptionA description for your Amazon Kendra experience.
ClientTokenA token that you provide to identify the request to create your Amazon Kendra experience. Multiple calls to the
create_experienceAPI with the same client token creates only one Amazon Kendra experience.
Value¶
A list with the following syntax:
Request syntax¶
svc$create_experience(
Name = "string",
IndexId = "string",
RoleArn = "string",
Configuration = list(
ContentSourceConfiguration = list(
DataSourceIds = list(
"string"
),
FaqIds = list(
"string"
),
DirectPutContent = TRUE|FALSE
),
UserIdentityConfiguration = list(
IdentityAttributeName = "string"
)
),
Description = "string",
ClientToken = "string"
)