Forrest logo
back to the aws tool

aws-workmail:tldr:2262c

aws-workmail: List all users of a specific organization.
$ aws workmail list-users --organization-id ${organization_id}
try on your machine

The command "aws workmail list-users" is used to retrieve a list of users in an Amazon WorkMail organization.

Here's a breakdown of the command and its components:

  • "aws workmail" is the command-line interface (CLI) command for the AWS WorkMail service.
  • "list-users" is the specific operation or action you want the CLI to perform. In this case, it requests a list of users.
  • "--organization-id" is an option or flag that specifies the organization for which you want to list the users.
  • "${organization_id}" is a placeholder that represents the organization ID value. You will need to replace this with the actual ID of the organization you want to retrieve the list of users for.

Overall, this command queries the AWS WorkMail service to retrieve a list of users within a specified organization using the WorkMail CLI.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the aws tool