-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aws cognito-idp: add German translation (#10316)
Co-authored-by: pixel <[email protected]> Co-authored-by: K.B.Dharun Krishna <[email protected]>
- Loading branch information
1 parent
2e6e8ca
commit 6806784
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# aws cognito-idp | ||
|
||
> Verwalten des Amazon Cognito-Benutzerpools, seiner Benutzer und Gruppen mit der CLI. | ||
> Weitere Informationen: <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/cognito-idp/index.html> | ||
- Erstelle einen neuen Cognito-Benutzerpool: | ||
|
||
`aws cognito-idp create-user-pool --pool-name {{name}}` | ||
|
||
- Liste alle Bentzerpools auf: | ||
|
||
`aws cognito-idp list-user-pools --max-results {{10}}` | ||
|
||
- Lösche einen bestimmten Benutzerpool: | ||
|
||
`aws cognito-idp delete-user-pool --user-pool-id {{benutzerpool_id}}` | ||
|
||
- Erstelle einen Benutzer in einem bestimmten Pool: | ||
|
||
`aws cognito-idp admin-create-user --username {{benutzer}} --user-pool-id {{benutzerpool_id}}` | ||
|
||
- Liste die Benutzer eines bestimmten Pool auf: | ||
|
||
`aws cognito-idp list-users --user-pool-id {{benutzerpool_id}}` | ||
|
||
- Lösche einen Benutzer aus einem bestimmten Pool: | ||
|
||
`aws cognito-idp admin-delete-user --username {{benutzer}} --user-pool-id {{benutzerpool_id}}` |