aws_sdk_cleanrooms/client/
delete_collaboration.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 [`DeleteCollaboration`](crate::operation::delete_collaboration::builders::DeleteCollaborationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`collaboration_identifier(impl Into<String>)`](crate::operation::delete_collaboration::builders::DeleteCollaborationFluentBuilder::collaboration_identifier) / [`set_collaboration_identifier(Option<String>)`](crate::operation::delete_collaboration::builders::DeleteCollaborationFluentBuilder::set_collaboration_identifier):<br>required: **true**<br><p>The identifier for the collaboration.</p><br>
7    /// - On success, responds with [`DeleteCollaborationOutput`](crate::operation::delete_collaboration::DeleteCollaborationOutput)
8    /// - On failure, responds with [`SdkError<DeleteCollaborationError>`](crate::operation::delete_collaboration::DeleteCollaborationError)
9    pub fn delete_collaboration(&self) -> crate::operation::delete_collaboration::builders::DeleteCollaborationFluentBuilder {
10        crate::operation::delete_collaboration::builders::DeleteCollaborationFluentBuilder::new(self.handle.clone())
11    }
12}