#[non_exhaustive]pub struct IdentitySourceItemDetailsBuilder { /* private fields */ }Expand description
A builder for IdentitySourceItemDetails.
Implementations§
source§impl IdentitySourceItemDetailsBuilder
impl IdentitySourceItemDetailsBuilder
sourcepub fn client_ids(self, input: impl Into<String>) -> Self
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.clientIds
pub fn client_ids(self, input: impl Into<String>) -> Self
Appends an item to client_ids.
To override the contents of this collection use set_client_ids.
The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.
sourcepub fn set_client_ids(self, input: Option<Vec<String>>) -> Self
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.clientIds
pub fn set_client_ids(self, input: Option<Vec<String>>) -> Self
The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.
sourcepub fn get_client_ids(&self) -> &Option<Vec<String>>
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.clientIds
pub fn get_client_ids(&self) -> &Option<Vec<String>>
The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.
sourcepub fn user_pool_arn(self, input: impl Into<String>) -> Self
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.userPoolArn
pub fn user_pool_arn(self, input: impl Into<String>) -> Self
The Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.
sourcepub fn set_user_pool_arn(self, input: Option<String>) -> Self
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.userPoolArn
pub fn set_user_pool_arn(self, input: Option<String>) -> Self
The Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.
sourcepub fn get_user_pool_arn(&self) -> &Option<String>
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.userPoolArn
pub fn get_user_pool_arn(&self) -> &Option<String>
The Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.
sourcepub fn discovery_url(self, input: impl Into<String>) -> Self
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.issuer
pub fn discovery_url(self, input: impl Into<String>) -> Self
The well-known URL that points to this user pool's OIDC discovery endpoint. This is a URL string in the following format. This URL replaces the placeholders for both the Amazon Web Services Region and the user pool identifier with those appropriate for this user pool.
https://cognito-idp.<region>.amazonaws.com/<user-pool-id>/.well-known/openid-configuration
sourcepub fn set_discovery_url(self, input: Option<String>) -> Self
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.issuer
pub fn set_discovery_url(self, input: Option<String>) -> Self
The well-known URL that points to this user pool's OIDC discovery endpoint. This is a URL string in the following format. This URL replaces the placeholders for both the Amazon Web Services Region and the user pool identifier with those appropriate for this user pool.
https://cognito-idp.<region>.amazonaws.com/<user-pool-id>/.well-known/openid-configuration
sourcepub fn get_discovery_url(&self) -> &Option<String>
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.issuer
pub fn get_discovery_url(&self) -> &Option<String>
The well-known URL that points to this user pool's OIDC discovery endpoint. This is a URL string in the following format. This URL replaces the placeholders for both the Amazon Web Services Region and the user pool identifier with those appropriate for this user pool.
https://cognito-idp.<region>.amazonaws.com/<user-pool-id>/.well-known/openid-configuration
sourcepub fn open_id_issuer(self, input: OpenIdIssuer) -> Self
👎Deprecated: This attribute has been replaced by configuration
pub fn open_id_issuer(self, input: OpenIdIssuer) -> Self
A string that identifies the type of OIDC service represented by this identity source.
At this time, the only valid value is cognito.
sourcepub fn set_open_id_issuer(self, input: Option<OpenIdIssuer>) -> Self
👎Deprecated: This attribute has been replaced by configuration
pub fn set_open_id_issuer(self, input: Option<OpenIdIssuer>) -> Self
A string that identifies the type of OIDC service represented by this identity source.
At this time, the only valid value is cognito.
sourcepub fn get_open_id_issuer(&self) -> &Option<OpenIdIssuer>
👎Deprecated: This attribute has been replaced by configuration
pub fn get_open_id_issuer(&self) -> &Option<OpenIdIssuer>
A string that identifies the type of OIDC service represented by this identity source.
At this time, the only valid value is cognito.
sourcepub fn build(self) -> IdentitySourceItemDetails
pub fn build(self) -> IdentitySourceItemDetails
Consumes the builder and constructs a IdentitySourceItemDetails.
Trait Implementations§
source§impl Clone for IdentitySourceItemDetailsBuilder
impl Clone for IdentitySourceItemDetailsBuilder
source§fn clone(&self) -> IdentitySourceItemDetailsBuilder
fn clone(&self) -> IdentitySourceItemDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for IdentitySourceItemDetailsBuilder
impl Default for IdentitySourceItemDetailsBuilder
source§fn default() -> IdentitySourceItemDetailsBuilder
fn default() -> IdentitySourceItemDetailsBuilder
source§impl PartialEq for IdentitySourceItemDetailsBuilder
impl PartialEq for IdentitySourceItemDetailsBuilder
source§fn eq(&self, other: &IdentitySourceItemDetailsBuilder) -> bool
fn eq(&self, other: &IdentitySourceItemDetailsBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IdentitySourceItemDetailsBuilder
Auto Trait Implementations§
impl Freeze for IdentitySourceItemDetailsBuilder
impl RefUnwindSafe for IdentitySourceItemDetailsBuilder
impl Send for IdentitySourceItemDetailsBuilder
impl Sync for IdentitySourceItemDetailsBuilder
impl Unpin for IdentitySourceItemDetailsBuilder
impl UnwindSafe for IdentitySourceItemDetailsBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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