Class SchemaAttributeType
- java.lang.Object
-
- software.amazon.awssdk.services.cognitoidentityprovider.model.SchemaAttributeType
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<SchemaAttributeType.Builder,SchemaAttributeType>
@Generated("software.amazon.awssdk:codegen") public final class SchemaAttributeType extends Object implements SdkPojo, Serializable, ToCopyableBuilder<SchemaAttributeType.Builder,SchemaAttributeType>
A list of the user attributes and their properties in your user pool. The attribute schema contains standard attributes, custom attributes with a
custom:prefix, and developer attributes with adev:prefix. For more information, see User pool attributes.Developer-only attributes are a legacy feature of user pools, are read-only to all app clients. You can create and update developer-only attributes only with IAM-authenticated API operations. Use app client read/write permissions instead.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceSchemaAttributeType.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AttributeDataTypeattributeDataType()The data format of the values for your attribute.StringattributeDataTypeAsString()The data format of the values for your attribute.static SchemaAttributeType.Builderbuilder()BooleandeveloperOnlyAttribute()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()Booleanmutable()Specifies whether the value of the attribute can be changed.Stringname()The name of your user pool attribute.NumberAttributeConstraintsTypenumberAttributeConstraints()Specifies the constraints for an attribute of the number type.Booleanrequired()Specifies whether a user pool attribute is required.List<SdkField<?>>sdkFields()static Class<? extends SchemaAttributeType.Builder>serializableBuilderClass()StringAttributeConstraintsTypestringAttributeConstraints()Specifies the constraints for an attribute of the string type.SchemaAttributeType.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
name
public final String 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
Namevalue ofMyAttribute, Amazon Cognito creates the custom attributecustom:MyAttribute. WhenDeveloperOnlyAttributeistrue, Amazon Cognito creates your attribute asdev:MyAttribute. In an operation that describes a user pool, Amazon Cognito returns this value asvaluefor standard attributes,custom:valuefor custom attributes, anddev:valuefor developer-only attributes..- Returns:
- 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
Namevalue ofMyAttribute, Amazon Cognito creates the custom attributecustom:MyAttribute. WhenDeveloperOnlyAttributeistrue, Amazon Cognito creates your attribute asdev:MyAttribute. In an operation that describes a user pool, Amazon Cognito returns this value asvaluefor standard attributes,custom:valuefor custom attributes, anddev:valuefor developer-only attributes..
-
attributeDataType
public final AttributeDataType 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".If the service returns an enum value that is not available in the current SDK version,
attributeDataTypewill returnAttributeDataType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromattributeDataTypeAsString().- Returns:
- 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". - See Also:
AttributeDataType
-
attributeDataTypeAsString
public final String attributeDataTypeAsString()
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".If the service returns an enum value that is not available in the current SDK version,
attributeDataTypewill returnAttributeDataType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromattributeDataTypeAsString().- Returns:
- 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". - See Also:
AttributeDataType
-
developerOnlyAttribute
public final Boolean developerOnlyAttribute()
You should use 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 won't be able to modify this attribute using their access token. For example,
DeveloperOnlyAttributecan be modified using AdminUpdateUserAttributes but can't be updated using UpdateUserAttributes.- Returns:
You should use 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 won't be able to modify this attribute using their access token. For example,
DeveloperOnlyAttributecan be modified using AdminUpdateUserAttributes but can't be updated using UpdateUserAttributes.
-
mutable
public final Boolean 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.- Returns:
- 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.
-
required
public final Boolean 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.
- Returns:
- 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.
-
numberAttributeConstraints
public final NumberAttributeConstraintsType numberAttributeConstraints()
Specifies the constraints for an attribute of the number type.
- Returns:
- Specifies the constraints for an attribute of the number type.
-
stringAttributeConstraints
public final StringAttributeConstraintsType stringAttributeConstraints()
Specifies the constraints for an attribute of the string type.
- Returns:
- Specifies the constraints for an attribute of the string type.
-
toBuilder
public SchemaAttributeType.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<SchemaAttributeType.Builder,SchemaAttributeType>
-
builder
public static SchemaAttributeType.Builder builder()
-
serializableBuilderClass
public static Class<? extends SchemaAttributeType.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-