Update Experience
| kendra_update_experience | R Documentation | 
Updates your Amazon Kendra experience such as a search application¶
Description¶
Updates your Amazon Kendra experience such as a search application. For more information on creating a search application experience, see Building a search experience with no code.
Usage¶
kendra_update_experience(Id, Name, IndexId, RoleArn, Configuration,
  Description)
Arguments¶
| Id | [required] The identifier of your Amazon Kendra experience you want to update. | 
| Name | A new 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 the  | 
| Configuration | Configuration information you want to update for your Amazon Kendra experience. | 
| Description | A new description for your Amazon Kendra experience. | 
Value¶
An empty list.
Request syntax¶
svc$update_experience(
  Id = "string",
  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"
)