#[non_exhaustive]pub struct CreatePortalInput {
pub display_name: Option<String>,
pub tags: Option<Vec<Tag>>,
pub customer_managed_key: Option<String>,
pub additional_encryption_context: Option<HashMap<String, String>>,
pub client_token: Option<String>,
pub authentication_type: Option<AuthenticationType>,
}
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.display_name: Option<String>
The name of the web portal. This is not visible to users who log into the web portal.
The tags to add to the web portal. A tag is a key-value pair.
customer_managed_key: Option<String>
The customer managed key of the web portal.
additional_encryption_context: Option<HashMap<String, String>>
The additional encryption context of the portal.
client_token: Option<String>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request.
If you do not specify a client token, one is automatically generated by the AWS SDK.
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 AWS IAM Identity Center (successor to AWS Single Sign-On). They provide additional features, such as IdP-initiated authentication. Identity sources (including external identity provider integration), plus user and group access to your web portal, can be configured in the IAM Identity Center.
Implementations§
source§impl CreatePortalInput
impl CreatePortalInput
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.
The tags to add to the web portal. A tag is a key-value pair.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
sourcepub fn customer_managed_key(&self) -> Option<&str>
pub fn customer_managed_key(&self) -> Option<&str>
The customer managed key of the web portal.
sourcepub fn additional_encryption_context(&self) -> Option<&HashMap<String, String>>
pub fn additional_encryption_context(&self) -> Option<&HashMap<String, String>>
The additional encryption context of the portal.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request.
If you do not specify a client token, one is automatically generated by the AWS SDK.
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 AWS IAM Identity Center (successor to AWS Single Sign-On). They provide additional features, such as IdP-initiated authentication. Identity sources (including external identity provider integration), plus user and group access to your web portal, can be configured in the IAM Identity Center.
source§impl CreatePortalInput
impl CreatePortalInput
sourcepub fn builder() -> CreatePortalInputBuilder
pub fn builder() -> CreatePortalInputBuilder
Creates a new builder-style object to manufacture CreatePortalInput
.
Trait Implementations§
source§impl Clone for CreatePortalInput
impl Clone for CreatePortalInput
source§fn clone(&self) -> CreatePortalInput
fn clone(&self) -> CreatePortalInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreatePortalInput
impl Debug for CreatePortalInput
source§impl PartialEq for CreatePortalInput
impl PartialEq for CreatePortalInput
source§fn eq(&self, other: &CreatePortalInput) -> bool
fn eq(&self, other: &CreatePortalInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreatePortalInput
Auto Trait Implementations§
impl Freeze for CreatePortalInput
impl RefUnwindSafe for CreatePortalInput
impl Send for CreatePortalInput
impl Sync for CreatePortalInput
impl Unpin for CreatePortalInput
impl UnwindSafe for CreatePortalInput
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> 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