0
Cognito User Pool Console(ユーザー名と一時パスワードの値を設定しています)を使用してユーザーを作成しようとしていますが、このエラーが発生します。AWS Cognito User Poolユーザーを作成できません
属性は、スキーマに準拠しませんでした:生年月日:AWSCognitoIdentityProviderService;ステータスコード:番号は、もはや10文字(サービス以外でなければならない400;エラーコード:InvalidParameterExceptionが、IDを要求します:98f3de9e-5ce3-11e7-98e8- 9d0c69d31df9)
ユーザープールは、あなたの設定に従うことでサーバレス
Type: AWS::Cognito::UserPool
DeletionPolicy: Retain
Properties:
UserPoolName: employees
AdminCreateUserConfig:
AllowAdminCreateUserOnly: true
Policies:
PasswordPolicy:
MinimumLength: 8
RequireLowercase: true
RequireNumbers: true
Schema:
- Name: "picture"
AttributeDataType: String
Mutable: true
Required: false
- Name: "given_name"
AttributeDataType: String
Mutable: true
Required: true
- Name: "middle_name"
AttributeDataType: String
Mutable: true
Required: false
- Name: "family_name"
AttributeDataType: String
Mutable: true
Required: true
- Name: "address"
AttributeDataType: String
Mutable: true
Required: false
- Name: "birthdate"
AttributeDataType: String
Mutable: true
Required: true
- Name: "gender"
AttributeDataType: String
Mutable: true
Required: true
次のエラーは、2017年6月30日6AM PHT(2017年6月29日午後10時10分(UTC))に行われ、ユーザープールは 'ap-northeast-1'に展開されます '属性はスキーマに適合しませんでした:birthdate:Number (サービス:AWSCognitoIdentityProviderService;ステータスコード:400;エラーコード:InvalidParameterException;リクエストID:32cf27f5-5d16-11e7-9de7-73f9969ca2c1) ' – jasperagrante
これはサービス側の問題です。それのための修正。それを指摘してくれてありがとう。 – Yisha
問題ありません。私は助けることができてうれしいです。 – jasperagrante