Struct aws_sdk_networkfirewall::operation::delete_tls_inspection_configuration::DeleteTlsInspectionConfigurationInput
source · #[non_exhaustive]pub struct DeleteTlsInspectionConfigurationInput {
pub tls_inspection_configuration_arn: Option<String>,
pub tls_inspection_configuration_name: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.tls_inspection_configuration_arn: Option<String>
The Amazon Resource Name (ARN) of the TLS inspection configuration.
You must specify the ARN or the name, and you can specify both.
tls_inspection_configuration_name: Option<String>
The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it.
You must specify the ARN or the name, and you can specify both.
Implementations§
source§impl DeleteTlsInspectionConfigurationInput
impl DeleteTlsInspectionConfigurationInput
sourcepub fn tls_inspection_configuration_arn(&self) -> Option<&str>
pub fn tls_inspection_configuration_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the TLS inspection configuration.
You must specify the ARN or the name, and you can specify both.
sourcepub fn tls_inspection_configuration_name(&self) -> Option<&str>
pub fn tls_inspection_configuration_name(&self) -> Option<&str>
The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it.
You must specify the ARN or the name, and you can specify both.
source§impl DeleteTlsInspectionConfigurationInput
impl DeleteTlsInspectionConfigurationInput
sourcepub fn builder() -> DeleteTlsInspectionConfigurationInputBuilder
pub fn builder() -> DeleteTlsInspectionConfigurationInputBuilder
Creates a new builder-style object to manufacture DeleteTlsInspectionConfigurationInput
.
Trait Implementations§
source§impl Clone for DeleteTlsInspectionConfigurationInput
impl Clone for DeleteTlsInspectionConfigurationInput
source§fn clone(&self) -> DeleteTlsInspectionConfigurationInput
fn clone(&self) -> DeleteTlsInspectionConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DeleteTlsInspectionConfigurationInput
impl PartialEq for DeleteTlsInspectionConfigurationInput
source§fn eq(&self, other: &DeleteTlsInspectionConfigurationInput) -> bool
fn eq(&self, other: &DeleteTlsInspectionConfigurationInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteTlsInspectionConfigurationInput
Auto Trait Implementations§
impl Freeze for DeleteTlsInspectionConfigurationInput
impl RefUnwindSafe for DeleteTlsInspectionConfigurationInput
impl Send for DeleteTlsInspectionConfigurationInput
impl Sync for DeleteTlsInspectionConfigurationInput
impl Unpin for DeleteTlsInspectionConfigurationInput
impl UnwindSafe for DeleteTlsInspectionConfigurationInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more