1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteHubContent`](crate::operation::delete_hub_content::builders::DeleteHubContentFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`hub_name(impl Into<String>)`](crate::operation::delete_hub_content::builders::DeleteHubContentFluentBuilder::hub_name) / [`set_hub_name(Option<String>)`](crate::operation::delete_hub_content::builders::DeleteHubContentFluentBuilder::set_hub_name):<br>required: **true**<br><p>The name of the hub that you want to delete content in.</p><br>
    ///   - [`hub_content_type(HubContentType)`](crate::operation::delete_hub_content::builders::DeleteHubContentFluentBuilder::hub_content_type) / [`set_hub_content_type(Option<HubContentType>)`](crate::operation::delete_hub_content::builders::DeleteHubContentFluentBuilder::set_hub_content_type):<br>required: **true**<br><p>The type of content that you want to delete from a hub.</p><br>
    ///   - [`hub_content_name(impl Into<String>)`](crate::operation::delete_hub_content::builders::DeleteHubContentFluentBuilder::hub_content_name) / [`set_hub_content_name(Option<String>)`](crate::operation::delete_hub_content::builders::DeleteHubContentFluentBuilder::set_hub_content_name):<br>required: **true**<br><p>The name of the content that you want to delete from a hub.</p><br>
    ///   - [`hub_content_version(impl Into<String>)`](crate::operation::delete_hub_content::builders::DeleteHubContentFluentBuilder::hub_content_version) / [`set_hub_content_version(Option<String>)`](crate::operation::delete_hub_content::builders::DeleteHubContentFluentBuilder::set_hub_content_version):<br>required: **true**<br><p>The version of the content that you want to delete from a hub.</p><br>
    /// - On success, responds with [`DeleteHubContentOutput`](crate::operation::delete_hub_content::DeleteHubContentOutput)
    /// - On failure, responds with [`SdkError<DeleteHubContentError>`](crate::operation::delete_hub_content::DeleteHubContentError)
    pub fn delete_hub_content(&self) -> crate::operation::delete_hub_content::builders::DeleteHubContentFluentBuilder {
        crate::operation::delete_hub_content::builders::DeleteHubContentFluentBuilder::new(self.handle.clone())
    }
}