Struct aws_sdk_chatbot::operation::update_chime_webhook_configuration::builders::UpdateChimeWebhookConfigurationInputBuilder
source · #[non_exhaustive]pub struct UpdateChimeWebhookConfigurationInputBuilder { /* private fields */ }Expand description
A builder for UpdateChimeWebhookConfigurationInput.
Implementations§
source§impl UpdateChimeWebhookConfigurationInputBuilder
impl UpdateChimeWebhookConfigurationInputBuilder
sourcepub fn chat_configuration_arn(self, input: impl Into<String>) -> Self
pub fn chat_configuration_arn(self, input: impl Into<String>) -> Self
The ARN of the ChimeWebhookConfiguration to update. This field is required.
sourcepub fn set_chat_configuration_arn(self, input: Option<String>) -> Self
pub fn set_chat_configuration_arn(self, input: Option<String>) -> Self
The ARN of the ChimeWebhookConfiguration to update.
sourcepub fn get_chat_configuration_arn(&self) -> &Option<String>
pub fn get_chat_configuration_arn(&self) -> &Option<String>
The ARN of the ChimeWebhookConfiguration to update.
sourcepub fn webhook_description(self, input: impl Into<String>) -> Self
pub fn webhook_description(self, input: impl Into<String>) -> Self
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 set_webhook_description(self, input: Option<String>) -> Self
pub fn set_webhook_description(self, input: Option<String>) -> Self
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 get_webhook_description(&self) -> &Option<String>
pub fn get_webhook_description(&self) -> &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.
sourcepub fn webhook_url(self, input: impl Into<String>) -> Self
pub fn webhook_url(self, input: impl Into<String>) -> Self
URL for the Chime webhook.
sourcepub fn set_webhook_url(self, input: Option<String>) -> Self
pub fn set_webhook_url(self, input: Option<String>) -> Self
URL for the Chime webhook.
sourcepub fn get_webhook_url(&self) -> &Option<String>
pub fn get_webhook_url(&self) -> &Option<String>
URL for the Chime webhook.
sourcepub fn sns_topic_arns(self, input: impl Into<String>) -> Self
pub fn sns_topic_arns(self, input: impl Into<String>) -> Self
Appends an item to sns_topic_arns.
To override the contents of this collection use set_sns_topic_arns.
The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
sourcepub fn set_sns_topic_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_sns_topic_arns(self, input: Option<Vec<String>>) -> Self
The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
sourcepub fn get_sns_topic_arns(&self) -> &Option<Vec<String>>
pub fn get_sns_topic_arns(&self) -> &Option<Vec<String>>
The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
sourcepub fn iam_role_arn(self, input: impl Into<String>) -> Self
pub fn iam_role_arn(self, input: impl Into<String>) -> Self
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 set_iam_role_arn(self, input: Option<String>) -> Self
pub fn set_iam_role_arn(self, input: Option<String>) -> Self
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 get_iam_role_arn(&self) -> &Option<String>
pub fn get_iam_role_arn(&self) -> &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.
sourcepub fn logging_level(self, input: impl Into<String>) -> Self
pub fn logging_level(self, input: impl Into<String>) -> Self
Logging levels include ERROR, INFO, or NONE.
sourcepub fn set_logging_level(self, input: Option<String>) -> Self
pub fn set_logging_level(self, input: Option<String>) -> Self
Logging levels include ERROR, INFO, or NONE.
sourcepub fn get_logging_level(&self) -> &Option<String>
pub fn get_logging_level(&self) -> &Option<String>
Logging levels include ERROR, INFO, or NONE.
sourcepub fn build(self) -> Result<UpdateChimeWebhookConfigurationInput, BuildError>
pub fn build(self) -> Result<UpdateChimeWebhookConfigurationInput, BuildError>
Consumes the builder and constructs a UpdateChimeWebhookConfigurationInput.
source§impl UpdateChimeWebhookConfigurationInputBuilder
impl UpdateChimeWebhookConfigurationInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateChimeWebhookConfigurationOutput, SdkError<UpdateChimeWebhookConfigurationError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateChimeWebhookConfigurationOutput, SdkError<UpdateChimeWebhookConfigurationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateChimeWebhookConfigurationInputBuilder
impl Clone for UpdateChimeWebhookConfigurationInputBuilder
source§fn clone(&self) -> UpdateChimeWebhookConfigurationInputBuilder
fn clone(&self) -> UpdateChimeWebhookConfigurationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateChimeWebhookConfigurationInputBuilder
impl Default for UpdateChimeWebhookConfigurationInputBuilder
source§fn default() -> UpdateChimeWebhookConfigurationInputBuilder
fn default() -> UpdateChimeWebhookConfigurationInputBuilder
source§impl PartialEq for UpdateChimeWebhookConfigurationInputBuilder
impl PartialEq for UpdateChimeWebhookConfigurationInputBuilder
source§fn eq(&self, other: &UpdateChimeWebhookConfigurationInputBuilder) -> bool
fn eq(&self, other: &UpdateChimeWebhookConfigurationInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateChimeWebhookConfigurationInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateChimeWebhookConfigurationInputBuilder
impl RefUnwindSafe for UpdateChimeWebhookConfigurationInputBuilder
impl Send for UpdateChimeWebhookConfigurationInputBuilder
impl Sync for UpdateChimeWebhookConfigurationInputBuilder
impl Unpin for UpdateChimeWebhookConfigurationInputBuilder
impl UnwindSafe for UpdateChimeWebhookConfigurationInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more