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
impl StructuralPartialEq for CognitoUserPoolConfig
Auto Trait Implementations§
impl Freeze for CognitoUserPoolConfig
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> 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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.