#[non_exhaustive]pub struct UpdateCognitoUserPoolConfiguration {
pub user_pool_arn: String,
pub client_ids: Option<Vec<String>>,
}Expand description
Contains configuration details of a Amazon Cognito user pool for use with an identity source.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.user_pool_arn: StringThe Amazon Resource Name (ARN) of the Amazon Cognito user pool associated with this identity source.
client_ids: Option<Vec<String>>The client ID of an app client that is configured for the specified Amazon Cognito user pool.
Implementations§
source§impl UpdateCognitoUserPoolConfiguration
impl UpdateCognitoUserPoolConfiguration
sourcepub fn user_pool_arn(&self) -> &str
pub fn user_pool_arn(&self) -> &str
The Amazon Resource Name (ARN) of the Amazon Cognito user pool associated with this identity source.
sourcepub fn client_ids(&self) -> &[String]
pub fn client_ids(&self) -> &[String]
The client ID of an app client that is configured for the specified Amazon Cognito user pool.
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().
source§impl UpdateCognitoUserPoolConfiguration
impl UpdateCognitoUserPoolConfiguration
sourcepub fn builder() -> UpdateCognitoUserPoolConfigurationBuilder
pub fn builder() -> UpdateCognitoUserPoolConfigurationBuilder
Creates a new builder-style object to manufacture UpdateCognitoUserPoolConfiguration.
Trait Implementations§
source§impl Clone for UpdateCognitoUserPoolConfiguration
impl Clone for UpdateCognitoUserPoolConfiguration
source§fn clone(&self) -> UpdateCognitoUserPoolConfiguration
fn clone(&self) -> UpdateCognitoUserPoolConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq for UpdateCognitoUserPoolConfiguration
impl PartialEq for UpdateCognitoUserPoolConfiguration
source§fn eq(&self, other: &UpdateCognitoUserPoolConfiguration) -> bool
fn eq(&self, other: &UpdateCognitoUserPoolConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateCognitoUserPoolConfiguration
Auto Trait Implementations§
impl Freeze for UpdateCognitoUserPoolConfiguration
impl RefUnwindSafe for UpdateCognitoUserPoolConfiguration
impl Send for UpdateCognitoUserPoolConfiguration
impl Sync for UpdateCognitoUserPoolConfiguration
impl Unpin for UpdateCognitoUserPoolConfiguration
impl UnwindSafe for UpdateCognitoUserPoolConfiguration
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.