Skip to main content

security_profile_permissions

Creates, updates, deletes, gets or lists a security_profile_permissions resource.

Overview

Namesecurity_profile_permissions
TypeResource
Idaws.connect.security_profile_permissions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
permissionstringThe permissions granted to the security profile. For a complete list of valid permissions, see List of security profile permissions.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_security_profile_permissionsselectsecurity_profile_id, instance_id, regionnextToken, maxResultsLists the permissions granted to a security profile. For information about security profiles, see Security Profiles in the Connect Customer Administrator Guide. For a mapping of the API name and user interface name of the security profile permissions, see List of security profile permissions.

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
instance_idstringThe identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
regionstringAWS region (default: us-east-1)
security_profile_idstringThe identifier for the security profle.
maxResultsintegerThe maximum number of results to return per page.
nextTokenstringThe token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

SELECT examples

Lists the permissions granted to a security profile. For information about security profiles, see Security Profiles in the Connect Customer Administrator Guide. For a mapping of the API name and user interface name of the security profile permissions, see List of security profile permissions.

SELECT
permission
FROM aws.connect.security_profile_permissions
WHERE security_profile_id = '{{ security_profile_id }}' -- required
AND instance_id = '{{ instance_id }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;