Interface CfnUserPool.SchemaAttributeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPool.SchemaAttributeProperty.Jsii$Proxy
- Enclosing class:
CfnUserPool
The attribute schema contains standard attributes, custom attributes with a custom: prefix, and developer attributes with a dev: prefix. For more information, see User pool attributes .
Developer-only dev: attributes are a legacy feature of user pools, and 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.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cognito.*;
SchemaAttributeProperty schemaAttributeProperty = SchemaAttributeProperty.builder()
.attributeDataType("attributeDataType")
.developerOnlyAttribute(false)
.mutable(false)
.name("name")
.numberAttributeConstraints(NumberAttributeConstraintsProperty.builder()
.maxValue("maxValue")
.minValue("minValue")
.build())
.required(false)
.stringAttributeConstraints(StringAttributeConstraintsProperty.builder()
.maxLength("maxLength")
.minLength("minLength")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserPool.SchemaAttributePropertystatic final classAn implementation forCfnUserPool.SchemaAttributeProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe data format of the values for your attribute.default Objectdefault ObjectSpecifies whether the value of the attribute can be changed.default StringgetName()The name of your user pool attribute.default ObjectSpecifies the constraints for an attribute of the number type.default ObjectSpecifies whether a user pool attribute is required.default ObjectSpecifies the constraints for an attribute of the string type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributeDataType
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:
-
getDeveloperOnlyAttribute
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 union: either
BooleanorIResolvable- See Also:
-
getMutable
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 union: either
BooleanorIResolvable- See Also:
-
getName
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..- See Also:
-
getNumberAttributeConstraints
Specifies the constraints for an attribute of the number type.Returns union: either
IResolvableorCfnUserPool.NumberAttributeConstraintsProperty- See Also:
-
getRequired
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 union: either
BooleanorIResolvable- See Also:
-
getStringAttributeConstraints
Specifies the constraints for an attribute of the string type.Returns union: either
IResolvableorCfnUserPool.StringAttributeConstraintsProperty- See Also:
-
builder
-