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§
source§impl 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.
source§impl TrustStore
impl TrustStore
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
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<TrustStore> for TrustStore
impl PartialEq<TrustStore> 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 ==
.