Forrest logo
back to the aws tool

aws-workmail:tldr:39474

aws-workmail: Create a WorkMail group in a specific organization.
$ aws workmail create-group --name ${group_name} --organization-id ${organization_id}
try on your machine

The provided command is for creating a group in Amazon WorkMail using the AWS Command Line Interface (CLI). Here's the breakdown of the command and its options:

  • aws workmail create-group: This part of the command is used to create a group in Amazon WorkMail.
  • --name ${group_name}: This option specifies the name of the group you want to create. ${group_name} is a placeholder that should be replaced with the actual name of the group.
  • --organization-id ${organization_id}: This option indicates the organization ID where the group will be created. ${organization_id} is another placeholder that needs to be replaced with the actual ID of the organization.

To execute this command, you need to have the AWS CLI configured and authenticated with appropriate permissions to access Amazon WorkMail.

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