1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteComponent`](crate::operation::delete_component::builders::DeleteComponentFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`resource_group_name(impl Into<String>)`](crate::operation::delete_component::builders::DeleteComponentFluentBuilder::resource_group_name) / [`set_resource_group_name(Option<String>)`](crate::operation::delete_component::builders::DeleteComponentFluentBuilder::set_resource_group_name):<br>required: **true**<br><p>The name of the resource group.</p><br>
    ///   - [`component_name(impl Into<String>)`](crate::operation::delete_component::builders::DeleteComponentFluentBuilder::component_name) / [`set_component_name(Option<String>)`](crate::operation::delete_component::builders::DeleteComponentFluentBuilder::set_component_name):<br>required: **true**<br><p>The name of the component.</p><br>
    /// - On success, responds with [`DeleteComponentOutput`](crate::operation::delete_component::DeleteComponentOutput)
    /// - On failure, responds with [`SdkError<DeleteComponentError>`](crate::operation::delete_component::DeleteComponentError)
    pub fn delete_component(&self) -> crate::operation::delete_component::builders::DeleteComponentFluentBuilder {
        crate::operation::delete_component::builders::DeleteComponentFluentBuilder::new(self.handle.clone())
    }
}