#[non_exhaustive]pub struct MutualTlsAuthenticationInput {
pub truststore_uri: Option<String>,
pub truststore_version: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.truststore_uri: Option<String>
An Amazon S3 URL that specifies the truststore for mutual TLS authentication, for example, s3://
truststore_version: Option<String>
The version of the S3 object that contains your truststore. To specify a version, you must have versioning enabled for the S3 bucket.
Implementations§
source§impl MutualTlsAuthenticationInput
impl MutualTlsAuthenticationInput
sourcepub fn truststore_uri(&self) -> Option<&str>
pub fn truststore_uri(&self) -> Option<&str>
An Amazon S3 URL that specifies the truststore for mutual TLS authentication, for example, s3://
sourcepub fn truststore_version(&self) -> Option<&str>
pub fn truststore_version(&self) -> Option<&str>
The version of the S3 object that contains your truststore. To specify a version, you must have versioning enabled for the S3 bucket.
source§impl MutualTlsAuthenticationInput
impl MutualTlsAuthenticationInput
sourcepub fn builder() -> MutualTlsAuthenticationInputBuilder
pub fn builder() -> MutualTlsAuthenticationInputBuilder
Creates a new builder-style object to manufacture MutualTlsAuthenticationInput
.
Trait Implementations§
source§impl Clone for MutualTlsAuthenticationInput
impl Clone for MutualTlsAuthenticationInput
source§fn clone(&self) -> MutualTlsAuthenticationInput
fn clone(&self) -> MutualTlsAuthenticationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MutualTlsAuthenticationInput
impl Debug for MutualTlsAuthenticationInput
source§impl PartialEq for MutualTlsAuthenticationInput
impl PartialEq for MutualTlsAuthenticationInput
source§fn eq(&self, other: &MutualTlsAuthenticationInput) -> bool
fn eq(&self, other: &MutualTlsAuthenticationInput) -> bool
self
and other
values to be equal, and is used
by ==
.