:doc:`QuickSight <../../quicksight>` / Paginator / ListActionConnectors

********************
ListActionConnectors
********************



.. py:class:: QuickSight.Paginator.ListActionConnectors

  ::

    
    paginator = client.get_paginator('list_action_connectors')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`QuickSight.Client.list_action_connectors`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          AwsAccountId='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type AwsAccountId: string
    :param AwsAccountId: **[REQUIRED]** 

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

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

      
    
    
    :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'
                    }
                },
            ],
            '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.

                
          
        
      
        

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

          The Amazon Web Services request ID for this operation.

          
        

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

          The HTTP status code of the request.

          
    