Struct aws_sdk_chatbot::operation::update_chime_webhook_configuration::UpdateChimeWebhookConfigurationInput
source · #[non_exhaustive]pub struct UpdateChimeWebhookConfigurationInput {
pub chat_configuration_arn: Option<String>,
pub webhook_description: Option<String>,
pub webhook_url: Option<String>,
pub sns_topic_arns: Option<Vec<String>>,
pub iam_role_arn: Option<String>,
pub logging_level: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.chat_configuration_arn: Option<String>
The ARN of the ChimeWebhookConfiguration to update.
webhook_description: Option<String>
Description of the webhook. Recommend using the convention RoomName/WebhookName
. See Chime setup tutorial for more details: https://docs.aws.amazon.com/chatbot/latest/adminguide/chime-setup.html.
webhook_url: Option<String>
URL for the Chime webhook.
sns_topic_arns: Option<Vec<String>>
The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
iam_role_arn: Option<String>
The ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role. For more information, see IAM Policies for AWS Chatbot.
logging_level: Option<String>
Logging levels include ERROR, INFO, or NONE.
Implementations§
source§impl UpdateChimeWebhookConfigurationInput
impl UpdateChimeWebhookConfigurationInput
sourcepub fn chat_configuration_arn(&self) -> Option<&str>
pub fn chat_configuration_arn(&self) -> Option<&str>
The ARN of the ChimeWebhookConfiguration to update.
sourcepub fn webhook_description(&self) -> Option<&str>
pub fn webhook_description(&self) -> Option<&str>
Description of the webhook. Recommend using the convention RoomName/WebhookName
. See Chime setup tutorial for more details: https://docs.aws.amazon.com/chatbot/latest/adminguide/chime-setup.html.
sourcepub fn webhook_url(&self) -> Option<&str>
pub fn webhook_url(&self) -> Option<&str>
URL for the Chime webhook.
sourcepub fn sns_topic_arns(&self) -> &[String]
pub fn sns_topic_arns(&self) -> &[String]
The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .sns_topic_arns.is_none()
.
sourcepub fn iam_role_arn(&self) -> Option<&str>
pub fn iam_role_arn(&self) -> Option<&str>
The ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role. For more information, see IAM Policies for AWS Chatbot.
sourcepub fn logging_level(&self) -> Option<&str>
pub fn logging_level(&self) -> Option<&str>
Logging levels include ERROR, INFO, or NONE.
source§impl UpdateChimeWebhookConfigurationInput
impl UpdateChimeWebhookConfigurationInput
sourcepub fn builder() -> UpdateChimeWebhookConfigurationInputBuilder
pub fn builder() -> UpdateChimeWebhookConfigurationInputBuilder
Creates a new builder-style object to manufacture UpdateChimeWebhookConfigurationInput
.
Trait Implementations§
source§impl Clone for UpdateChimeWebhookConfigurationInput
impl Clone for UpdateChimeWebhookConfigurationInput
source§fn clone(&self) -> UpdateChimeWebhookConfigurationInput
fn clone(&self) -> UpdateChimeWebhookConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateChimeWebhookConfigurationInput
impl PartialEq for UpdateChimeWebhookConfigurationInput
source§fn eq(&self, other: &UpdateChimeWebhookConfigurationInput) -> bool
fn eq(&self, other: &UpdateChimeWebhookConfigurationInput) -> bool
self
and other
values to be equal, and is used
by ==
.