aws_sdk_bedrockagentcorecontrol/client/delete_configuration_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 [`DeleteConfigurationBundle`](crate::operation::delete_configuration_bundle::builders::DeleteConfigurationBundleFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`bundle_id(impl Into<String>)`](crate::operation::delete_configuration_bundle::builders::DeleteConfigurationBundleFluentBuilder::bundle_id) / [`set_bundle_id(Option<String>)`](crate::operation::delete_configuration_bundle::builders::DeleteConfigurationBundleFluentBuilder::set_bundle_id):<br>required: **true**<br><p>The unique identifier of the configuration bundle to delete.</p><br>
7 /// - On success, responds with [`DeleteConfigurationBundleOutput`](crate::operation::delete_configuration_bundle::DeleteConfigurationBundleOutput) with field(s):
8 /// - [`bundle_id(String)`](crate::operation::delete_configuration_bundle::DeleteConfigurationBundleOutput::bundle_id): <p>The unique identifier of the deleted configuration bundle.</p>
9 /// - [`status(ConfigurationBundleStatus)`](crate::operation::delete_configuration_bundle::DeleteConfigurationBundleOutput::status): <p>The status of the configuration bundle deletion operation.</p>
10 /// - On failure, responds with [`SdkError<DeleteConfigurationBundleError>`](crate::operation::delete_configuration_bundle::DeleteConfigurationBundleError)
11 pub fn delete_configuration_bundle(&self) -> crate::operation::delete_configuration_bundle::builders::DeleteConfigurationBundleFluentBuilder {
12 crate::operation::delete_configuration_bundle::builders::DeleteConfigurationBundleFluentBuilder::new(self.handle.clone())
13 }
14}