:doc:`QuickSight <../../quicksight>` / Client / list_action_connectors

**********************
list_action_connectors
**********************



.. py:method:: QuickSight.Client.list_action_connectors(**kwargs)

  

  Lists all action connectors in the specified Amazon Web Services account. Returns summary information for each connector including its name, type, creation time, and status.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListActionConnectors>`_  


  **Request Syntax**
  ::

    response = client.list_action_connectors(
        AwsAccountId='string',
        MaxResults=123,
        NextToken='string'
    )
    
  :type AwsAccountId: string
  :param AwsAccountId: **[REQUIRED]** 

    The Amazon Web Services account ID for which to list action connectors.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of action connectors to return in a single response. Valid range is 1 to 100.

    

  
  :type NextToken: string
  :param NextToken: 

    A pagination token to retrieve the next set of results. Use the token returned from a previous call to continue listing action connectors.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'ActionConnectorSummaries': [
              {
                  'Arn': 'string',
                  'ActionConnectorId': 'string',
                  'Type': 'GENERIC_HTTP'|'SERVICENOW_NOW_PLATFORM'|'SALESFORCE_CRM'|'MICROSOFT_OUTLOOK'|'PAGERDUTY_ADVANCE'|'JIRA_CLOUD'|'ATLASSIAN_CONFLUENCE'|'AMAZON_S3'|'AMAZON_BEDROCK_AGENT_RUNTIME'|'AMAZON_BEDROCK_RUNTIME'|'AMAZON_BEDROCK_DATA_AUTOMATION_RUNTIME'|'AMAZON_TEXTRACT'|'AMAZON_COMPREHEND'|'AMAZON_COMPREHEND_MEDICAL'|'MICROSOFT_ONEDRIVE'|'MICROSOFT_SHAREPOINT'|'MICROSOFT_TEAMS'|'SAP_BUSINESSPARTNER'|'SAP_PRODUCTMASTERDATA'|'SAP_PHYSICALINVENTORY'|'SAP_BILLOFMATERIALS'|'SAP_MATERIALSTOCK'|'ZENDESK_SUITE'|'SMARTSHEET'|'SLACK'|'ASANA'|'BAMBOO_HR',
                  'Name': 'string',
                  'CreatedTime': datetime(2015, 1, 1),
                  'LastUpdatedTime': datetime(2015, 1, 1),
                  'Status': 'CREATION_IN_PROGRESS'|'CREATION_SUCCESSFUL'|'CREATION_FAILED'|'UPDATE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_FAILED'|'DELETED',
                  'Error': {
                      'Message': 'string',
                      'Type': 'INTERNAL_FAILURE'
                  }
              },
          ],
          'NextToken': 'string',
          'RequestId': 'string',
          'Status': 123
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ActionConnectorSummaries** *(list) --* 

        A list of action connector summaries containing basic information about each connector.

        
        

        - *(dict) --* 

          Contains summary information about an action connector, used in list and search operations.

          
          

          - **Arn** *(string) --* 

            The Amazon Resource Name (ARN) of the action connector.

            
          

          - **ActionConnectorId** *(string) --* 

            The unique identifier of the action connector.

            
          

          - **Type** *(string) --* 

            The type of action connector (e.g., SALESFORCE, JIRA, CUSTOM, BEDROCK).

            
          

          - **Name** *(string) --* 

            The name of the action connector.

            
          

          - **CreatedTime** *(datetime) --* 

            The date and time when the action connector was created.

            
          

          - **LastUpdatedTime** *(datetime) --* 

            The date and time when the action connector was last updated.

            
          

          - **Status** *(string) --* 

            The current status of the action connector.

            
          

          - **Error** *(dict) --* 

            Error information if the action connector is in an error state.

            
            

            - **Message** *(string) --* 

              The error message describing what went wrong with the action connector.

              
            

            - **Type** *(string) --* 

              The type or category of the error.

              
        
      
    
      

      - **NextToken** *(string) --* 

        A pagination token to retrieve the next set of results. If null, there are no more results to retrieve.

        
      

      - **RequestId** *(string) --* 

        The Amazon Web Services request ID for this operation.

        
      

      - **Status** *(integer) --* 

        The HTTP status code of the request.

        
  
  **Exceptions**
  
  *   :py:class:`QuickSight.Client.exceptions.ThrottlingException`

  
  *   :py:class:`QuickSight.Client.exceptions.InvalidParameterValueException`

  
  *   :py:class:`QuickSight.Client.exceptions.InternalFailureException`

  
  *   :py:class:`QuickSight.Client.exceptions.InvalidNextTokenException`

  
  *   :py:class:`QuickSight.Client.exceptions.AccessDeniedException`

  