#[non_exhaustive]
pub enum VirtualGatewayListenerTlsCertificate {
Acm(VirtualGatewayListenerTlsAcmCertificate),
File(VirtualGatewayListenerTlsFileCertificate),
Sds(VirtualGatewayListenerTlsSdsCertificate),
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(VirtualGatewayListenerTlsAcmCertificate)
A reference to an object that represents an Certificate Manager certificate.
File(VirtualGatewayListenerTlsFileCertificate)
A reference to an object that represents a local file certificate.
Sds(VirtualGatewayListenerTlsSdsCertificate)
A reference to an object that represents a virtual gateway's 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 VirtualGatewayListenerTlsCertificate
impl VirtualGatewayListenerTlsCertificate
sourcepub fn as_acm(&self) -> Result<&VirtualGatewayListenerTlsAcmCertificate, &Self>
pub fn as_acm(&self) -> Result<&VirtualGatewayListenerTlsAcmCertificate, &Self>
Tries to convert the enum instance into Acm
, extracting the inner VirtualGatewayListenerTlsAcmCertificate
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn as_file(
&self
) -> Result<&VirtualGatewayListenerTlsFileCertificate, &Self>
pub fn as_file(
&self
) -> Result<&VirtualGatewayListenerTlsFileCertificate, &Self>
Tries to convert the enum instance into File
, extracting the inner VirtualGatewayListenerTlsFileCertificate
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn as_sds(&self) -> Result<&VirtualGatewayListenerTlsSdsCertificate, &Self>
pub fn as_sds(&self) -> Result<&VirtualGatewayListenerTlsSdsCertificate, &Self>
Tries to convert the enum instance into Sds
, extracting the inner VirtualGatewayListenerTlsSdsCertificate
.
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 VirtualGatewayListenerTlsCertificate
impl Clone for VirtualGatewayListenerTlsCertificate
source§fn clone(&self) -> VirtualGatewayListenerTlsCertificate
fn clone(&self) -> VirtualGatewayListenerTlsCertificate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<VirtualGatewayListenerTlsCertificate> for VirtualGatewayListenerTlsCertificate
impl PartialEq<VirtualGatewayListenerTlsCertificate> for VirtualGatewayListenerTlsCertificate
source§fn eq(&self, other: &VirtualGatewayListenerTlsCertificate) -> bool
fn eq(&self, other: &VirtualGatewayListenerTlsCertificate) -> bool
self
and other
values to be equal, and is used
by ==
.