aws-sdk-bedrockagentcorecontrol 1.55.0

AWS SDK for Amazon Bedrock AgentCore Control
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetConfigurationBundleVersion`](crate::operation::get_configuration_bundle_version::builders::GetConfigurationBundleVersionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`bundle_id(impl Into<String>)`](crate::operation::get_configuration_bundle_version::builders::GetConfigurationBundleVersionFluentBuilder::bundle_id) / [`set_bundle_id(Option<String>)`](crate::operation::get_configuration_bundle_version::builders::GetConfigurationBundleVersionFluentBuilder::set_bundle_id):<br>required: **true**<br><p>The unique identifier of the configuration bundle.</p><br>
    ///   - [`version_id(impl Into<String>)`](crate::operation::get_configuration_bundle_version::builders::GetConfigurationBundleVersionFluentBuilder::version_id) / [`set_version_id(Option<String>)`](crate::operation::get_configuration_bundle_version::builders::GetConfigurationBundleVersionFluentBuilder::set_version_id):<br>required: **true**<br><p>The version identifier of the configuration bundle version to retrieve.</p><br>
    /// - On success, responds with [`GetConfigurationBundleVersionOutput`](crate::operation::get_configuration_bundle_version::GetConfigurationBundleVersionOutput) with field(s):
    ///   - [`bundle_arn(String)`](crate::operation::get_configuration_bundle_version::GetConfigurationBundleVersionOutput::bundle_arn): <p>The Amazon Resource Name (ARN) of the configuration bundle.</p>
    ///   - [`bundle_id(String)`](crate::operation::get_configuration_bundle_version::GetConfigurationBundleVersionOutput::bundle_id): <p>The unique identifier of the configuration bundle.</p>
    ///   - [`bundle_name(String)`](crate::operation::get_configuration_bundle_version::GetConfigurationBundleVersionOutput::bundle_name): <p>The name of the configuration bundle.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_configuration_bundle_version::GetConfigurationBundleVersionOutput::description): <p>The description of the configuration bundle.</p>
    ///   - [`version_id(String)`](crate::operation::get_configuration_bundle_version::GetConfigurationBundleVersionOutput::version_id): <p>The version identifier of this configuration bundle version.</p>
    ///   - [`components(HashMap::<String, ComponentConfiguration>)`](crate::operation::get_configuration_bundle_version::GetConfigurationBundleVersionOutput::components): <p>A map of component identifiers to their configurations for this version.</p>
    ///   - [`lineage_metadata(Option<VersionLineageMetadata>)`](crate::operation::get_configuration_bundle_version::GetConfigurationBundleVersionOutput::lineage_metadata): <p>The version lineage metadata, including parent versions, branch name, and creation source.</p>
    ///   - [`created_at(DateTime)`](crate::operation::get_configuration_bundle_version::GetConfigurationBundleVersionOutput::created_at): <p>The timestamp when the configuration bundle was created.</p>
    ///   - [`version_created_at(DateTime)`](crate::operation::get_configuration_bundle_version::GetConfigurationBundleVersionOutput::version_created_at): <p>The timestamp when this specific version was created.</p>
    /// - On failure, responds with [`SdkError<GetConfigurationBundleVersionError>`](crate::operation::get_configuration_bundle_version::GetConfigurationBundleVersionError)
    pub fn get_configuration_bundle_version(
        &self,
    ) -> crate::operation::get_configuration_bundle_version::builders::GetConfigurationBundleVersionFluentBuilder {
        crate::operation::get_configuration_bundle_version::builders::GetConfigurationBundleVersionFluentBuilder::new(self.handle.clone())
    }
}