1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteTLSInspectionConfiguration`](crate::operation::delete_tls_inspection_configuration::builders::DeleteTLSInspectionConfigurationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`tls_inspection_configuration_arn(impl Into<String>)`](crate::operation::delete_tls_inspection_configuration::builders::DeleteTLSInspectionConfigurationFluentBuilder::tls_inspection_configuration_arn) / [`set_tls_inspection_configuration_arn(Option<String>)`](crate::operation::delete_tls_inspection_configuration::builders::DeleteTLSInspectionConfigurationFluentBuilder::set_tls_inspection_configuration_arn):<br>required: **false**<br><p>The Amazon Resource Name (ARN) of the TLS inspection configuration.</p> <p>You must specify the ARN or the name, and you can specify both.</p><br>
    ///   - [`tls_inspection_configuration_name(impl Into<String>)`](crate::operation::delete_tls_inspection_configuration::builders::DeleteTLSInspectionConfigurationFluentBuilder::tls_inspection_configuration_name) / [`set_tls_inspection_configuration_name(Option<String>)`](crate::operation::delete_tls_inspection_configuration::builders::DeleteTLSInspectionConfigurationFluentBuilder::set_tls_inspection_configuration_name):<br>required: **false**<br><p>The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it.</p> <p>You must specify the ARN or the name, and you can specify both.</p><br>
    /// - On success, responds with [`DeleteTlsInspectionConfigurationOutput`](crate::operation::delete_tls_inspection_configuration::DeleteTlsInspectionConfigurationOutput) with field(s):
    ///   - [`tls_inspection_configuration_response(Option<TlsInspectionConfigurationResponse>)`](crate::operation::delete_tls_inspection_configuration::DeleteTlsInspectionConfigurationOutput::tls_inspection_configuration_response): <p>The high-level properties of a TLS inspection configuration. This, along with the <code>TLSInspectionConfiguration</code>, define the TLS inspection configuration. You can retrieve all objects for a TLS inspection configuration by calling <code>DescribeTLSInspectionConfiguration</code>.</p>
    /// - On failure, responds with [`SdkError<DeleteTLSInspectionConfigurationError>`](crate::operation::delete_tls_inspection_configuration::DeleteTLSInspectionConfigurationError)
    pub fn delete_tls_inspection_configuration(
        &self,
    ) -> crate::operation::delete_tls_inspection_configuration::builders::DeleteTLSInspectionConfigurationFluentBuilder {
        crate::operation::delete_tls_inspection_configuration::builders::DeleteTLSInspectionConfigurationFluentBuilder::new(self.handle.clone())
    }
}