Struct aws_sdk_workspacesweb::model::Portal
source · [−]#[non_exhaustive]pub struct Portal {
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>,
pub status_reason: Option<String>,
}
Expand description
The web 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 that users see when using a streaming session.
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 this web portal.
user_settings_arn: Option<String>
The ARN of the trust store 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 store that is associated with the web portal.
status_reason: Option<String>
A message that explains why the web portal is in its current status.
Implementations
sourceimpl Portal
impl Portal
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 that users see when using a streaming session.
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 this web portal.
sourcepub fn user_settings_arn(&self) -> Option<&str>
pub fn user_settings_arn(&self) -> Option<&str>
The ARN of the trust store 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 store that is associated with the web portal.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
A message that explains why the web portal is in its current status.
Trait Implementations
impl StructuralPartialEq for Portal
Auto Trait Implementations
impl RefUnwindSafe for Portal
impl Send for Portal
impl Sync for Portal
impl Unpin for Portal
impl UnwindSafe for Portal
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