Batch Delete Topic Reviewed Answer
quicksight_batch_delete_topic_reviewed_answer | R Documentation |
Deletes reviewed answers for Q Topic¶
Description¶
Deletes reviewed answers for Q Topic.
Usage¶
quicksight_batch_delete_topic_reviewed_answer(AwsAccountId, TopicId,
AnswerIds)
Arguments¶
AwsAccountId |
[required] The ID of the Amazon Web Services account that you want to delete a reviewed answers in. |
TopicId |
[required] The ID for the topic reviewed answer that you want to delete. This ID is unique per Amazon Web Services Region for each Amazon Web Services account. |
AnswerIds |
The Answer IDs of the Answers to be deleted. |
Value¶
A list with the following syntax:
list(
TopicId = "string",
TopicArn = "string",
SucceededAnswers = list(
list(
AnswerId = "string"
)
),
InvalidAnswers = list(
list(
AnswerId = "string",
Error = "INTERNAL_ERROR"|"MISSING_ANSWER"|"DATASET_DOES_NOT_EXIST"|"INVALID_DATASET_ARN"|"DUPLICATED_ANSWER"|"INVALID_DATA"|"MISSING_REQUIRED_FIELDS"
)
),
RequestId = "string",
Status = 123
)
Request syntax¶
svc$batch_delete_topic_reviewed_answer(
AwsAccountId = "string",
TopicId = "string",
AnswerIds = list(
"string"
)
)