1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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:
    ///   - [`component_build_version_arn(impl Into<String>)`](crate::operation::delete_component::builders::DeleteComponentFluentBuilder::component_build_version_arn) / [`set_component_build_version_arn(Option<String>)`](crate::operation::delete_component::builders::DeleteComponentFluentBuilder::set_component_build_version_arn): <p>The Amazon Resource Name (ARN) of the component build version to delete.</p>
    /// - On success, responds with [`DeleteComponentOutput`](crate::operation::delete_component::DeleteComponentOutput) with field(s):
    ///   - [`request_id(Option<String>)`](crate::operation::delete_component::DeleteComponentOutput::request_id): <p>The request ID that uniquely identifies this request.</p>
    ///   - [`component_build_version_arn(Option<String>)`](crate::operation::delete_component::DeleteComponentOutput::component_build_version_arn): <p>The Amazon Resource Name (ARN) of the component build version that was deleted.</p>
    /// - 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(),
        )
    }
}