pub struct ServerAndClientVerification {
pub ca_certificate: Option<String>,
pub client_certificate: Option<String>,
pub client_key: Option<String>,
pub server_certificate_hostname: Option<String>,
}Expand description
Message represents the option where Datastream will enforce the encryption and authenticate the server identity as well as the client identity. ca_certificate, client_certificate and client_key must be set if user selects this option.
This type is not used in any activity, and only used as part of another schema.
Fields§
§ca_certificate: Option<String>Required. Input only. PEM-encoded server root CA certificate.
client_certificate: Option<String>Required. Input only. PEM-encoded certificate used by the source database to authenticate the client identity (i.e., the Datastream’s identity). This certificate is signed by either a root certificate trusted by the server or one or more intermediate certificates (which is stored with the leaf certificate) to link the this certificate to the trusted root certificate.
client_key: Option<String>Optional. Input only. PEM-encoded private key associated with the client certificate. This value will be used during the SSL/TLS handshake, allowing the PostgreSQL server to authenticate the client’s identity, i.e. identity of the Datastream.
server_certificate_hostname: Option<String>Optional. The hostname mentioned in the Subject or SAN extension of the server certificate. If this field is not provided, the hostname in the server certificate is not validated.
Trait Implementations§
Source§impl Clone for ServerAndClientVerification
impl Clone for ServerAndClientVerification
Source§fn clone(&self) -> ServerAndClientVerification
fn clone(&self) -> ServerAndClientVerification
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more