aws_sdk_networkfirewall/client/delete_tls_inspection_configuration.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 [`DeleteTLSInspectionConfiguration`](crate::operation::delete_tls_inspection_configuration::builders::DeleteTLSInspectionConfigurationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`DeleteTlsInspectionConfigurationOutput`](crate::operation::delete_tls_inspection_configuration::DeleteTlsInspectionConfigurationOutput) with field(s):
9 /// - [`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>
10 /// - On failure, responds with [`SdkError<DeleteTLSInspectionConfigurationError>`](crate::operation::delete_tls_inspection_configuration::DeleteTLSInspectionConfigurationError)
11 pub fn delete_tls_inspection_configuration(
12 &self,
13 ) -> crate::operation::delete_tls_inspection_configuration::builders::DeleteTLSInspectionConfigurationFluentBuilder {
14 crate::operation::delete_tls_inspection_configuration::builders::DeleteTLSInspectionConfigurationFluentBuilder::new(self.handle.clone())
15 }
16}