pub struct CertificateAuthenticationRequest {
pub client_root_certificate_chain_arn: Option<String>,
}Expand description
Information about the client certificate to be used for authentication.
Fields§
§client_root_certificate_chain_arn: Option<String>The ARN of the client certificate. The certificate must be signed by a certificate authority (CA) and it must be provisioned in AWS Certificate Manager (ACM).
Trait Implementations§
Source§impl Clone for CertificateAuthenticationRequest
impl Clone for CertificateAuthenticationRequest
Source§fn clone(&self) -> CertificateAuthenticationRequest
fn clone(&self) -> CertificateAuthenticationRequest
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 CertificateAuthenticationRequest
impl Default for CertificateAuthenticationRequest
Source§fn default() -> CertificateAuthenticationRequest
fn default() -> CertificateAuthenticationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CertificateAuthenticationRequest
impl PartialEq for CertificateAuthenticationRequest
Source§fn eq(&self, other: &CertificateAuthenticationRequest) -> bool
fn eq(&self, other: &CertificateAuthenticationRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CertificateAuthenticationRequest
Auto Trait Implementations§
impl Freeze for CertificateAuthenticationRequest
impl RefUnwindSafe for CertificateAuthenticationRequest
impl Send for CertificateAuthenticationRequest
impl Sync for CertificateAuthenticationRequest
impl Unpin for CertificateAuthenticationRequest
impl UnwindSafe for CertificateAuthenticationRequest
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