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.

posta 3 anni fa48259 visualizzazioni
2 Risposte
1
Risposta accettata

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
con risposta 3 anni fa
profile pictureAWS
ESPERTO
verificato 10 mesi fa
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
con risposta un anno fa
profile pictureAWS
ESPERTO
verificato 10 mesi fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande