aws_sdk_codebuild/client/
delete_webhook.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 [`DeleteWebhook`](crate::operation::delete_webhook::builders::DeleteWebhookFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`project_name(impl Into<String>)`](crate::operation::delete_webhook::builders::DeleteWebhookFluentBuilder::project_name) / [`set_project_name(Option<String>)`](crate::operation::delete_webhook::builders::DeleteWebhookFluentBuilder::set_project_name):<br>required: **true**<br><p>The name of the CodeBuild project.</p><br>
7    /// - On success, responds with [`DeleteWebhookOutput`](crate::operation::delete_webhook::DeleteWebhookOutput)
8    /// - On failure, responds with [`SdkError<DeleteWebhookError>`](crate::operation::delete_webhook::DeleteWebhookError)
9    pub fn delete_webhook(&self) -> crate::operation::delete_webhook::builders::DeleteWebhookFluentBuilder {
10        crate::operation::delete_webhook::builders::DeleteWebhookFluentBuilder::new(self.handle.clone())
11    }
12}