Struct aws_sdk_appsync::types::CognitoUserPoolConfig
source · #[non_exhaustive]pub struct CognitoUserPoolConfig {
pub user_pool_id: String,
pub aws_region: String,
pub app_id_client_regex: Option<String>,
}
Expand description
Describes an Amazon Cognito user pool configuration.
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_id: String
The user pool ID.
aws_region: String
The Amazon Web Services Region in which the user pool was created.
app_id_client_regex: Option<String>
A regular expression for validating the incoming Amazon Cognito user pool app client ID. If this value isn't set, no filtering is applied.
Implementations§
source§impl CognitoUserPoolConfig
impl CognitoUserPoolConfig
sourcepub fn user_pool_id(&self) -> &str
pub fn user_pool_id(&self) -> &str
The user pool ID.
sourcepub fn aws_region(&self) -> &str
pub fn aws_region(&self) -> &str
The Amazon Web Services Region in which the user pool was created.
sourcepub fn app_id_client_regex(&self) -> Option<&str>
pub fn app_id_client_regex(&self) -> Option<&str>
A regular expression for validating the incoming Amazon Cognito user pool app client ID. If this value isn't set, no filtering is applied.
source§impl CognitoUserPoolConfig
impl CognitoUserPoolConfig
sourcepub fn builder() -> CognitoUserPoolConfigBuilder
pub fn builder() -> CognitoUserPoolConfigBuilder
Creates a new builder-style object to manufacture CognitoUserPoolConfig
.
Trait Implementations§
source§impl Clone for CognitoUserPoolConfig
impl Clone for CognitoUserPoolConfig
source§fn clone(&self) -> CognitoUserPoolConfig
fn clone(&self) -> CognitoUserPoolConfig
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 Debug for CognitoUserPoolConfig
impl Debug for CognitoUserPoolConfig
source§impl PartialEq for CognitoUserPoolConfig
impl PartialEq for CognitoUserPoolConfig
source§fn eq(&self, other: &CognitoUserPoolConfig) -> bool
fn eq(&self, other: &CognitoUserPoolConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CognitoUserPoolConfig
Auto Trait Implementations§
impl RefUnwindSafe for CognitoUserPoolConfig
impl Send for CognitoUserPoolConfig
impl Sync for CognitoUserPoolConfig
impl Unpin for CognitoUserPoolConfig
impl UnwindSafe for CognitoUserPoolConfig
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.