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 [`DescribeAppVersionAppComponent`](crate::operation::describe_app_version_app_component::builders::DescribeAppVersionAppComponentFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`app_arn(impl Into<String>)`](crate::operation::describe_app_version_app_component::builders::DescribeAppVersionAppComponentFluentBuilder::app_arn) / [`set_app_arn(Option<String>)`](crate::operation::describe_app_version_app_component::builders::DescribeAppVersionAppComponentFluentBuilder::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>
    ///   - [`app_version(impl Into<String>)`](crate::operation::describe_app_version_app_component::builders::DescribeAppVersionAppComponentFluentBuilder::app_version) / [`set_app_version(Option<String>)`](crate::operation::describe_app_version_app_component::builders::DescribeAppVersionAppComponentFluentBuilder::set_app_version):<br>required: **true**<br><p>Resilience Hub application version.</p><br>
    ///   - [`id(impl Into<String>)`](crate::operation::describe_app_version_app_component::builders::DescribeAppVersionAppComponentFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::describe_app_version_app_component::builders::DescribeAppVersionAppComponentFluentBuilder::set_id):<br>required: **true**<br><p>Identifier of the Application Component.</p><br>
    /// - On success, responds with [`DescribeAppVersionAppComponentOutput`](crate::operation::describe_app_version_app_component::DescribeAppVersionAppComponentOutput) with field(s):
    ///   - [`app_arn(String)`](crate::operation::describe_app_version_app_component::DescribeAppVersionAppComponentOutput::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::describe_app_version_app_component::DescribeAppVersionAppComponentOutput::app_version): <p>Resilience Hub application version.</p>
    ///   - [`app_component(Option<AppComponent>)`](crate::operation::describe_app_version_app_component::DescribeAppVersionAppComponentOutput::app_component): <p>List of Application Components that belong to this resource.</p>
    /// - On failure, responds with [`SdkError<DescribeAppVersionAppComponentError>`](crate::operation::describe_app_version_app_component::DescribeAppVersionAppComponentError)
    pub fn describe_app_version_app_component(
        &self,
    ) -> crate::operation::describe_app_version_app_component::builders::DescribeAppVersionAppComponentFluentBuilder {
        crate::operation::describe_app_version_app_component::builders::DescribeAppVersionAppComponentFluentBuilder::new(self.handle.clone())
    }
}