aws_sdk_chatbot/client/
delete_custom_action.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteCustomAction`](crate::operation::delete_custom_action::builders::DeleteCustomActionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`custom_action_arn(impl Into<String>)`](crate::operation::delete_custom_action::builders::DeleteCustomActionFluentBuilder::custom_action_arn) / [`set_custom_action_arn(Option<String>)`](crate::operation::delete_custom_action::builders::DeleteCustomActionFluentBuilder::set_custom_action_arn):<br>required: **true**<br><p>The fully defined ARN of the custom action.</p><br>
7    /// - On success, responds with [`DeleteCustomActionOutput`](crate::operation::delete_custom_action::DeleteCustomActionOutput)
8    /// - On failure, responds with [`SdkError<DeleteCustomActionError>`](crate::operation::delete_custom_action::DeleteCustomActionError)
9    pub fn delete_custom_action(&self) -> crate::operation::delete_custom_action::builders::DeleteCustomActionFluentBuilder {
10        crate::operation::delete_custom_action::builders::DeleteCustomActionFluentBuilder::new(self.handle.clone())
11    }
12}