Quicksight disable allow inviting new users by email using cmd/sdk

0

Hello! Is there anyway to disable the allow inviting new users by email via command line/SDK? A customer wants to make sure that any user on their account using QuickSight won't be able to invite new users by email.

已提問 3 年前檢視次數 48259 次
2 個答案
1
已接受的答案

You have the option to disable the invite by email option while setting up the account. If customer already has the account up and running with this option enabled, they can create a support case to have the option disabled from back end. (This option is not exposed via API)

AWS
已回答 3 年前
profile pictureAWS
專家
已審閱 10 個月前
0

Yes, it is possible to disable the ability to invite new users by email in QuickSight using the AWS Command Line Interface (CLI) or the AWS SDK. To do this, you will need to use the UpdateAccountCustomization operation in the QuickSight API.

Here is an example of how you can use the AWS CLI to disable the ability to invite new users by email in QuickSight:

aws quicksight update-account-customization \
  --aws-account-id 123456789012 \
  --namespace default \
  --account-customization '{"enableInviteNewUsersByEmail":false}'

In the example above, you would need to replace '123456789012' with the actual AWS account ID for your QuickSight account, and 'default' with the namespace that you want to update. You can also specify additional settings in the account-customization parameter, such as the default email sender name and address.

Alternatively, you can use the AWS SDK to call the UpdateAccountCustomization operation in the QuickSight API directly, as shown in the following example:

# Import the AWS SDK
import boto3

Create a QuickSight client

quicksight = boto3.client('quicksight')

Update the account customization settings

response = quicksight.update_account_customization(
  AwsAccountId='123456789012',
  Namespace='default',
  AccountCustomization={
    'EnableInviteNewUsersByEmail': False
  }
)

I hope this helps! Let me know if you have any other questions.

profile picture
已回答 1 年前
profile pictureAWS
專家
已審閱 10 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南