Struct aws_sdk_workspacesweb::model::TrustStore
source · [−]#[non_exhaustive]pub struct TrustStore { /* private fields */ }
Expand description
A trust store that can be associated with a web portal. A trust store contains certificate authority (CA) certificates. Once associated with a web portal, the browser in a streaming session will recognize certificates that have been issued using any of the CAs in the trust store. If your organization has internal websites that use certificates issued by private CAs, you should add the private CA certificate to the trust store.
Implementations
sourceimpl TrustStore
impl TrustStore
sourcepub fn associated_portal_arns(&self) -> Option<&[String]>
pub fn associated_portal_arns(&self) -> Option<&[String]>
A list of web portal ARNs that this trust store is associated with.
sourcepub fn trust_store_arn(&self) -> Option<&str>
pub fn trust_store_arn(&self) -> Option<&str>
The ARN of the trust store.
sourceimpl TrustStore
impl TrustStore
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TrustStore
.
Trait Implementations
sourceimpl Clone for TrustStore
impl Clone for TrustStore
sourcefn clone(&self) -> TrustStore
fn clone(&self) -> TrustStore
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for TrustStore
impl Debug for TrustStore
sourceimpl PartialEq<TrustStore> for TrustStore
impl PartialEq<TrustStore> for TrustStore
sourcefn eq(&self, other: &TrustStore) -> bool
fn eq(&self, other: &TrustStore) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more