aws_sdk_appconfig/client/
delete_hosted_configuration_version.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 [`DeleteHostedConfigurationVersion`](crate::operation::delete_hosted_configuration_version::builders::DeleteHostedConfigurationVersionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`application_id(impl Into<String>)`](crate::operation::delete_hosted_configuration_version::builders::DeleteHostedConfigurationVersionFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::delete_hosted_configuration_version::builders::DeleteHostedConfigurationVersionFluentBuilder::set_application_id):<br>required: **true**<br><p>The application ID.</p><br>
7    ///   - [`configuration_profile_id(impl Into<String>)`](crate::operation::delete_hosted_configuration_version::builders::DeleteHostedConfigurationVersionFluentBuilder::configuration_profile_id) / [`set_configuration_profile_id(Option<String>)`](crate::operation::delete_hosted_configuration_version::builders::DeleteHostedConfigurationVersionFluentBuilder::set_configuration_profile_id):<br>required: **true**<br><p>The configuration profile ID.</p><br>
8    ///   - [`version_number(i32)`](crate::operation::delete_hosted_configuration_version::builders::DeleteHostedConfigurationVersionFluentBuilder::version_number) / [`set_version_number(Option<i32>)`](crate::operation::delete_hosted_configuration_version::builders::DeleteHostedConfigurationVersionFluentBuilder::set_version_number):<br>required: **true**<br><p>The versions number to delete.</p><br>
9    /// - On success, responds with [`DeleteHostedConfigurationVersionOutput`](crate::operation::delete_hosted_configuration_version::DeleteHostedConfigurationVersionOutput)
10    /// - On failure, responds with [`SdkError<DeleteHostedConfigurationVersionError>`](crate::operation::delete_hosted_configuration_version::DeleteHostedConfigurationVersionError)
11    pub fn delete_hosted_configuration_version(
12        &self,
13    ) -> crate::operation::delete_hosted_configuration_version::builders::DeleteHostedConfigurationVersionFluentBuilder {
14        crate::operation::delete_hosted_configuration_version::builders::DeleteHostedConfigurationVersionFluentBuilder::new(self.handle.clone())
15    }
16}