pub struct VirtualGatewayListenerTlsFileCertificate {
pub certificate_chain: String,
pub private_key: String,
}
Expand description
An object that represents a local file certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).
Fields§
§certificate_chain: String
The certificate chain for the certificate.
private_key: String
The private key for a certificate stored on the file system of the mesh endpoint that the proxy is running on.
Trait Implementations§
Source§impl Clone for VirtualGatewayListenerTlsFileCertificate
impl Clone for VirtualGatewayListenerTlsFileCertificate
Source§fn clone(&self) -> VirtualGatewayListenerTlsFileCertificate
fn clone(&self) -> VirtualGatewayListenerTlsFileCertificate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for VirtualGatewayListenerTlsFileCertificate
impl Default for VirtualGatewayListenerTlsFileCertificate
Source§fn default() -> VirtualGatewayListenerTlsFileCertificate
fn default() -> VirtualGatewayListenerTlsFileCertificate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VirtualGatewayListenerTlsFileCertificate
impl<'de> Deserialize<'de> for VirtualGatewayListenerTlsFileCertificate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for VirtualGatewayListenerTlsFileCertificate
impl PartialEq for VirtualGatewayListenerTlsFileCertificate
Source§fn eq(&self, other: &VirtualGatewayListenerTlsFileCertificate) -> bool
fn eq(&self, other: &VirtualGatewayListenerTlsFileCertificate) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for VirtualGatewayListenerTlsFileCertificate
Auto Trait Implementations§
impl Freeze for VirtualGatewayListenerTlsFileCertificate
impl RefUnwindSafe for VirtualGatewayListenerTlsFileCertificate
impl Send for VirtualGatewayListenerTlsFileCertificate
impl Sync for VirtualGatewayListenerTlsFileCertificate
impl Unpin for VirtualGatewayListenerTlsFileCertificate
impl UnwindSafe for VirtualGatewayListenerTlsFileCertificate
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
Mutably borrows from an owned value. Read more