Update Chime Webhook Configuration
chatbot_update_chime_webhook_configuration | R Documentation |
Updates a Amazon Chime webhook configuration¶
Description¶
Updates a Amazon Chime webhook configuration.
Usage¶
chatbot_update_chime_webhook_configuration(ChatConfigurationArn,
WebhookDescription, WebhookUrl, SnsTopicArns, IamRoleArn, LoggingLevel)
Arguments¶
ChatConfigurationArn |
[required] The Amazon Resource Name (ARN) of the ChimeWebhookConfiguration to update. |
WebhookDescription |
A description of the webhook. We recommend using the convention
For more information, see Tutorial: Get started with Amazon Chime in the AWS Chatbot Administrator Guide. |
WebhookUrl |
The URL for the Amazon Chime webhook. |
SnsTopicArns |
The ARNs of the SNS topics that deliver notifications to AWS Chatbot. |
IamRoleArn |
A user-defined role that AWS Chatbot assumes. This is not the service-linked role. For more information, see IAM policies for AWS Chatbot in the AWS Chatbot Administrator Guide. |
LoggingLevel |
Logging levels include |
Value¶
A list with the following syntax:
list(
WebhookConfiguration = list(
WebhookDescription = "string",
ChatConfigurationArn = "string",
IamRoleArn = "string",
SnsTopicArns = list(
"string"
),
ConfigurationName = "string",
LoggingLevel = "string",
Tags = list(
list(
TagKey = "string",
TagValue = "string"
)
),
State = "string",
StateReason = "string"
)
)
Request syntax¶
svc$update_chime_webhook_configuration(
ChatConfigurationArn = "string",
WebhookDescription = "string",
WebhookUrl = "string",
SnsTopicArns = list(
"string"
),
IamRoleArn = "string",
LoggingLevel = "string"
)