#[non_exhaustive]pub struct UpdatePortalInput {
pub portal_arn: Option<String>,
pub display_name: Option<String>,
pub authentication_type: Option<AuthenticationType>,
pub instance_type: Option<InstanceType>,
pub max_concurrent_sessions: Option<i32>,
}
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.
display_name: Option<String>
The name of the web portal. This is not visible to users who log into the web portal.
authentication_type: Option<AuthenticationType>
The type of authentication integration points used when signing into the web portal. Defaults to Standard
.
Standard
web portals are authenticated directly through your identity provider. You need to call CreateIdentityProvider
to integrate your identity provider with your web portal. User and group access to your web portal is controlled through your identity provider.
IAM Identity Center
web portals are authenticated through IAM Identity Center (successor to Single Sign-On). Identity sources (including external identity provider integration), plus user and group access to your web portal, can be configured in the IAM Identity Center.
instance_type: Option<InstanceType>
The type and resources of the underlying instance.
max_concurrent_sessions: Option<i32>
The maximum number of concurrent sessions for the portal.
Implementations§
source§impl UpdatePortalInput
impl UpdatePortalInput
sourcepub fn portal_arn(&self) -> Option<&str>
pub fn portal_arn(&self) -> Option<&str>
The ARN of the web portal.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The name of the web portal. This is not visible to users who log into the web portal.
sourcepub fn authentication_type(&self) -> Option<&AuthenticationType>
pub fn authentication_type(&self) -> Option<&AuthenticationType>
The type of authentication integration points used when signing into the web portal. Defaults to Standard
.
Standard
web portals are authenticated directly through your identity provider. You need to call CreateIdentityProvider
to integrate your identity provider with your web portal. User and group access to your web portal is controlled through your identity provider.
IAM Identity Center
web portals are authenticated through IAM Identity Center (successor to Single Sign-On). Identity sources (including external identity provider integration), plus user and group access to your web portal, can be configured in the IAM Identity Center.
sourcepub fn instance_type(&self) -> Option<&InstanceType>
pub fn instance_type(&self) -> Option<&InstanceType>
The type and resources of the underlying instance.
sourcepub fn max_concurrent_sessions(&self) -> Option<i32>
pub fn max_concurrent_sessions(&self) -> Option<i32>
The maximum number of concurrent sessions for the portal.
source§impl UpdatePortalInput
impl UpdatePortalInput
sourcepub fn builder() -> UpdatePortalInputBuilder
pub fn builder() -> UpdatePortalInputBuilder
Creates a new builder-style object to manufacture UpdatePortalInput
.
Trait Implementations§
source§impl Clone for UpdatePortalInput
impl Clone for UpdatePortalInput
source§fn clone(&self) -> UpdatePortalInput
fn clone(&self) -> UpdatePortalInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdatePortalInput
impl Debug for UpdatePortalInput
source§impl PartialEq for UpdatePortalInput
impl PartialEq for UpdatePortalInput
source§fn eq(&self, other: &UpdatePortalInput) -> bool
fn eq(&self, other: &UpdatePortalInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdatePortalInput
Auto Trait Implementations§
impl Freeze for UpdatePortalInput
impl RefUnwindSafe for UpdatePortalInput
impl Send for UpdatePortalInput
impl Sync for UpdatePortalInput
impl Unpin for UpdatePortalInput
impl UnwindSafe for UpdatePortalInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more