Skip to content

Update Prompt

connect_update_prompt R Documentation

Updates a prompt

Description

Updates a prompt.

Usage

connect_update_prompt(InstanceId, PromptId, Name, Description, S3Uri)

Arguments

InstanceId

[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

PromptId

[required] A unique identifier for the prompt.

Name

The name of the prompt.

Description

A description of the prompt.

S3Uri

The URI for the S3 bucket where the prompt is stored. You can provide S3 pre-signed URLs returned by the get_prompt_file API instead of providing S3 URIs.

Value

A list with the following syntax:

list(
  PromptARN = "string",
  PromptId = "string"
)

Request syntax

svc$update_prompt(
  InstanceId = "string",
  PromptId = "string",
  Name = "string",
  Description = "string",
  S3Uri = "string"
)