#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for Portal
Implementations
sourceimpl Builder
impl Builder
sourcepub fn portal_arn(self, input: impl Into<String>) -> Self
pub fn portal_arn(self, input: impl Into<String>) -> Self
The ARN of the web portal.
sourcepub fn set_portal_arn(self, input: Option<String>) -> Self
pub fn set_portal_arn(self, input: Option<String>) -> Self
The ARN of the web portal.
sourcepub fn renderer_type(self, input: RendererType) -> Self
pub fn renderer_type(self, input: RendererType) -> Self
The renderer that is used in streaming sessions.
sourcepub fn set_renderer_type(self, input: Option<RendererType>) -> Self
pub fn set_renderer_type(self, input: Option<RendererType>) -> Self
The renderer that is used in streaming sessions.
sourcepub fn browser_type(self, input: BrowserType) -> Self
pub fn browser_type(self, input: BrowserType) -> Self
The browser that users see when using a streaming session.
sourcepub fn set_browser_type(self, input: Option<BrowserType>) -> Self
pub fn set_browser_type(self, input: Option<BrowserType>) -> Self
The browser that users see when using a streaming session.
sourcepub fn portal_status(self, input: PortalStatus) -> Self
pub fn portal_status(self, input: PortalStatus) -> Self
The status of the web portal.
sourcepub fn set_portal_status(self, input: Option<PortalStatus>) -> Self
pub fn set_portal_status(self, input: Option<PortalStatus>) -> Self
The status of the web portal.
sourcepub fn portal_endpoint(self, input: impl Into<String>) -> Self
pub fn portal_endpoint(self, input: impl Into<String>) -> Self
The endpoint URL of the web portal that users access in order to start streaming sessions.
sourcepub fn set_portal_endpoint(self, input: Option<String>) -> Self
pub fn set_portal_endpoint(self, input: Option<String>) -> Self
The endpoint URL of the web portal that users access in order to start streaming sessions.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The name of the web portal.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
The name of the web portal.
sourcepub fn creation_date(self, input: DateTime) -> Self
pub fn creation_date(self, input: DateTime) -> Self
The creation date of the web portal.
sourcepub fn set_creation_date(self, input: Option<DateTime>) -> Self
pub fn set_creation_date(self, input: Option<DateTime>) -> Self
The creation date of the web portal.
sourcepub fn browser_settings_arn(self, input: impl Into<String>) -> Self
pub fn browser_settings_arn(self, input: impl Into<String>) -> Self
The ARN of the browser settings that is associated with this web portal.
sourcepub fn set_browser_settings_arn(self, input: Option<String>) -> Self
pub fn set_browser_settings_arn(self, input: Option<String>) -> Self
The ARN of the browser settings that is associated with this web portal.
sourcepub fn user_settings_arn(self, input: impl Into<String>) -> Self
pub fn user_settings_arn(self, input: impl Into<String>) -> Self
The ARN of the trust store that is associated with the web portal.
sourcepub fn set_user_settings_arn(self, input: Option<String>) -> Self
pub fn set_user_settings_arn(self, input: Option<String>) -> Self
The ARN of the trust store that is associated with the web portal.
sourcepub fn network_settings_arn(self, input: impl Into<String>) -> Self
pub fn network_settings_arn(self, input: impl Into<String>) -> Self
The ARN of the network settings that is associated with the web portal.
sourcepub fn set_network_settings_arn(self, input: Option<String>) -> Self
pub fn set_network_settings_arn(self, input: Option<String>) -> Self
The ARN of the network settings that is associated with the web portal.
sourcepub fn trust_store_arn(self, input: impl Into<String>) -> Self
pub fn trust_store_arn(self, input: impl Into<String>) -> Self
The ARN of the trust store that is associated with the web portal.
sourcepub fn set_trust_store_arn(self, input: Option<String>) -> Self
pub fn set_trust_store_arn(self, input: Option<String>) -> Self
The ARN of the trust store that is associated with the web portal.
sourcepub fn status_reason(self, input: impl Into<String>) -> Self
pub fn status_reason(self, input: impl Into<String>) -> Self
A message that explains why the web portal is in its current status.
sourcepub fn set_status_reason(self, input: Option<String>) -> Self
pub fn set_status_reason(self, input: Option<String>) -> Self
A message that explains why the web portal is in its current status.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
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