aws_sdk_appfabric/client/
get_app_bundle.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`GetAppBundle`](crate::operation::get_app_bundle::builders::GetAppBundleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`app_bundle_identifier(impl Into<String>)`](crate::operation::get_app_bundle::builders::GetAppBundleFluentBuilder::app_bundle_identifier) / [`set_app_bundle_identifier(Option<String>)`](crate::operation::get_app_bundle::builders::GetAppBundleFluentBuilder::set_app_bundle_identifier):<br>required: **true**<br><p>The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.</p><br>
7    /// - On success, responds with [`GetAppBundleOutput`](crate::operation::get_app_bundle::GetAppBundleOutput) with field(s):
8    ///   - [`app_bundle(Option<AppBundle>)`](crate::operation::get_app_bundle::GetAppBundleOutput::app_bundle): <p>Contains information about an app bundle.</p>
9    /// - On failure, responds with [`SdkError<GetAppBundleError>`](crate::operation::get_app_bundle::GetAppBundleError)
10    pub fn get_app_bundle(&self) -> crate::operation::get_app_bundle::builders::GetAppBundleFluentBuilder {
11        crate::operation::get_app_bundle::builders::GetAppBundleFluentBuilder::new(self.handle.clone())
12    }
13}