Creates an Amazon QuickSight group.
The permissions resource is
arn:aws:quicksight:us-east-1:<relevant-aws-account-id>:group/default/<group-name>
.
The response is a group object.
quicksight_create_group(GroupName, Description, AwsAccountId, Namespace)
A list with the following syntax:
list(
Group = list(
Arn = "string",
GroupName = "string",
Description = "string",
PrincipalId = "string"
),
RequestId = "string",
Status = 123
)
[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"
)