// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetConfigurationBundle`](crate::operation::get_configuration_bundle::builders::GetConfigurationBundleFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`bundle_id(impl Into<String>)`](crate::operation::get_configuration_bundle::builders::GetConfigurationBundleFluentBuilder::bundle_id) / [`set_bundle_id(Option<String>)`](crate::operation::get_configuration_bundle::builders::GetConfigurationBundleFluentBuilder::set_bundle_id):<br>required: **true**<br><p>The unique identifier of the configuration bundle to retrieve.</p><br>
/// - [`branch_name(impl Into<String>)`](crate::operation::get_configuration_bundle::builders::GetConfigurationBundleFluentBuilder::branch_name) / [`set_branch_name(Option<String>)`](crate::operation::get_configuration_bundle::builders::GetConfigurationBundleFluentBuilder::set_branch_name):<br>required: **false**<br><p>The branch name to get the latest version from. If not specified, returns the latest version on the mainline branch.</p><br>
/// - On success, responds with [`GetConfigurationBundleOutput`](crate::operation::get_configuration_bundle::GetConfigurationBundleOutput) with field(s):
/// - [`bundle_arn(String)`](crate::operation::get_configuration_bundle::GetConfigurationBundleOutput::bundle_arn): <p>The Amazon Resource Name (ARN) of the configuration bundle.</p>
/// - [`bundle_id(String)`](crate::operation::get_configuration_bundle::GetConfigurationBundleOutput::bundle_id): <p>The unique identifier of the configuration bundle.</p>
/// - [`bundle_name(String)`](crate::operation::get_configuration_bundle::GetConfigurationBundleOutput::bundle_name): <p>The name of the configuration bundle.</p>
/// - [`description(Option<String>)`](crate::operation::get_configuration_bundle::GetConfigurationBundleOutput::description): <p>The description of the configuration bundle.</p>
/// - [`version_id(String)`](crate::operation::get_configuration_bundle::GetConfigurationBundleOutput::version_id): <p>The version identifier of this configuration bundle.</p>
/// - [`components(HashMap::<String, ComponentConfiguration>)`](crate::operation::get_configuration_bundle::GetConfigurationBundleOutput::components): <p>A map of component identifiers to their configurations for this version.</p>
/// - [`lineage_metadata(Option<VersionLineageMetadata>)`](crate::operation::get_configuration_bundle::GetConfigurationBundleOutput::lineage_metadata): <p>The version lineage metadata, including parent versions, branch name, and creation source.</p>
/// - [`created_at(DateTime)`](crate::operation::get_configuration_bundle::GetConfigurationBundleOutput::created_at): <p>The timestamp when the configuration bundle was created.</p>
/// - [`updated_at(DateTime)`](crate::operation::get_configuration_bundle::GetConfigurationBundleOutput::updated_at): <p>The timestamp when the configuration bundle was last updated.</p>
/// - On failure, responds with [`SdkError<GetConfigurationBundleError>`](crate::operation::get_configuration_bundle::GetConfigurationBundleError)
pub fn get_configuration_bundle(&self) -> crate::operation::get_configuration_bundle::builders::GetConfigurationBundleFluentBuilder {
crate::operation::get_configuration_bundle::builders::GetConfigurationBundleFluentBuilder::new(self.handle.clone())
}
}