1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteAppVersionAppComponent`](crate::operation::delete_app_version_app_component::builders::DeleteAppVersionAppComponentFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`app_arn(impl Into<String>)`](crate::operation::delete_app_version_app_component::builders::DeleteAppVersionAppComponentFluentBuilder::app_arn) / [`set_app_arn(Option<String>)`](crate::operation::delete_app_version_app_component::builders::DeleteAppVersionAppComponentFluentBuilder::set_app_arn):<br>required: **true**<br><p>Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html"> Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i> guide.</p><br>
    ///   - [`id(impl Into<String>)`](crate::operation::delete_app_version_app_component::builders::DeleteAppVersionAppComponentFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::delete_app_version_app_component::builders::DeleteAppVersionAppComponentFluentBuilder::set_id):<br>required: **true**<br><p>Identifier of the Application Component.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::delete_app_version_app_component::builders::DeleteAppVersionAppComponentFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_app_version_app_component::builders::DeleteAppVersionAppComponentFluentBuilder::set_client_token):<br>required: **false**<br><p>Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. You should not reuse the same client token for other API requests.</p><br>
    /// - On success, responds with [`DeleteAppVersionAppComponentOutput`](crate::operation::delete_app_version_app_component::DeleteAppVersionAppComponentOutput) with field(s):
    ///   - [`app_arn(String)`](crate::operation::delete_app_version_app_component::DeleteAppVersionAppComponentOutput::app_arn): <p>Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html"> Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i> guide.</p>
    ///   - [`app_version(String)`](crate::operation::delete_app_version_app_component::DeleteAppVersionAppComponentOutput::app_version): <p>Resilience Hub application version.</p>
    ///   - [`app_component(Option<AppComponent>)`](crate::operation::delete_app_version_app_component::DeleteAppVersionAppComponentOutput::app_component): <p>List of Application Components that belong to this resource.</p>
    /// - On failure, responds with [`SdkError<DeleteAppVersionAppComponentError>`](crate::operation::delete_app_version_app_component::DeleteAppVersionAppComponentError)
    pub fn delete_app_version_app_component(
        &self,
    ) -> crate::operation::delete_app_version_app_component::builders::DeleteAppVersionAppComponentFluentBuilder {
        crate::operation::delete_app_version_app_component::builders::DeleteAppVersionAppComponentFluentBuilder::new(self.handle.clone())
    }
}