#[non_exhaustive]pub struct IdentitySourceItemDetails {
pub client_ids: Option<Vec<String>>,
pub user_pool_arn: Option<String>,
pub discovery_url: Option<String>,
pub open_id_issuer: Option<OpenIdIssuer>,
}Expand description
A structure that contains configuration of the identity source.
This data type was a response parameter for the ListIdentitySources operation. Replaced by ConfigurationItem.
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.client_ids: Option<Vec<String>>The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.
user_pool_arn: Option<String>The Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.
discovery_url: 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
open_id_issuer: 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.
Implementations§
source§impl IdentitySourceItemDetails
impl IdentitySourceItemDetails
sourcepub fn client_ids(&self) -> &[String]
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.clientIds
pub fn client_ids(&self) -> &[String]
The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .client_ids.is_none().
sourcepub fn user_pool_arn(&self) -> Option<&str>
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.userPoolArn
pub fn user_pool_arn(&self) -> Option<&str>
The Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.
sourcepub fn discovery_url(&self) -> Option<&str>
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.issuer
pub fn discovery_url(&self) -> Option<&str>
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) -> Option<&OpenIdIssuer>
👎Deprecated: This attribute has been replaced by configuration
pub fn 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.
source§impl IdentitySourceItemDetails
impl IdentitySourceItemDetails
sourcepub fn builder() -> IdentitySourceItemDetailsBuilder
pub fn builder() -> IdentitySourceItemDetailsBuilder
Creates a new builder-style object to manufacture IdentitySourceItemDetails.
Trait Implementations§
source§impl Clone for IdentitySourceItemDetails
impl Clone for IdentitySourceItemDetails
source§fn clone(&self) -> IdentitySourceItemDetails
fn clone(&self) -> IdentitySourceItemDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for IdentitySourceItemDetails
impl Debug for IdentitySourceItemDetails
source§impl PartialEq for IdentitySourceItemDetails
impl PartialEq for IdentitySourceItemDetails
source§fn eq(&self, other: &IdentitySourceItemDetails) -> bool
fn eq(&self, other: &IdentitySourceItemDetails) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for IdentitySourceItemDetails
Auto Trait Implementations§
impl Freeze for IdentitySourceItemDetails
impl RefUnwindSafe for IdentitySourceItemDetails
impl Send for IdentitySourceItemDetails
impl Sync for IdentitySourceItemDetails
impl Unpin for IdentitySourceItemDetails
impl UnwindSafe for IdentitySourceItemDetails
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