Struct cfn::aws::cognito::UserPoolProperties [] [src]

pub struct UserPoolProperties {
    pub admin_create_user_config: Option<Value<AdminCreateUserConfig>>,
    pub alias_attributes: Option<ValueList<String>>,
    pub auto_verified_attributes: Option<ValueList<String>>,
    pub device_configuration: Option<Value<DeviceConfiguration>>,
    pub email_configuration: Option<Value<EmailConfiguration>>,
    pub email_verification_message: Option<Value<String>>,
    pub email_verification_subject: Option<Value<String>>,
    pub lambda_config: Option<Value<LambdaConfig>>,
    pub mfa_configuration: Option<Value<String>>,
    pub policies: Option<Value<Policies>>,
    pub schema: Option<ValueList<SchemaAttribute>>,
    pub sms_authentication_message: Option<Value<String>>,
    pub sms_configuration: Option<Value<SmsConfiguration>>,
    pub sms_verification_message: Option<Value<String>>,
    pub user_pool_name: Option<Value<String>>,
    pub user_pool_tags: Option<Value<Value>>,
}

Properties for the UserPool resource.

Fields

Property AdminCreateUserConfig.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property AliasAttributes.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property AutoVerifiedAttributes.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property DeviceConfiguration.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EmailConfiguration.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EmailVerificationMessage.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EmailVerificationSubject.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property LambdaConfig.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property MfaConfiguration.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Policies.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Schema.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property SmsAuthenticationMessage.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property SmsConfiguration.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property SmsVerificationMessage.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property UserPoolName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property UserPoolTags.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for UserPoolProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for UserPoolProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for UserPoolProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<UserPoolProperties> for UserPool
[src]

[src]

Performs the conversion.

Auto Trait Implementations