#[non_exhaustive]pub struct CreatePortalInputBuilder { /* private fields */ }
Expand description
A builder for CreatePortalInput
.
Implementations§
source§impl CreatePortalInputBuilder
impl CreatePortalInputBuilder
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. This is not visible to users who log into 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. This is not visible to users who log into the web portal.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
The tags to add to the web portal. A tag is a key-value pair.
The tags to add to the web portal. A tag is a key-value pair.
sourcepub fn customer_managed_key(self, input: impl Into<String>) -> Self
pub fn customer_managed_key(self, input: impl Into<String>) -> Self
The customer managed key of the web portal.
sourcepub fn set_customer_managed_key(self, input: Option<String>) -> Self
pub fn set_customer_managed_key(self, input: Option<String>) -> Self
The customer managed key of the web portal.
sourcepub fn additional_encryption_context(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
pub fn additional_encryption_context( self, k: impl Into<String>, v: impl Into<String> ) -> Self
Adds a key-value pair to additional_encryption_context
.
To override the contents of this collection use set_additional_encryption_context
.
The additional encryption context of the portal.
sourcepub fn set_additional_encryption_context(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_additional_encryption_context( self, input: Option<HashMap<String, String>> ) -> Self
The additional encryption context of the portal.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
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 set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
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, input: AuthenticationType) -> Self
pub fn authentication_type(self, input: AuthenticationType) -> Self
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.
sourcepub fn set_authentication_type(self, input: Option<AuthenticationType>) -> Self
pub fn set_authentication_type(self, input: Option<AuthenticationType>) -> Self
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.
sourcepub fn build(self) -> Result<CreatePortalInput, BuildError>
pub fn build(self) -> Result<CreatePortalInput, BuildError>
Consumes the builder and constructs a CreatePortalInput
.
Trait Implementations§
source§impl Clone for CreatePortalInputBuilder
impl Clone for CreatePortalInputBuilder
source§fn clone(&self) -> CreatePortalInputBuilder
fn clone(&self) -> CreatePortalInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreatePortalInputBuilder
impl Debug for CreatePortalInputBuilder
source§impl Default for CreatePortalInputBuilder
impl Default for CreatePortalInputBuilder
source§fn default() -> CreatePortalInputBuilder
fn default() -> CreatePortalInputBuilder
source§impl PartialEq<CreatePortalInputBuilder> for CreatePortalInputBuilder
impl PartialEq<CreatePortalInputBuilder> for CreatePortalInputBuilder
source§fn eq(&self, other: &CreatePortalInputBuilder) -> bool
fn eq(&self, other: &CreatePortalInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.