Skip to main content

action_connector_permissions

Creates, updates, deletes, gets or lists an action_connector_permissions resource.

Overview

Nameaction_connector_permissions
TypeResource
Idaws.quicksight.action_connector_permissions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
action_connector_idstringThe unique identifier of the action connector. (pattern: <code>[\w-]+</code>)
arnstringThe Amazon Resource Name (ARN) of the action connector.
permissionsarrayThe list of permissions associated with the action connector, including the principals and their allowed actions.
request_idstringThe Amazon Web Services request ID for this operation.
statusintegerThe HTTP status code of the request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_action_connector_permissionsselectaws_account_id, action_connector_id, regionRetrieves the permissions configuration for an action connector, showing which users, groups, and namespaces have access and what operations they can perform.
update_action_connector_permissionsupdateaws_account_id, action_connector_id, regionUpdates the permissions for an action connector by granting or revoking access for specific users and groups. You can control who can view, use, or manage the action connector.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
action_connector_idstringThe unique identifier of the action connector whose permissions you want to update.
aws_account_idstringThe Amazon Web Services account ID that contains the action connector.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the permissions configuration for an action connector, showing which users, groups, and namespaces have access and what operations they can perform.

SELECT
action_connector_id,
arn,
permissions,
request_id,
status
FROM aws.quicksight.action_connector_permissions
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND action_connector_id = '{{ action_connector_id }}' -- required
AND region = '{{ region }}' -- required
;

UPDATE examples

Updates the permissions for an action connector by granting or revoking access for specific users and groups. You can control who can view, use, or manage the action connector.

UPDATE aws.quicksight.action_connector_permissions
SET
GrantPermissions = '{{ GrantPermissions }}',
RevokePermissions = '{{ RevokePermissions }}'
WHERE
aws_account_id = '{{ aws_account_id }}' --required
AND action_connector_id = '{{ action_connector_id }}' --required
AND region = '{{ region }}' --required
RETURNING
action_connector_id,
arn,
permissions,
request_id,
status;