web-dev-qa-db-ja.com

AWS Cognito delete-custom-attributes?

Cognito-idpにはadd-custom-attributesコマンドがありますが、delete-custom-attributesはありませんか?

それらを削除するにはどうすればよいですか?

14
Li Li

気にしないで。 http://docs.aws.Amazon.com/cognito/latest/developerguide/user-pool-settings-attributes.html#user-pool-settings-aliases

「カスタム属性は、ユーザープールに追加された後は、削除または変更できません。」

17
Li Li

値を空の文字列に設定できますValue=""一部のユーザーからカスタム属性を削除します。

aws cognito-idp admin-update-user-attributes \
  --user-pool-id xxx \
  --username yyy \
  --user-attributes Name="custom:attributeName",Value=""
0
Michael Yuwono