Creates an Amazon QuickSight group.
quicksight_create_group(GroupName, Description, AwsAccountId, Namespace)
[required] A name for the group that you want to create.
A description for the group that you want to create.
[required] The ID for the AWS account that the group is in. Currently, you use the ID for the AWS account that contains your Amazon QuickSight account.
[required] The namespace. Currently, you should set this to default
.
svc$create_group( GroupName = "string", Description = "string", AwsAccountId = "string", Namespace = "string" )
The permissions resource is
arn:aws:quicksight:us-east-1:<i><relevant-aws-account-id></i>:group/default/<i><group-name></i>
.
The response is a group object.
CLI Sample:
aws quicksight create-group --aws-account-id=111122223333 --namespace=default --group-name="Sales-Management" --description="Sales Management - Forecasting"