Connect / Client / list_security_profile_applications

list_security_profile_applications#

Connect.Client.list_security_profile_applications(**kwargs)#

Returns a list of third-party applications in a specific security profile.

See also: AWS API Documentation

Request Syntax

response = client.list_security_profile_applications(
    SecurityProfileId='string',
    InstanceId='string',
    NextToken='string',
    MaxResults=123
)
Parameters:
  • SecurityProfileId (string) –

    [REQUIRED]

    The identifier for the security profle.

  • InstanceId (string) –

    [REQUIRED]

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

  • NextToken (string) – The 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.

  • MaxResults (integer) – The maximum number of results to return per page.

Return type:

dict

Returns:

Response Syntax

{
    'Applications': [
        {
            'Namespace': 'string',
            'ApplicationPermissions': [
                'string',
            ]
        },
    ],
    'NextToken': 'string',
    'LastModifiedTime': datetime(2015, 1, 1),
    'LastModifiedRegion': 'string'
}

Response Structure

  • (dict) –

    • Applications (list) –

      A list of the third-party application’s metadata.

      • (dict) –

        This API is in preview release for Amazon Connect and is subject to change.

        A third-party application’s metadata.

        • Namespace (string) –

          Namespace of the application that you want to give access to.

        • ApplicationPermissions (list) –

          The permissions that the agent is granted on the application. Only the ACCESS permission is supported.

          • (string) –

    • NextToken (string) –

      If there are additional results, this is the token for the next set of results.

    • LastModifiedTime (datetime) –

      The timestamp when this resource was last modified.

    • LastModifiedRegion (string) –

      The Amazon Web Services Region where this resource was last modified.

Exceptions