Struct aws_sdk_elasticloadbalancingv2::types::TrustStore
source · #[non_exhaustive]pub struct TrustStore {
pub name: Option<String>,
pub trust_store_arn: Option<String>,
pub status: Option<TrustStoreStatus>,
pub number_of_ca_certificates: Option<i32>,
pub total_revoked_entries: Option<i64>,
}
Expand description
Information about a trust store.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the trust store.
trust_store_arn: Option<String>
The Amazon Resource Name (ARN) of the trust store.
status: Option<TrustStoreStatus>
The current status of the trust store.
number_of_ca_certificates: Option<i32>
The number of ca certificates in the trust store.
total_revoked_entries: Option<i64>
The number of revoked certificates in the trust store.
Implementations§
source§impl TrustStore
impl TrustStore
sourcepub fn trust_store_arn(&self) -> Option<&str>
pub fn trust_store_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the trust store.
sourcepub fn status(&self) -> Option<&TrustStoreStatus>
pub fn status(&self) -> Option<&TrustStoreStatus>
The current status of the trust store.
sourcepub fn number_of_ca_certificates(&self) -> Option<i32>
pub fn number_of_ca_certificates(&self) -> Option<i32>
The number of ca certificates in the trust store.
sourcepub fn total_revoked_entries(&self) -> Option<i64>
pub fn total_revoked_entries(&self) -> Option<i64>
The number of revoked certificates in the trust store.
source§impl TrustStore
impl TrustStore
sourcepub fn builder() -> TrustStoreBuilder
pub fn builder() -> TrustStoreBuilder
Creates a new builder-style object to manufacture TrustStore
.
Trait Implementations§
source§impl Clone for TrustStore
impl Clone for TrustStore
source§fn clone(&self) -> TrustStore
fn clone(&self) -> TrustStore
Returns a copy 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 Debug for TrustStore
impl Debug for TrustStore
source§impl PartialEq for TrustStore
impl PartialEq for TrustStore
source§fn eq(&self, other: &TrustStore) -> bool
fn eq(&self, other: &TrustStore) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TrustStore
Auto Trait Implementations§
impl RefUnwindSafe for TrustStore
impl Send for TrustStore
impl Sync for TrustStore
impl Unpin for TrustStore
impl UnwindSafe for TrustStore
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.