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¶
kendra_create_experience(Name, IndexId, RoleArn, Configuration,
Description, ClientToken)
Arguments¶
Name |
[required] A name for your Amazon Kendra experience. |
IndexId |
[required] The identifier of the index for your Amazon Kendra experience. |
RoleArn |
The Amazon Resource Name (ARN) of an IAM role with permission to
access |
Configuration |
Configuration information for your Amazon Kendra experience. This
includes |
Description |
A description for your Amazon Kendra experience. |
ClientToken |
A token that you provide to identify the request to create your
Amazon Kendra experience. Multiple calls to the
|
Value¶
A list with the following syntax:
list(
Id = "string"
)
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"
)