#[non_exhaustive]
pub enum ListenerTlsCertificate {
Acm(ListenerTlsAcmCertificate),
File(ListenerTlsFileCertificate),
Sds(ListenerTlsSdsCertificate),
Unknown,
}
Expand description
An object that represents a listener's Transport Layer Security (TLS) certificate.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Acm(ListenerTlsAcmCertificate)
A reference to an object that represents an Certificate Manager certificate.
File(ListenerTlsFileCertificate)
A reference to an object that represents a local file certificate.
Sds(ListenerTlsSdsCertificate)
A reference to an object that represents a listener's Secret Discovery Service certificate.
Unknown
The Unknown
variant represents cases where new union variant was received. Consider upgrading the SDK to the latest available version.
An unknown enum variant
Note: If you encounter this error, consider upgrading your SDK to the latest version.
The Unknown
variant represents cases where the server sent a value that wasn’t recognized
by the client. This can happen when the server adds new functionality, but the client has not been updated.
To investigate this, consider turning on debug logging to print the raw HTTP response.
Implementations§
source§impl ListenerTlsCertificate
impl ListenerTlsCertificate
sourcepub fn as_acm(&self) -> Result<&ListenerTlsAcmCertificate, &Self>
pub fn as_acm(&self) -> Result<&ListenerTlsAcmCertificate, &Self>
Tries to convert the enum instance into Acm
, extracting the inner ListenerTlsAcmCertificate
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn as_file(&self) -> Result<&ListenerTlsFileCertificate, &Self>
pub fn as_file(&self) -> Result<&ListenerTlsFileCertificate, &Self>
Tries to convert the enum instance into File
, extracting the inner ListenerTlsFileCertificate
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn as_sds(&self) -> Result<&ListenerTlsSdsCertificate, &Self>
pub fn as_sds(&self) -> Result<&ListenerTlsSdsCertificate, &Self>
Tries to convert the enum instance into Sds
, extracting the inner ListenerTlsSdsCertificate
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn is_unknown(&self) -> bool
pub fn is_unknown(&self) -> bool
Returns true if the enum instance is the Unknown
variant.
Trait Implementations§
source§impl Clone for ListenerTlsCertificate
impl Clone for ListenerTlsCertificate
source§fn clone(&self) -> ListenerTlsCertificate
fn clone(&self) -> ListenerTlsCertificate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListenerTlsCertificate
impl Debug for ListenerTlsCertificate
source§impl PartialEq<ListenerTlsCertificate> for ListenerTlsCertificate
impl PartialEq<ListenerTlsCertificate> for ListenerTlsCertificate
source§fn eq(&self, other: &ListenerTlsCertificate) -> bool
fn eq(&self, other: &ListenerTlsCertificate) -> bool
self
and other
values to be equal, and is used
by ==
.