All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.cognito.kotlin.outputs.UserPoolSchemaAttribute.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.cognito.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property attributeDataType The data format of the values for your attribute. When you choose an `AttributeDataType` , Amazon Cognito validates the input against the data type. A custom attribute value in your user's ID token is always a string, for example `"custom:isMember" : "true"` or `"custom:YearsAsMember" : "12"` .
 * @property developerOnlyAttribute > We recommend that you use [WriteAttributes](https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_UserPoolClientType.html#CognitoUserPools-Type-UserPoolClientType-WriteAttributes) in the user pool client to control how attributes can be mutated for new use cases instead of using `DeveloperOnlyAttribute` .
 * Specifies whether the attribute type is developer only. This attribute can only be modified by an administrator. Users will not be able to modify this attribute using their access token.
 * @property mutable Specifies whether the value of the attribute can be changed.
 * Any user pool attribute whose value you map from an IdP attribute must be mutable, with a parameter value of `true` . Amazon Cognito updates mapped attributes when users sign in to your application through an IdP. If an attribute is immutable, Amazon Cognito throws an error when it attempts to update the attribute. For more information, see [Specifying Identity Provider Attribute Mappings for Your User Pool](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-specifying-attribute-mapping.html) .
 * @property name The name of your user pool attribute. When you create or update a user pool, adding a schema attribute creates a custom or developer-only attribute. When you add an attribute with a `Name` value of `MyAttribute` , Amazon Cognito creates the custom attribute `custom:MyAttribute` . When `DeveloperOnlyAttribute` is `true` , Amazon Cognito creates your attribute as `dev:MyAttribute` . In an operation that describes a user pool, Amazon Cognito returns this value as `value` for standard attributes, `custom:value` for custom attributes, and `dev:value` for developer-only attributes..
 * @property numberAttributeConstraints Specifies the constraints for an attribute of the number type.
 * @property required Specifies whether a user pool attribute is required. If the attribute is required and the user doesn't provide a value, registration or sign-in will fail.
 * @property stringAttributeConstraints Specifies the constraints for an attribute of the string type.
 */
public data class UserPoolSchemaAttribute(
    public val attributeDataType: String? = null,
    public val developerOnlyAttribute: Boolean? = null,
    public val mutable: Boolean? = null,
    public val name: String? = null,
    public val numberAttributeConstraints: UserPoolNumberAttributeConstraints? = null,
    public val required: Boolean? = null,
    public val stringAttributeConstraints: UserPoolStringAttributeConstraints? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.cognito.outputs.UserPoolSchemaAttribute): UserPoolSchemaAttribute = UserPoolSchemaAttribute(
            attributeDataType = javaType.attributeDataType().map({ args0 -> args0 }).orElse(null),
            developerOnlyAttribute = javaType.developerOnlyAttribute().map({ args0 -> args0 }).orElse(null),
            mutable = javaType.mutable().map({ args0 -> args0 }).orElse(null),
            name = javaType.name().map({ args0 -> args0 }).orElse(null),
            numberAttributeConstraints = javaType.numberAttributeConstraints().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.cognito.kotlin.outputs.UserPoolNumberAttributeConstraints.Companion.toKotlin(args0)
                })
            }).orElse(null),
            required = javaType.required().map({ args0 -> args0 }).orElse(null),
            stringAttributeConstraints = javaType.stringAttributeConstraints().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.cognito.kotlin.outputs.UserPoolStringAttributeConstraints.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy