Struct aws_sdk_workspacesweb::model::PortalSummary
source · [−]#[non_exhaustive]pub struct PortalSummary {
pub portal_arn: Option<String>,
pub renderer_type: Option<RendererType>,
pub browser_type: Option<BrowserType>,
pub portal_status: Option<PortalStatus>,
pub portal_endpoint: Option<String>,
pub display_name: Option<String>,
pub creation_date: Option<DateTime>,
pub browser_settings_arn: Option<String>,
pub user_settings_arn: Option<String>,
pub network_settings_arn: Option<String>,
pub trust_store_arn: Option<String>,
}
Expand description
The summary of the portal.
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.portal_arn: Option<String>
The ARN of the web portal.
renderer_type: Option<RendererType>
The renderer that is used in streaming sessions.
browser_type: Option<BrowserType>
The browser type of the web portal.
portal_status: Option<PortalStatus>
The status of the web portal.
portal_endpoint: Option<String>
The endpoint URL of the web portal that users access in order to start streaming sessions.
display_name: Option<String>
The name of the web portal.
creation_date: Option<DateTime>
The creation date of the web portal.
browser_settings_arn: Option<String>
The ARN of the browser settings that is associated with the web portal.
user_settings_arn: Option<String>
The ARN of the user settings that is associated with the web portal.
network_settings_arn: Option<String>
The ARN of the network settings that is associated with the web portal.
trust_store_arn: Option<String>
The ARN of the trust that is associated with this web portal.
Implementations
sourceimpl PortalSummary
impl PortalSummary
sourcepub fn portal_arn(&self) -> Option<&str>
pub fn portal_arn(&self) -> Option<&str>
The ARN of the web portal.
sourcepub fn renderer_type(&self) -> Option<&RendererType>
pub fn renderer_type(&self) -> Option<&RendererType>
The renderer that is used in streaming sessions.
sourcepub fn browser_type(&self) -> Option<&BrowserType>
pub fn browser_type(&self) -> Option<&BrowserType>
The browser type of the web portal.
sourcepub fn portal_status(&self) -> Option<&PortalStatus>
pub fn portal_status(&self) -> Option<&PortalStatus>
The status of the web portal.
sourcepub fn portal_endpoint(&self) -> Option<&str>
pub fn portal_endpoint(&self) -> Option<&str>
The endpoint URL of the web portal that users access in order to start streaming sessions.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The name of the web portal.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The creation date of the web portal.
sourcepub fn browser_settings_arn(&self) -> Option<&str>
pub fn browser_settings_arn(&self) -> Option<&str>
The ARN of the browser settings that is associated with the web portal.
sourcepub fn user_settings_arn(&self) -> Option<&str>
pub fn user_settings_arn(&self) -> Option<&str>
The ARN of the user settings that is associated with the web portal.
sourcepub fn network_settings_arn(&self) -> Option<&str>
pub fn network_settings_arn(&self) -> Option<&str>
The ARN of the network settings that is associated with the web portal.
sourcepub fn trust_store_arn(&self) -> Option<&str>
pub fn trust_store_arn(&self) -> Option<&str>
The ARN of the trust that is associated with this web portal.
sourceimpl PortalSummary
impl PortalSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PortalSummary
Trait Implementations
sourceimpl Clone for PortalSummary
impl Clone for PortalSummary
sourcefn clone(&self) -> PortalSummary
fn clone(&self) -> PortalSummary
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 more
sourceimpl Debug for PortalSummary
impl Debug for PortalSummary
sourceimpl PartialEq<PortalSummary> for PortalSummary
impl PartialEq<PortalSummary> for PortalSummary
sourcefn eq(&self, other: &PortalSummary) -> bool
fn eq(&self, other: &PortalSummary) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PortalSummary) -> bool
fn ne(&self, other: &PortalSummary) -> bool
This method tests for !=
.
impl StructuralPartialEq for PortalSummary
Auto Trait Implementations
impl RefUnwindSafe for PortalSummary
impl Send for PortalSummary
impl Sync for PortalSummary
impl Unpin for PortalSummary
impl UnwindSafe for PortalSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more